@import url(//fonts.googleapis.com/css?family=Montserrat+Alternates:400,500,600,700,900|Montserrat:400,700,900|DM+Sans:400,500,700&display=swap);
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.hide-on-desktop-bts {
  display: none !important;
}
.toolbar-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  margin-top: -7px !important;
  padding: 10px 0 !important;
  border: 1px solid #e1e7ec;
  border-radius: 5px;
  background-color: #fff;
  line-height: 1.5;
  z-index:10000;
}
.toolbar-dropdown > li {
  display: block;
  position: relative;
}
.toolbar-dropdown > li > a {
  display: block;
  padding: 5px 20px !important;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  color: #2b2b2b;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  text-decoration: none;
}
.toolbar-dropdown > li > a > i {
  display: inline-block;
  margin-top: -2px;
  margin-right: 6px;
  font-size: 0.9em;
  vertical-align: middle;
}
.toolbar-dropdown > li.sub-menu-title {
  padding: 4px 20px 6px;
  color: #9da9b9;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}
.toolbar-dropdown > li.sub-menu-title > span {
  font-weight: 400;
}
.toolbar-dropdown > li.sub-menu-separator {
  margin-top: 5px;
  margin-bottom: 3px;
  border-top: 1px solid #e1e7ec;
}
.toolbar-dropdown > li:hover > a {
  color: #96c950;
}
.toolbar-dropdown > li.active > a {
  color: #1e8e20;
}
.toolbar-dropdown > li.has-children > a {
  padding-right: 35px !important;
}
.toolbar-dropdown > li.has-children > a:after {
  display: block;
  position: absolute;
  top: 50%;
  right: 18px;
  width: 0;
  height: 0;
  margin-top: -4px;
  border-top: 0.3em solid transparent;
  border-bottom: 0.3em solid transparent;
  border-left: 0.32em solid;
  content: "";
}
.toolbar-dropdown > li > .sub-menu {
  top: -4px;
  left: 100%;
  margin-left: -5px;
}
.offcanvas-menu {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.offcanvas-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.offcanvas-menu ul.menu {
  position: relative;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}
.offcanvas-menu ul.menu.off-view {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.offcanvas-menu ul.menu.in-view {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.offcanvas-menu ul li {
  display: block;
}
.offcanvas-menu ul li a {
  display: block;
  padding: 15px 20px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.12);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
}
.offcanvas-menu ul li a:hover {
  color: #96c950;
}
.offcanvas-menu ul li.back-btn > a {
  background-color: #232323;
  color: #fff;
}
.offcanvas-menu ul li.back-btn > a:before {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 8px;
  border-top: 0.32em solid transparent;
  border-right: 0.37em solid;
  border-bottom: 0.32em solid transparent;
  content: "";
  opacity: 0.75;
}
.offcanvas-menu ul li.active > a {
  color: #1e8e20;
}
.offcanvas-menu ul li.has-children > span {
  display: block;
  position: relative;
  width: 100%;
}
.offcanvas-menu ul li.has-children > span > a {
  padding-right: 65px;
}
.offcanvas-menu ul li.has-children.active > span > a {
  color: #1e8e20;
}
.offcanvas-menu ul li.has-children .sub-menu-toggle {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 100%;
  height: calc(100% - 1px);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  border-left: 1px solid hsla(0, 0%, 100%, 0.12);
  color: hsla(0, 0%, 100%, 0.75);
  cursor: pointer;
  z-index: 1;
}
.offcanvas-menu ul li.has-children .sub-menu-toggle:before {
  display: block;
  position: absolute;
  top: 50%;
  right: 25px;
  width: 0;
  height: 0;
  margin-top: -5px;
  border-top: 0.35em solid transparent;
  border-bottom: 0.35em solid transparent;
  border-left: 0.4em solid;
  content: "";
}
.offcanvas-menu ul li.has-children .sub-menu-toggle:hover {
  background-color: hsla(0, 0%, 100%, 0.1);
}
.offcanvas-menu ul li.has-children > .offcanvas-submenu {
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: auto;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  -webkit-transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}
.offcanvas-menu ul li.has-children > .offcanvas-submenu.in-view {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.offcanvas-menu ul li.has-children > .offcanvas-submenu.off-view {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
@-webkit-keyframes submenu-show {
  0% {
    -webkit-transform: scale(0.9);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
@keyframes submenu-show {
  0% {
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes megamenu-show {
  0% {
    -webkit-transform: translate3d(0, -9px, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes megamenu-show {
  0% {
    -webkit-transform: translate3d(0, -9px, 0);
    transform: translate3d(0, -9px, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes zoomScale {
  0% {
    -webkit-transform: scale(1.2) rotate(0.02deg);
    transform: scale(1.2) rotate(0.02deg);
  }
  to {
    -webkit-transform: scale(1) rotate(0.02deg);
    transform: scale(1) rotate(0.02deg);
  }
}
@-webkit-keyframes zoomScale {
  0% {
    -webkit-transform: scale(1.2) rotate(0.02deg);
    transform: scale(1.2) rotate(0.02deg);
  }
  to {
    -webkit-transform: scale(1) rotate(0.02deg);
    transform: scale(1) rotate(0.02deg);
  }
}
html * {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background-position: 50%;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  color: #525252;
  font-family: 'Barlow Condensed';
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  line-height: 1.5;
}
a,
a:hover {
  color: #96c950;
  text-decoration: none;
}
a:focus {
  outline: none;
}
.small,
small {
  font-size: 85%;
}
.navi-link,
.navi-link-light {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  color: #2b2b2b;
  text-decoration: none;
}
.navi-link-light:hover,
.navi-link:hover {
  color: #96c950;
}
.navi-link-light {
  font-family: 'Barlow';
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #FBF6EC;
}
figure,
img {
  height: auto;
  vertical-align: middle;
}
figure,
img,
svg {
  max-width: 100%;
}
iframe {
  width: 100%;
}
*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
hr {
  margin: 0;
  border: 0;
  border-top: 1px solid #e1e7ec;
}
hr.hr-light {
  border-top-color: rgba(82, 82, 82, 0.08);
}
pre {
  display: block;
  padding: 15px;
  border: 1px solid #e1e7ec;
  border-radius: 7px;
  background-color: #fcfeff;
}
::selection {
  background: #2b2b2b;
  color: #fff;
}
::-moz-selection {
  background: #2b2b2b;
  color: #fff;
}
figure {
  position: relative;
  margin: 0;
}
figure figcaption {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 12px;
  font-size: 14px;
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
@media (min-width: 1600px) {
  .container {
    width: 1280px;
  }
}
@media (min-width: 1900px) {
  .container {
    width: 1680px;
  }
}
@media (max-width: 1200px) {
  .container {
    width: 100% !important;
  }
}
.container-fluid {
  /*max-width: 1920px;*/
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 1200px) {
  .container-fluid {
    padding: 0 15px;
  }
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 4px dashed;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  vertical-align: middle;
}
.close {
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
  border: 0;
  background: 0;
  color: #525252;
  font-size: 18px;
  cursor: pointer;
}
.close:hover {
  opacity: 0.6;
}
.icon-medal {
  display: inline-block;
  width: 14px;
  height: 14px;
  background-position: 50%;
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA1MTIuMDAzIDUxMi4wMDMiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUxMi4wMDMgNTEyLjAwMzsiIHhtbDpzcGFjZT0icHJlc2VydmUiIHdpZHRoPSIxNnB4IiBoZWlnaHQ9IjE2cHgiPgo8Zz4KCTxnPgoJCTxnPgoJCQk8cGF0aCBkPSJNMjU2LjAwMSw2NGMtNzAuNTkyLDAtMTI4LDU3LjQwOC0xMjgsMTI4czU3LjQwOCwxMjgsMTI4LDEyOHMxMjgtNTcuNDA4LDEyOC0xMjhTMzI2LjU5Myw2NCwyNTYuMDAxLDY0eiAgICAgIE0yNTYuMDAxLDI5OC42NjdjLTU4LjgxNiwwLTEwNi42NjctNDcuODUxLTEwNi42NjctMTA2LjY2N1MxOTcuMTg1LDg1LjMzMywyNTYuMDAxLDg1LjMzM1MzNjIuNjY4LDEzMy4xODQsMzYyLjY2OCwxOTIgICAgIFMzMTQuODE3LDI5OC42NjcsMjU2LjAwMSwyOTguNjY3eiIgZmlsbD0iIzYwNjk3NSIvPgoJCQk8cGF0aCBkPSJNMzg1LjY0NCwzMzMuMjA1YzM4LjIyOS0zNS4xMzYsNjIuMzU3LTg1LjMzMyw2Mi4zNTctMTQxLjIwNWMwLTEwNS44NTYtODYuMTIzLTE5Mi0xOTItMTkycy0xOTIsODYuMTQ0LTE5MiwxOTIgICAgIGMwLDU1Ljg1MSwyNC4xMjgsMTA2LjA2OSw2Mi4zMzYsMTQxLjE4NEw2NC42ODQsNDk3LjZjLTEuNTM2LDQuMTE3LTAuNDA1LDguNzI1LDIuODM3LDExLjY2OSAgICAgYzIuMDI3LDEuNzkyLDQuNTY1LDIuNzMxLDcuMTQ3LDIuNzMxYzEuNjIxLDAsMy4yNDMtMC4zNjMsNC43NzktMS4xMDlsNzkuNzg3LTM5Ljg5M2w1OC44NTksMzkuMjMyICAgICBjMi42ODgsMS43OTIsNi4xMDEsMi4yNCw5LjE5NSwxLjI4YzMuMDkzLTEuMDAzLDUuNTY4LTMuMzQ5LDYuNjk5LTYuNGwyMy4yOTYtNjIuMTQ0bDIwLjU4Nyw2MS43MzkgICAgIGMxLjA2NywzLjE1NywzLjU0MSw1LjYzMiw2LjY3Nyw2LjcyYzMuMTM2LDEuMDY3LDYuNTkyLDAuNjQsOS4zNjUtMS4yMTZsNTguODU5LTM5LjIzMmw3OS43ODcsMzkuODkzICAgICBjMS41MzYsMC43NjgsMy4xNTcsMS4xMzEsNC43NzksMS4xMzFjMi41ODEsMCw1LjEyLTAuOTM5LDcuMTI1LTIuNzUyYzMuMjY0LTIuOTIzLDQuMzczLTcuNTUyLDIuODM3LTExLjY2OUwzODUuNjQ0LDMzMy4yMDV6ICAgICAgTTI0Ni4wMTcsNDEyLjI2N2wtMjcuMjg1LDcyLjc0N2wtNTIuODIxLTM1LjJjLTMuMi0yLjExMi03LjMxNy0yLjM4OS0xMC42ODgtMC42NjFMOTQuMTg4LDQ3OS42OGw0OS41NzktMTMyLjIyNCAgICAgYzI2Ljg1OSwxOS40MzUsNTguNzk1LDMyLjIxMyw5My41NDcsMzUuNjA1TDI0Ni43LDQxMS4yQzI0Ni40ODcsNDExLjU2MywyNDYuMTY3LDQxMS44NCwyNDYuMDE3LDQxMi4yNjd6IE0yNTYuMDAxLDM2Mi42NjcgICAgIEMxNjEuOSwzNjIuNjY3LDg1LjMzNSwyODYuMTAxLDg1LjMzNSwxOTJTMTYxLjksMjEuMzMzLDI1Ni4wMDEsMjEuMzMzUzQyNi42NjgsOTcuODk5LDQyNi42NjgsMTkyICAgICBTMzUwLjEwMywzNjIuNjY3LDI1Ni4wMDEsMzYyLjY2N3ogTTM1Ni43NTksNDQ5LjEzMWMtMy40MTMtMS43MjgtNy41MDktMS40NzItMTAuNjg4LDAuNjYxbC01Mi4zNzMsMzQuOTIzbC0zMy42NDMtMTAwLjkyOCAgICAgYzQwLjM0MS0wLjg1Myw3Ny41ODktMTQuMTg3LDEwOC4xNi0zNi4zMzFsNDkuNTc5LDEzMi4yMDNMMzU2Ljc1OSw0NDkuMTMxeiIgZmlsbD0iIzYwNjk3NSIvPgoJCTwvZz4KCTwvZz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8L3N2Zz4K);
  background-repeat: no-repeat;
  background-size: 14px;
  line-height: 1;
}
.position-relative {
  position: relative !important;
}
.position-absolute {
  position: absolute !important;
}
.position-fixed {
  position: fixed !important;
}
.position-static {
  position: static !important;
}
.top-0 {
  top: 0;
}
.right-0 {
  right: 0;
}
.bottom-0 {
  bottom: 0;
}
.left-0 {
  left: 0;
}
.w-90 {
  width: 90px !important;
}
.w-110 {
  width: 110px !important;
}
.w-150 {
  width: 150px !important;
}
.w-200 {
  width: 200px !important;
}
.w-250 {
  width: 250px !important;
}
.w-270 {
  width: 270px !important;
}
.w-300 {
  width: 300px !important;
}
.border-default {
  border: 1px solid #e1e7ec;
}
.border-default.border-light {
  border-color: hsla(0, 0%, 100%, 0.12);
}
.border-0 {
  border: 0 !important;
}
.border-top-0 {
  border-top: 0 !important;
}
.border-right-0 {
  border-right: 0 !important;
}
.border-bottom-0 {
  border-bottom: 0 !important;
}
.border-left-0 {
  border-left: 0 !important;
}
.rounded {
  border-radius: 7px;
}
.rounded-top {
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}
.rounded-right {
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
}
.rounded-bottom {
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
}
.rounded-left {
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
}
.rounded-circle {
  border-radius: 50%;
}
.rounded-0 {
  border-radius: 0;
}
.img-thumbnail {
  padding: 5px;
  border: 1px solid #e1e7ec;
  border-radius: 7px;
  background-color: #fff;
}
.img-thumbnail.rounded-circle {
  border-radius: 50%;
}
.img-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
[class^="col-"] .img-cover {
  left: 15px;
  width: calc(100% - 30px);
}
.opacity-100 {
  opacity: 1 !important;
}
.opacity-90 {
  opacity: 0.9 !important;
}
.opacity-80 {
  opacity: 0.8 !important;
}
.opacity-75 {
  opacity: 0.75 !important;
}
.opacity-60 {
  opacity: 0.6 !important;
}
.opacity-50 {
  opacity: 0.5 !important;
}
.opacity-25 {
  opacity: 0.25 !important;
}
.opacity-15 {
  opacity: 0.15 !important;
}
.clearfix:after {
  display: block;
  clear: both;
  content: "";
}
.text-muted {
  color: #9da9b9 !important;
}
.text-primary {
  color: #96c950 !important;
}
.text-info {
  color: #9aa0a2 !important;
}
.text-warning {
  color: #e6731d !important;
}
.text-success {
  color: #1e8e20 !important;
}
.text-danger {
  color: #d04137 !important;
}
.text-gray-dark {
  color: #2b2b2b !important;
}
.text-body {
  color: #525252 !important;
}
.text-light,
.text-white {
  color: #fff !important;
}
.text-highlighted {
  background-color: #fff8b0 !important;
}
.text-decoration-none {
  text-decoration: none !important;
}
.text-crossed {
  text-decoration: line-through !important;
}
.text-shadow {
  text-shadow: 0 1px rgba(0, 0, 0, 0.5) !important;
}
.text-black {
  font-weight: 500 !important;
}
.text-bold {
  font-weight: 700 !important;
}
.text-medium {
  font-weight: 500 !important;
}
.text-normal {
  font-weight: 400 !important;
}
.text-thin {
  font-weight: 300 !important;
}
.text-uppercase {
  letter-spacing: 0.04em;
}
.bg-primary {
  background-color: #96c950 !important;
}
.bg-success {
  background-color: #1e8e20 !important;
}
.bg-info {
  background-color: #9aa0a2 !important;
}
.bg-warning {
  background-color: #e6731d !important;
}
.bg-danger {
  background-color: #d04137 !important;
}
.bg-inverse {
  background-color: #2b2b2b !important;
}
.bg-faded {
  background-color: #fcfeff !important;
}
.bg-dark {
  background-color: #2b2b2b !important;
}
.bg-no-repeat {
  background-repeat: no-repeat;
}
.bg-center {
  background-position: 50%;
}
.bg-cover {
  background-size: cover;
}
.bg-outline {
  outline: 3px solid #fff;
  outline-offset: -10px;
}
.line-green {
  border-top: 3px solid #96c950;
  border-bottom: 3px solid #96c950;
}
.owl-stage {
  margin: 0 auto;
}
.padding-top-1x {
  padding-top: 24px !important;
}
@media (max-width: 768px) {
  .padding-top-1x {
    padding-top: 16px !important;
  }
}
.padding-top-2x {
  padding-top: 48px !important;
}
@media (max-width: 768px) {
  .padding-top-2x {
    padding-top: 32px !important;
  }
}
.padding-top-3x {
  padding-top: 72px !important;
}
@media (max-width: 768px) {
  .padding-top-3x {
    padding-top: 48px !important;
  }
}
.padding-top-4x {
  padding-top: 96px !important;
}
@media (max-width: 768px) {
  .padding-top-4x {
    padding-top: 64px !important;
  }
}
.padding-top-5x {
  padding-top: 120px !important;
}
@media (max-width: 768px) {
  .padding-top-5x {
    padding-top: 80px !important;
  }
}
.padding-top-6x {
  padding-top: 144px !important;
}
@media (max-width: 768px) {
  .padding-top-6x {
    padding-top: 96px !important;
  }
}
.padding-top-7x {
  padding-top: 168px !important;
}
@media (max-width: 768px) {
  .padding-top-7x {
    padding-top: 112px !important;
  }
}
.padding-top-8x {
  padding-top: 192px !important;
}
@media (max-width: 768px) {
  .padding-top-8x {
    padding-top: 128px !important;
  }
}
.padding-top-9x {
  padding-top: 216px !important;
}
@media (max-width: 768px) {
  .padding-top-9x {
    padding-top: 144px !important;
  }
}
.padding-top-10x {
  padding-top: 240px !important;
}
@media (max-width: 768px) {
  .padding-top-10x {
    padding-top: 160px !important;
  }
}
.padding-bottom-1x {
  padding-bottom: 24px !important;
}
@media (max-width: 768px) {
  .padding-bottom-1x {
    padding-bottom: 16px !important;
  }
}
.padding-bottom-2x {
  padding-bottom: 48px !important;
}
@media (max-width: 768px) {
  .padding-bottom-2x {
    padding-bottom: 32px !important;
  }
}
.padding-bottom-3x {
  padding-bottom: 72px !important;
}
@media (max-width: 768px) {
  .padding-bottom-3x {
    padding-bottom: 48px !important;
  }
}
.padding-bottom-4x {
  padding-bottom: 96px !important;
}
@media (max-width: 768px) {
  .padding-bottom-4x {
    padding-bottom: 64px !important;
  }
}
.padding-bottom-5x {
  padding-bottom: 120px !important;
}
@media (max-width: 768px) {
  .padding-bottom-5x {
    padding-bottom: 80px !important;
  }
}
.padding-bottom-6x {
  padding-bottom: 144px !important;
}
@media (max-width: 768px) {
  .padding-bottom-6x {
    padding-bottom: 96px !important;
  }
}
.padding-bottom-7x {
  padding-bottom: 168px !important;
}
@media (max-width: 768px) {
  .padding-bottom-7x {
    padding-bottom: 112px !important;
  }
}
.padding-bottom-8x {
  padding-bottom: 192px !important;
}
@media (max-width: 768px) {
  .padding-bottom-8x {
    padding-bottom: 128px !important;
  }
}
.padding-bottom-9x {
  padding-bottom: 216px !important;
}
@media (max-width: 768px) {
  .padding-bottom-9x {
    padding-bottom: 144px !important;
  }
}
.padding-bottom-10x {
  padding-bottom: 240px !important;
}
@media (max-width: 768px) {
  .padding-bottom-10x {
    padding-bottom: 160px !important;
  }
}
.margin-top-1x {
  margin-top: 24px !important;
}
@media (max-width: 768px) {
  .margin-top-1x {
    margin-top: 16px !important;
  }
}
.margin-top-2x {
  margin-top: 48px !important;
}
@media (max-width: 768px) {
  .margin-top-2x {
    margin-top: 32px !important;
  }
}
.margin-top-3x {
  margin-top: 72px !important;
}
@media (max-width: 768px) {
  .margin-top-3x {
    margin-top: 48px !important;
  }
}
.margin-top-4x {
  margin-top: 96px !important;
}
@media (max-width: 768px) {
  .margin-top-4x {
    margin-top: 64px !important;
  }
}
.margin-top-5x {
  margin-top: 120px !important;
}
@media (max-width: 768px) {
  .margin-top-5x {
    margin-top: 80px !important;
  }
}
.margin-top-6x {
  margin-top: 144px !important;
}
@media (max-width: 768px) {
  .margin-top-6x {
    margin-top: 96px !important;
  }
}
.margin-top-7x {
  margin-top: 168px !important;
}
@media (max-width: 768px) {
  .margin-top-7x {
    margin-top: 112px !important;
  }
}
.margin-top-8x {
  margin-top: 192px !important;
}
@media (max-width: 768px) {
  .margin-top-8x {
    margin-top: 128px !important;
  }
}
.margin-top-9x {
  margin-top: 216px !important;
}
@media (max-width: 768px) {
  .margin-top-9x {
    margin-top: 144px !important;
  }
}
.margin-top-10x {
  margin-top: 240px !important;
}
@media (max-width: 768px) {
  .margin-top-10x {
    margin-top: 160px !important;
  }
}
.margin-bottom-1x {
  margin-bottom: 24px !important;
}
@media (max-width: 768px) {
  .margin-bottom-1x {
    margin-bottom: 16px !important;
  }
}
.margin-bottom-2x {
  margin-bottom: 48px !important;
}
@media (max-width: 768px) {
  .margin-bottom-2x {
    margin-bottom: 32px !important;
  }
}
.margin-bottom-3x {
  margin-bottom: 72px !important;
}
@media (max-width: 768px) {
  .margin-bottom-3x {
    margin-bottom: 48px !important;
  }
}
.margin-bottom-4x {
  margin-bottom: 96px !important;
}
@media (max-width: 768px) {
  .margin-bottom-4x {
    margin-bottom: 64px !important;
  }
}
.margin-bottom-5x {
  margin-bottom: 120px !important;
}
@media (max-width: 768px) {
  .margin-bottom-5x {
    margin-bottom: 80px !important;
  }
}
.margin-bottom-6x {
  margin-bottom: 144px !important;
}
@media (max-width: 768px) {
  .margin-bottom-6x {
    margin-bottom: 96px !important;
  }
}
.margin-bottom-7x {
  margin-bottom: 168px !important;
}
@media (max-width: 768px) {
  .margin-bottom-7x {
    margin-bottom: 112px !important;
  }
}
.margin-bottom-8x {
  margin-bottom: 192px !important;
}
@media (max-width: 768px) {
  .margin-bottom-8x {
    margin-bottom: 128px !important;
  }
}
.margin-bottom-9x {
  margin-bottom: 216px !important;
}
@media (max-width: 768px) {
  .margin-bottom-9x {
    margin-bottom: 144px !important;
  }
}
.margin-bottom-10x {
  margin-bottom: 240px !important;
}
@media (max-width: 768px) {
  .margin-bottom-10x {
    margin-bottom: 160px !important;
  }
}
.mb-30 {
  margin-bottom: 30px !important;
}
.mt-30 {
  margin-top: 30px !important;
}
.margin-30 {
  margin: 30px !important;
}
.margin-top-none {
  margin-top: 0 !important;
}
.margin-bottom-none {
  margin-bottom: 0 !important;
}
.padding-top-none {
  padding-top: 0 !important;
}
.padding-bottom-none {
  padding-bottom: 0 !important;
}
.margin-right-none {
  margin-right: 0 !important;
}
.margin-left-none {
  margin-left: 0 !important;
}
.padding-right-none {
  padding-right: 0 !important;
}
.padding-left-none {
  padding-left: 0 !important;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #2b2b2b;
  font-family: inherit;
  font-style: normal;
  font-weight: 500;
  text-transform: none;
}
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  display: block;
  padding-top: 3px;
  color: #9da9b9;
}
.h1,
h1 {
  margin-bottom: 24px;
  font-size: 22px;
  line-height: 1.15;
}
@media (max-width: 768px) {
  .h1,
  h1 {
    font-size: 19px;
  }
}
.h2,
h2 {
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .h2,
  h2 {
    font-size: 19px;
  }
}
.h3,
h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.25;
}
@media (max-width: 768px) {
  .h3,
  h3 {
    font-size: 19px;
  }
}
.h4,
h4 {
  font-size: 16px;
  line-height: 1.3;
}
.h4,
.h5,
h4,
h5 {
  margin-bottom: 8px;
}
.h5,
h5 {
  font-size: 18px;
  line-height: 1.35;
}
.h6,
h6 {
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.4;
}
.display-1,
.display-2,
.display-3,
.display-4 {
  font-weight: 400;
  line-height: 1.15;
}
.display-1 {
  font-size: 72px;
}
@media (max-width: 576px) {
  .display-1 {
    font-size: 28px;
  }
}
.display-2 {
  font-size: 40px;
}
@media (max-width: 576px) {
  .display-2 {
    font-size: 20px;
  }
}
.display-3 {
  font-size: 28px;
}
@media (max-width: 576px) {
  .display-3 {
    font-size: 23px;
  }
}
.display-4 {
  font-size: 20px;
}
@media (max-width: 576px) {
  .display-4 {
    font-size: 18px;
  }
}
p {
  margin: 0 0 16px;
}
.lead {
  font-size: 18px;
}
.text-lg {
  font-size: 16px;
}
.text-sm {
  font-size: 13px;
}
ol,
ul {
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 18px;
  line-height: 1.8;
}
ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}
.list-inline,
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}
.list-icon {
  padding: 0;
  list-style: none;
}
.list-icon > li {
  position: relative;
  margin-bottom: 6px;
  padding-left: 22px;
}
.list-icon > li > i {
  display: block;
  position: absolute;
  left: 0;
  line-height: inherit;
}
.list-icon.text-lg > li {
  padding-left: 25px;
}
.list-icon.text-sm > li {
  padding-left: 18px;
}
.list-icon.lead > li {
  padding-left: 26px;
}
dl {
  margin-top: 0;
  margin-bottom: 16px;
}
dd,
dt {
  line-height: 1.5;
}
dt {
  padding-top: 9px;
  border-top: 1px solid #e1e7ec;
  color: #2b2b2b;
  font-weight: 500;
}
dt:first-child {
  padding-top: 0;
  border: 0;
}
dd {
  margin-top: 3px;
  margin-bottom: 15px;
  margin-left: 0;
}
blockquote {
  position: relative;
  margin: 0;
  margin-bottom: 16px;
  padding: 24px 0 24px 36px;
  border-top: 1px solid #e1e7ec;
  border-bottom: 1px solid #e1e7ec;
  color: #525252;
  font-size: 18px;
}
blockquote:before {
  position: absolute;
  top: 24px;
  left: -17px;
  color: #9da9b9;
  font-size: 82px;
  font-style: italic;
  line-height: 0.8;
  content: '"';
}
blockquote cite {
  display: block;
  margin-top: 9px;
  color: #9da9b9;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
blockquote cite:before {
  display: inline-block;
  margin-top: -2px;
  margin-right: 8px;
  color: #9da9b9;
  font-family: feather;
  font-size: 0.95em;
  content: "\E074";
  vertical-align: middle;
}
blockquote p {
  margin-bottom: 0;
}
blockquote.blockquote-reverse {
  padding-right: 36px;
  padding-left: 0;
  border-left: 0;
  text-align: right;
}
blockquote.blockquote-reverse:before {
  right: 10px;
  left: auto;
}
kbd {
  background-color: #525252;
}
.form-control {
  font-family: 'DM Sans', sans-serif !important;
  padding: 24px 24px;
  border: 1px solid #E3E9ED;
  border-radius: 4px;
  background-color: #fff;
  color: #525252;
  font-weight: 500;
  font-size: 15px;
  line-height: 50px !important;
  height: 50px;
}
.form-input-cupons {
  padding: 14px 24px 14px 16px !important;
  line-height: 44px !important;
  height: 44px !important;
}
.form-input-newsletter {
  padding: initial;
  border-radius: 50px !important;
  line-height: 44px !important;
  height: 44px !important;
}
.form-control:not(textarea) {
  height: 44px;
}
.form-control::-moz-placeholder {
  color: #525252;
  opacity: 0.4;
}
.form-control:-ms-input-placeholder {
  color: #525252;
  opacity: 0.4;
}
.form-control::-webkit-input-placeholder {
  color: #525252;
  opacity: 0.4;
}
.form-control:focus {
  border-color: #A9C600;
  color: #525252;
}
.form-control[type="color"] {
  padding-bottom: 0 !important;
}
.form-control:disabled,
.form-control[readonly] {
  background-color: #fcfeff;
}
textarea.form-control {
  padding-top: 12px;
  padding-bottom: 12px;
}
select.form-control {
  padding-right: 38px;
  background-position: center right 17px;
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTYuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjE2cHgiIGhlaWdodD0iMTZweCIgdmlld0JveD0iMCAwIDI5Mi4zNjIgMjkyLjM2MiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjkyLjM2MiAyOTIuMzYyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxnPgoJPHBhdGggZD0iTTI4Ni45MzUsNjkuMzc3Yy0zLjYxNC0zLjYxNy03Ljg5OC01LjQyNC0xMi44NDgtNS40MjRIMTguMjc0Yy00Ljk1MiwwLTkuMjMzLDEuODA3LTEyLjg1LDUuNDI0ICAgQzEuODA3LDcyLjk5OCwwLDc3LjI3OSwwLDgyLjIyOGMwLDQuOTQ4LDEuODA3LDkuMjI5LDUuNDI0LDEyLjg0N2wxMjcuOTA3LDEyNy45MDdjMy42MjEsMy42MTcsNy45MDIsNS40MjgsMTIuODUsNS40MjggICBzOS4yMzMtMS44MTEsMTIuODQ3LTUuNDI4TDI4Ni45MzUsOTUuMDc0YzMuNjEzLTMuNjE3LDUuNDI3LTcuODk4LDUuNDI3LTEyLjg0N0MyOTIuMzYyLDc3LjI3OSwyOTAuNTQ4LDcyLjk5OCwyODYuOTM1LDY5LjM3N3oiIGZpbGw9IiM2MDY5NzUiLz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8L3N2Zz4K);
  background-repeat: no-repeat;
  background-size: 9px 9px;
  appearance: none;
}
select.form-control:not([size]):not([multiple]) {
  height: 44px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  margin-bottom: 4px;
  padding-left: 0px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: #878A8F;
  cursor: pointer;
}
.form-group label.col-form-label {
  -webkit-align-self: center !important;
  -ms-flex-item-align: center !important;
  -ms-grid-row-align: center !important;
  align-self: center !important;
  margin-bottom: 0;
}
.form-control-lg {
  border-radius: 27px;
  font-size: 16px;
}
.form-control-lg:not(textarea) {
  height: 54px;
}
.form-control-lg.form-control-rounded {
  border-radius: 7px;
}
.form-control-lg.form-control-square {
  border-radius: 0;
}
select.form-control.form-control-lg:not([size]):not([multiple]) {
  height: 54px;
}
.form-control-sm {
  padding-bottom: 2px;
  border-radius: 18px;
}
.form-control-sm:not(textarea) {
  height: 36px;
}
.form-control-sm.form-control-rounded {
  border-radius: 3px;
}
.form-control-sm.form-control-square {
  border-radius: 0;
}
select.form-control.form-control-sm:not([size]):not([multiple]) {
  height: 36px;
}
.form-text {
  padding-left: 6px;
}
.custom-control {
  margin-bottom: 5px !important;
  padding-left: 1.5rem !important;
  font-size: 14px !important;
  font-weight: 400 !important;
}
.custom-control:focus {
  outline: 0;
}
.custom-control .custom-control-indicator {
  background-color: #ffffff;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 2px solid #9DA9B9;
}
.custom-control .custom-control-input:checked ~ .custom-control-indicator {
  background-color: #1E8E20;
  border: 2px solid #1E8E20;
  background-size: 80% 80%;
}
.custom-control .custom-control-input:disabled ~ .custom-control-description {
  color: #9da9b9;
}
.custom-file,
.custom-file-input {
  height: 44px;
  border-radius: 22px;
  cursor: pointer;
}
.custom-file-control,
.custom-file-control:before {
  height: 44px;
  border-radius: 22px;
  border-color: #dbe2e8;
  color: #525252;
  line-height: 1.7;
}
.custom-file-control:before {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  background-color: #fcfeff;
}
.form-control-rounded,
.form-control-rounded .custom-file-control,
.form-control-rounded .custom-file-control:before {
  border-radius: 5px;
}
.form-control-square,
.form-control-square .custom-file-control,
.form-control-square .custom-file-control:before {
  border-radius: 0;
}
.input-group {
  display: block;
  position: relative;
}
.input-group .input-group-addon,
.input-group .input-group-btn {
  display: inline-block;
  position: absolute;
  top: 50%;
  margin-top: -3px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.input-group .input-group-addon {
  left: 15px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  background-color: transparent !important;
  color: #9da9b9;
}
.input-group .form-control {
  padding-left: 35px;
}
.input-group .form-control:focus ~ .input-group-addon {
  color: #96c950;
}
.input-group .input-group-btn {
  right: 10px;
  margin-top: -2px;
}
.input-group .input-group-btn button {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  border: 0;
  background: 0;
  color: #525252;
  font-size: 1.2em;
  cursor: pointer;
}
.input-group .input-group-btn button:hover {
  color: #96c950;
}
.input-group .input-group-btn ~ .form-control {
  padding-right: 35px;
  padding-left: 18px;
}
.has-success .custom-control,
.has-success .form-control-feedback,
.has-success .form-control:focus ~ .input-group-addon,
.has-success.input-group .input-group-addon,
.has-success .input-group .input-group-addon,
.has-success label {
  color: #1e8e20;
}
.has-success .form-control,
.has-success .form-control:focus {
  border-color: #1e8e20;
}
.has-success .form-control-success {
  padding-right: 42px;
  background-position: center right 15px;
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA0MDYuODM0IDQwNi44MzQiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQwNi44MzQgNDA2LjgzNDsiIHhtbDpzcGFjZT0icHJlc2VydmUiIHdpZHRoPSIxNnB4IiBoZWlnaHQ9IjE2cHgiPgo8cG9seWdvbiBwb2ludHM9IjM4NS42MjEsNjIuNTA3IDE0Ni4yMjUsMzAxLjkwMSAyMS4yMTMsMTc2Ljg5MSAwLDE5OC4xMDQgMTQ2LjIyNSwzNDQuMzI3IDQwNi44MzQsODMuNzIgIiBmaWxsPSIjNDNkOWEzIi8+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+Cjwvc3ZnPgo=);
}
.has-warning .custom-control,
.has-warning .form-control-feedback,
.has-warning .form-control:focus ~ .input-group-addon,
.has-warning.input-group .input-group-addon,
.has-warning .input-group .input-group-addon,
.has-warning label {
  color: #e6731d;
}
.has-warning .form-control,
.has-warning .form-control:focus {
  border-color: #e6731d;
}
.has-warning .form-control-warning {
  padding-right: 42px;
  background-position: center right 15px;
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTIgNTEyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjE2cHgiIGhlaWdodD0iMTZweCI+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTUwNS40MDMsNDA2LjM5NEwyOTUuMzg5LDU4LjEwMmMtOC4yNzQtMTMuNzIxLTIzLjM2Ny0yMi4yNDUtMzkuMzktMjIuMjQ1Yy0xNi4wMjMsMC0zMS4xMTYsOC41MjQtMzkuMzkxLDIyLjI0NiAgICBMNi41OTUsNDA2LjM5NGMtOC41NTEsMTQuMTgyLTguODA0LDMxLjk1LTAuNjYxLDQ2LjM3YzguMTQ1LDE0LjQyLDIzLjQ5MSwyMy4zNzgsNDAuMDUxLDIzLjM3OGg0MjAuMDI4ICAgIGMxNi41NiwwLDMxLjkwNy04Ljk1OCw0MC4wNTItMjMuMzc5QzUxNC4yMDgsNDM4LjM0Miw1MTMuOTU1LDQyMC41NzQsNTA1LjQwMyw0MDYuMzk0eiBNNDc3LjAzOSw0MzYuMzcyICAgIGMtMi4yNDIsMy45NjktNi40NjcsNi40MzYtMTEuMDI2LDYuNDM2SDQ1Ljk4NWMtNC41NTksMC04Ljc4NC0yLjQ2Ni0xMS4wMjUtNi40MzVjLTIuMjQyLTMuOTctMi4xNzItOC44NjIsMC4xODEtMTIuNzY1ICAgIEwyNDUuMTU2LDc1LjMxNmMyLjI3OC0zLjc3Nyw2LjQzMy02LjEyNCwxMC44NDQtNi4xMjRjNC40MSwwLDguNTY1LDIuMzQ3LDEwLjg0Myw2LjEyNGwyMTAuMDEzLDM0OC4yOTIgICAgQzQ3OS4yMTEsNDI3LjUxMiw0NzkuMjgxLDQzMi40MDMsNDc3LjAzOSw0MzYuMzcyeiIgZmlsbD0iI2ZmYjc0ZiIvPgoJPC9nPgo8L2c+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTI1Ni4xNTQsMTczLjAwNWMtMTIuNjgsMC0yMi41NzYsNi44MDQtMjIuNTc2LDE4Ljg2NmMwLDM2LjgwMiw0LjMyOSw4OS42ODYsNC4zMjksMTI2LjQ4OSAgICBjMC4wMDEsOS41ODcsOC4zNTIsMTMuNjA3LDE4LjI0OCwxMy42MDdjNy40MjIsMCwxNy45MzctNC4wMiwxNy45MzctMTMuNjA3YzAtMzYuODAyLDQuMzI5LTg5LjY4Niw0LjMyOS0xMjYuNDg5ICAgIEMyNzguNDIxLDE3OS44MSwyNjguMjE2LDE3My4wMDUsMjU2LjE1NCwxNzMuMDA1eiIgZmlsbD0iI2ZmYjc0ZiIvPgoJPC9nPgo8L2c+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTI1Ni40NjUsMzUzLjMwNmMtMTMuNjA3LDAtMjMuODE0LDEwLjgyNC0yMy44MTQsMjMuODE0YzAsMTIuNjgsMTAuMjA2LDIzLjgxNCwyMy44MTQsMjMuODE0ICAgIGMxMi42OCwwLDIzLjUwNS0xMS4xMzQsMjMuNTA1LTIzLjgxNEMyNzkuOTcsMzY0LjEzLDI2OS4xNDQsMzUzLjMwNiwyNTYuNDY1LDM1My4zMDZ6IiBmaWxsPSIjZmZiNzRmIi8+Cgk8L2c+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
}
.has-danger .custom-control,
.has-danger .form-control-feedback,
.has-danger .form-control:focus ~ .input-group-addon,
.has-danger.input-group .input-group-addon,
.has-danger .input-group .input-group-addon,
.has-danger label {
  color: #d04137;
}
.has-danger .form-control,
.has-danger .form-control:focus {
  border-color: #d04137;
}
.has-danger .form-control-danger {
  padding-right: 42px;
  background-position: center right 15px;
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDI0MS4xNzEgMjQxLjE3MSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjQxLjE3MSAyNDEuMTcxOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjE2cHgiIGhlaWdodD0iMTZweCI+CjxnPgoJPHBhdGggaWQ9IkNsb3NlIiBkPSJNMTM4LjEzOCwxMjAuNzU0bDk5LjExOC05OC41NzZjNC43NTItNC43MDQsNC43NTItMTIuMzE5LDAtMTcuMDExYy00Ljc0LTQuNzA0LTEyLjQzOS00LjcwNC0xNy4xNzksMCAgIGwtOTkuMDMzLDk4LjQ5MkwyMS4wOTUsMy42OTljLTQuNzQtNC43NTItMTIuNDM5LTQuNzUyLTE3LjE3OSwwYy00Ljc0LDQuNzY0LTQuNzQsMTIuNDc1LDAsMTcuMjI3bDk5Ljg3Niw5OS44ODhMMy41NTUsMjIwLjQ5NyAgIGMtNC43NCw0LjcwNC00Ljc0LDEyLjMxOSwwLDE3LjAxMWM0Ljc0LDQuNzA0LDEyLjQzOSw0LjcwNCwxNy4xNzksMGwxMDAuMTUyLTk5LjU5OWw5OS41NTEsOTkuNTYzICAgYzQuNzQsNC43NTIsMTIuNDM5LDQuNzUyLDE3LjE3OSwwYzQuNzQtNC43NjQsNC43NC0xMi40NzUsMC0xNy4yMjdMMTM4LjEzOCwxMjAuNzU0eiIgZmlsbD0iI2ZmNTI1MiIvPgoJPGc+Cgk8L2c+Cgk8Zz4KCTwvZz4KCTxnPgoJPC9nPgoJPGc+Cgk8L2c+Cgk8Zz4KCTwvZz4KCTxnPgoJPC9nPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+Cjwvc3ZnPgo=);
  background-size: 13px 13px;
}
.form-control-feedback {
  padding-top: 2px;
  padding-left: 18px;
}
.input-light.form-control,
.input-light .form-control {
  border-color: hsla(0, 0%, 100%, 0.17);
  background-color: transparent;
  color: #fff;
}
.input-light.form-control::-moz-placeholder,
.input-light .form-control::-moz-placeholder {
  color: hsla(0, 0%, 100%, 0.5);
  opacity: 1;
}
.input-light.form-control:-ms-input-placeholder,
.input-light .form-control:-ms-input-placeholder {
  color: hsla(0, 0%, 100%, 0.5);
}
.input-light.form-control::-webkit-input-placeholder,
.input-light .form-control::-webkit-input-placeholder {
  color: hsla(0, 0%, 100%, 0.5);
}
.input-light.form-control:focus,
.input-light .form-control:focus {
  border-color: #96c950;
  color: #fff;
}
.input-light.input-group .input-group-addon {
  color: hsla(0, 0%, 100%, 0.5);
}
.subscribe-form .input-group {
  width: calc(100% - 88px);
  float: left;
}
.subscribe-form .btn {
  margin: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.subscribe-form .btn > span {
  position: absolute;
  line-height: 1;
  top: 13px;
  left: 19px;
}
.subscribe-form .form-text {
  padding-top: 12px;
}
.coupon-form .form-control {
  display: inline-block;
  width: 100%;
  max-width: 235px;
  margin-right: 12px;
}
.coupon-form .btn {
  margin-right: 0;
}
@media (max-width: 768px) {
  .coupon-form .form-control {
    display: block;
    max-width: 100%;
  }
}
.login-box {
  display: block;
  width: 100%;
  padding: 30px 24px;
  border: 1px solid #e1e7ec;
  border-radius: 7px;
}
.card-wrapper {
  margin: 30px 0;
}
@media (max-width: 576px) {
  .jp-card-container {
    width: 285px !important;
  }
  .jp-card {
    min-width: 250px !important;
  }
}
.table td,
.table th,
.table thead th {
  border-color: #e1e7ec;
}
.table.table-inverse {
  background-color: #2b2b2b;
}
.table.table-inverse td,
.table.table-inverse th,
.table.table-inverse thead th {
  border-color: hsla(0, 0%, 100%, 0.12);
}
.thead-inverse th {
  background-color: #2b2b2b;
}
.thead-default th {
  color: #525252;
}
.table-striped tbody tr:nth-of-type(odd),
.thead-default th {
  background-color: #fcfeff;
}
.table-striped.table-inverse tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.08);
}
.table-hover tbody tr:hover {
  background-color: #fcfeff;
}
.table-hover.table-inverse tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.08);
}
.table-active,
.table-active td,
.table-active th {
  background-color: rgba(0, 0, 0, 0.05);
}
.table-success,
.table-success td,
.table-success th {
  background-color: rgba(30, 142, 32, 0.09);
}
.table-info,
.table-info td,
.table-info th {
  background-color: hsla(195, 4%, 62%, 0.09);
}
.table-warning,
.table-warning td,
.table-warning th {
  background-color: rgba(230, 115, 29, 0.09);
}
.table-danger,
.table-danger td,
.table-danger th {
  background-color: rgba(208, 65, 55, 0.09);
}
.btn {
  display: inline-block;
  position: relative;
  height: 44px;
  margin-top: 8px;
  margin-right: 12px;
  margin-bottom: 8px;
  padding: 0 22px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: all 0.4s;
  transition: all 0.2s;
  border: 1px solid transparent;
  border-radius: 22px;
  background-color: transparent;
  background-image: none;
  color: #525252;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 42px;
  letter-spacing: -0.02em;
  white-space: nowrap;
  cursor: pointer;
  vertical-align: middle;
  text-decoration: none;
  text-align: center;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn.active,
.btn:focus .btn:active,
.btn:hover {
  outline: none;
  background-image: none;
  text-decoration: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn:hover {
  color: #525252;
}
.btn > i {
  display: inline-block;
  margin-top: -1px;
  vertical-align: middle;
  margin-right: 1px;
}
.btn.disabled,
.btn[disabled] {
  cursor: not-allowed;
  opacity: 0.55;
  pointer-events: none;
}
button:focus {
  outline: none;
}
.btn-lg {
  height: 54px;
  border-radius: 27px;
  line-height: 52px;
}
.btn-sm {
  height: 36px;
  padding: 0 18px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 34px;
}
.btn-rounded {
  border-radius: 5px;
}
.btn-rounded.btn-lg {
  border-radius: 7px;
}
.btn-rounded.btn-sm {
  border-radius: 3px;
}
.btn-square {
  border-radius: 0;
}
.btn-secondary {
  background-color: #fcfeff;
  border-color: #e1e7ec;
}
.btn-secondary:hover {
  background-color: #c9edff;
}
.btn-danger,
.btn-danger:active,
.btn-danger:focus,
.btn-danger:hover,
.btn-info,
.btn-info:active,
.btn-info:focus,
.btn-info:hover,
.btn-primary,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover,
.btn-success,
.btn-success:active,
.btn-success:focus,
.btn-success:hover,
.btn-warning,
.btn-warning:active,
.btn-warning:focus,
.btn-warning:hover {
  color: #fff;
}
.btn-primary {
  background-color: #96c950;
}
.btn-primary.new2023 {
  background-color: #389C23 !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  box-shadow: 0px 3px 30px rgba(82, 82, 82, 0.15) !important;
  border-radius: 2px !important;
  font-family: 'Barlow';
  font-weight: 600 !important;
  font-size: 14px !important;
  line-height: 34px !important;
  text-align: center;
  letter-spacing: 0.01em !important;
  color: #E8EFE1 !important;
  text-shadow: 0px 1px 3px rgba(82, 82, 82, 0.2);
}
.btn-primary:hover {
  background-color: #7db036;
}
.btn-success {
  background-color: #1e8e20;
}
.btn-success:hover {
  background-color: #156417;
}
.btn-info {
  background-color: #9aa0a2;
}
.btn-info:hover {
  background-color: #7f878a;
}
.btn-warning {
  background-color: #e6731d;
}
.btn-warning:hover {
  background-color: #bb5c15;
}
.btn-danger {
  background-color: #d04137;
}
.btn-danger:hover {
  background-color: #ac3128;
}
.btn-white {
  background-color: #fff;
}
.btn-white:hover {
  background-color: #e6e5e5;
}
.btn-outline-secondary {
  border-color: #e1e7ec;
}
.btn-outline-secondary:hover {
  background-color: #fcfeff;
}
.btn-outline-primary {
  border-color: #96c950;
  background-color: transparent;
  color: #96c950;
}
.btn-outline-primary:hover {
  background-color: #96c950;
  color: #fff;
}
.btn-outline-success {
  border-color: #1e8e20;
  background-color: transparent;
  color: #1e8e20;
}
.btn-outline-success:hover {
  background-color: #1e8e20;
  color: #fff;
}
.btn-outline-info {
  border-color: #9aa0a2;
  background-color: transparent;
  color: #9aa0a2;
}
.btn-outline-info:hover {
  background-color: #9aa0a2;
  color: #fff;
}
.btn-outline-warning {
  border-color: #e6731d;
  background-color: transparent;
  color: #e6731d;
}
.btn-outline-warning:hover {
  background-color: #e6731d;
  color: #fff;
}
.btn-outline-danger {
  border-color: #d04137;
  background-color: transparent;
  color: #d04137;
}
.btn-outline-danger:hover {
  background-color: #d04137;
  color: #fff;
}
.btn-outline-white {
  border-color: #fff;
  background-color: transparent;
  color: #fff;
}
.btn-outline-white:hover {
  background-color: #fff;
  color: #fff;
  color: #525252;
}
.btn-link-secondary {
  color: #525252;
}
.btn-link-secondary:hover {
  color: #393838;
}
.btn-link-primary {
  color: #96c950;
}
.btn-link-primary:hover {
  color: #7db036;
}
.btn-link-success {
  color: #1e8e20;
}
.btn-link-success:hover {
  color: #156417;
}
.btn-link-info {
  color: #9aa0a2;
}
.btn-link-info:hover {
  color: #7f878a;
}
.btn-link-warning {
  color: #e6731d;
}
.btn-link-warning:hover {
  color: #bb5c15;
}
.btn-link-danger {
  color: #d04137;
}
.btn-link-danger:hover {
  color: #ac3128;
}
.btn-link-white {
  color: #fff;
}
.btn-link-white:hover {
  color: #e6e5e5;
}
.btn-link-danger > i,
.btn-link-info > i,
.btn-link-primary > i,
.btn-link-secondary > i,
.btn-link-success > i,
.btn-link-warning > i,
.btn-link-white > i {
  margin-top: -4px;
}
.btn-group {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  margin-top: 8px;
  margin-right: 12px;
  margin-bottom: 8px;
  vertical-align: middle;
}
.btn-group .btn {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  margin: 0;
}
.btn-group .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  margin-right: -1px;
  padding-right: 12px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group
  .btn:first-child:not(:last-child):not(.dropdown-toggle).btn-outline-secondary,
.btn-group
  .btn:first-child:not(:last-child):not(.dropdown-toggle).btn-secondary {
  border-right: 0;
}
.btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn + .dropdown-toggle-split {
  padding-right: 15px;
  padding-left: 8px;
}
.text-center .btn,
.text-center .btn-group {
  margin-right: 6px;
  margin-left: 6px;
}
.text-right .btn,
.text-right .btn-group {
  margin-right: 0;
  margin-left: 12px;
}
.btn-block {
  display: block;
  width: 100%;
  margin-top: 12px;
  margin-right: 0 !important;
  margin-bottom: 12px;
  margin-left: 0 !important;
  padding-right: 15px !important;
  padding-left: 15px !important;
}
.scroll-to-top-btn {
  display: block;
  position: fixed;
  right: 16px;
  bottom: -88px;
  width: 44px;
  height: 44px;
  -webkit-transition: bottom 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    opacity 0.3s, background-color 0.3s, border-color 0.3s;
  transition: bottom 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s,
    background-color 0.3s, border-color 0.3s;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 18px;
  line-height: 39px;
  opacity: 0;
  z-index: 2000;
  text-align: center;
  text-decoration: none;
}
.scroll-to-top-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
}
.scroll-to-top-btn:active,
.scroll-to-top-btn:focus {
  color: #fff;
}
.scroll-to-top-btn.visible {
  bottom: 14px;
  opacity: 1;
}
@media (max-width: 768px) {
  .scroll-to-top-btn {
    bottom: -72px;
    width: 36px;
    height: 36px;
    line-height: 31px;
  }
}
.market-button {
  display: inline-block;
  margin-right: 14px;
  margin-bottom: 14px;
  padding: 5px 14px 5px 45px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  border: 1px solid #e1e7ec;
  border-radius: 5px;
  background-position: center left 12px;
  background-color: #fff;
  background-size: 24px 24px;
  background-repeat: no-repeat;
  text-decoration: none;
}
.market-button:hover {
  background-color: #fcfeff;
}
.market-button .mb-subtitle {
  display: block;
  margin-bottom: -4px;
  color: #9da9b9;
  font-size: 12px;
}
.market-button .mb-title {
  display: block;
  color: #525252;
  font-size: 18px;
}
.market-button.apple-button {
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCAzMDUgMzA1IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAzMDUgMzA1OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCI+CjxnIGlkPSJYTUxJRF8yMjhfIj4KCTxwYXRoIGlkPSJYTUxJRF8yMjlfIiBkPSJNNDAuNzM4LDExMi4xMTljLTI1Ljc4NSw0NC43NDUtOS4zOTMsMTEyLjY0OCwxOS4xMjEsMTUzLjgyQzc0LjA5MiwyODYuNTIzLDg4LjUwMiwzMDUsMTA4LjIzOSwzMDUgICBjMC4zNzIsMCwwLjc0NS0wLjAwNywxLjEyNy0wLjAyMmM5LjI3My0wLjM3LDE1Ljk3NC0zLjIyNSwyMi40NTMtNS45ODRjNy4yNzQtMy4xLDE0Ljc5Ny02LjMwNSwyNi41OTctNi4zMDUgICBjMTEuMjI2LDAsMTguMzksMy4xMDEsMjUuMzE4LDYuMDk5YzYuODI4LDIuOTU0LDEzLjg2MSw2LjAxLDI0LjI1Myw1LjgxNWMyMi4yMzItMC40MTQsMzUuODgyLTIwLjM1Miw0Ny45MjUtMzcuOTQxICAgYzEyLjU2Ny0xOC4zNjUsMTguODcxLTM2LjE5NiwyMC45OTgtNDMuMDFsMC4wODYtMC4yNzFjMC40MDUtMS4yMTEtMC4xNjctMi41MzMtMS4zMjgtMy4wNjZjLTAuMDMyLTAuMDE1LTAuMTUtMC4wNjQtMC4xODMtMC4wNzggICBjLTMuOTE1LTEuNjAxLTM4LjI1Ny0xNi44MzYtMzguNjE4LTU4LjM2Yy0wLjMzNS0zMy43MzYsMjUuNzYzLTUxLjYwMSwzMC45OTctNTQuODM5bDAuMjQ0LTAuMTUyICAgYzAuNTY3LTAuMzY1LDAuOTYyLTAuOTQ0LDEuMDk2LTEuNjA2YzAuMTM0LTAuNjYxLTAuMDA2LTEuMzQ5LTAuMzg2LTEuOTA1Yy0xOC4wMTQtMjYuMzYyLTQ1LjYyNC0zMC4zMzUtNTYuNzQtMzAuODEzICAgYy0xLjYxMy0wLjE2MS0zLjI3OC0wLjI0Mi00Ljk1LTAuMjQyYy0xMy4wNTYsMC0yNS41NjMsNC45MzEtMzUuNjExLDguODkzYy02LjkzNiwyLjczNS0xMi45MjcsNS4wOTctMTcuMDU5LDUuMDk3ICAgYy00LjY0MywwLTEwLjY2OC0yLjM5MS0xNy42NDUtNS4xNTljLTkuMzMtMy43MDMtMTkuOTA1LTcuODk5LTMxLjEtNy44OTljLTAuMjY3LDAtMC41MywwLjAwMy0wLjc4OSwwLjAwOCAgIEM3OC44OTQsNzMuNjQzLDU0LjI5OCw4OC41MzUsNDAuNzM4LDExMi4xMTl6IiBmaWxsPSIjMmUyZTJlIi8+Cgk8cGF0aCBpZD0iWE1MSURfMjMwXyIgZD0iTTIxMi4xMDEsMC4wMDJjLTE1Ljc2MywwLjY0Mi0zNC42NzIsMTAuMzQ1LTQ1Ljk3NCwyMy41ODNjLTkuNjA1LDExLjEyNy0xOC45ODgsMjkuNjc5LTE2LjUxNiw0OC4zNzkgICBjMC4xNTUsMS4xNywxLjEwNywyLjA3MywyLjI4NCwyLjE2NGMxLjA2NCwwLjA4MywyLjE1LDAuMTI1LDMuMjMyLDAuMTI2YzE1LjQxMywwLDMyLjA0LTguNTI3LDQzLjM5NS0yMi4yNTcgICBjMTEuOTUxLTE0LjQ5OCwxNy45OTQtMzMuMTA0LDE2LjE2Ni00OS43N0MyMTQuNTQ0LDAuOTIxLDIxMy4zOTUtMC4wNDksMjEyLjEwMSwwLjAwMnoiIGZpbGw9IiMyZTJlMmUiLz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8L3N2Zz4K);
}
.market-button.google-button {
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTIgNTEyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjUxMnB4IiBoZWlnaHQ9IjUxMnB4Ij4KPHBvbHlnb24gc3R5bGU9ImZpbGw6IzVDREFERDsiIHBvaW50cz0iMjkuNTMsMCAyOS41MywyNTEuNTA5IDI5LjUzLDUxMiAyOTkuMDA0LDI1MS41MDkgIi8+Cjxwb2x5Z29uIHN0eWxlPSJmaWxsOiNCREVDQzQ7IiBwb2ludHM9IjM2OS4wNjcsMTgwLjU0NyAyNjIuMTc1LDExOS40NjcgMjkuNTMsMCAyOTkuMDA0LDI1MS41MDkgIi8+Cjxwb2x5Z29uIHN0eWxlPSJmaWxsOiNEQzY4QTE7IiBwb2ludHM9IjI5LjUzLDUxMiAyOS41Myw1MTIgMjYyLjE3NSwzODMuNTUxIDM2OS4wNjcsMzIyLjQ3IDI5OS4wMDQsMjUxLjUwOSAiLz4KPHBhdGggc3R5bGU9ImZpbGw6I0ZGQ0E5NjsiIGQ9Ik0zNjkuMDY3LDE4MC41NDdsLTcwLjA2Myw3MC45NjFsNzAuMDYzLDcwLjk2MWwxMDguNjg4LTYyLjg3N2M2LjI4OC0zLjU5Myw2LjI4OC0xMS42NzcsMC0xNS4yNyAgTDM2OS4wNjcsMTgwLjU0N3oiLz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
}
.market-button.windows-button {
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTYuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAwIDQ4MCA0ODAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ4MCA0ODA7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPGc+Cgk8cGF0aCBkPSJNMC4xNzYsMjI0TDAuMDAxLDY3Ljk2M2wxOTItMjYuMDcyVjIyNEgwLjE3NnogTTIyNC4wMDEsMzcuMjQxTDQ3OS45MzcsMHYyMjRIMjI0LjAwMVYzNy4yNDF6IE00NzkuOTk5LDI1NmwtMC4wNjIsMjI0ICAgbC0yNTUuOTM2LTM2LjAwOFYyNTZINDc5Ljk5OXogTTE5Mi4wMDEsNDM5LjkxOEwwLjE1Nyw0MTMuNjIxTDAuMTQ3LDI1NmgxOTEuODU0VjQzOS45MTh6IiBmaWxsPSIjMDBiY2YyIi8+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
}
.market-button.blackberry-button {
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA1MDMuMzIyIDUwMy4zMjIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUwMy4zMjIgNTAzLjMyMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiPgo8Zz4KCTxnPgoJCTxwYXRoIGQ9Ik0xMTYuMjg1LDYwLjc0Nkg0NS45OTNsLTIwLjgyNyw5NS40NThoNzMuNzYzYzU3LjI3NSwwLDczLjc2My0yOC42MzcsNzMuNzYzLTUzLjgwMyAgICBDMTczLjU1OSw4NC4xNzYsMTYyLjI3OCw2MC43NDYsMTE2LjI4NSw2MC43NDZ6IiBmaWxsPSIjMmUyZTJlIi8+Cgk8L2c+CjwvZz4KPGc+Cgk8Zz4KCQk8cGF0aCBkPSJNMjM4LjY0NCwzNDcuMTE5aC03MS4xNTlsLTE5Ljk1OSw5NS40NThoNzMuNzYzYzU3LjI3NSwwLDczLjc2My0yOC42MzcsNzMuNzYzLTUzLjgwMyAgICBDMjk1LjA1MSwzNzAuNTQ5LDI4NC42MzcsMzQ3LjExOSwyMzguNjQ0LDM0Ny4xMTl6IiBmaWxsPSIjMmUyZTJlIi8+Cgk8L2c+CjwvZz4KPGc+Cgk8Zz4KCQk8cGF0aCBkPSJNOTEuMTE5LDE5OS41OTNIMTkuOTU5TDAsMjk1LjA1MWg3My43NjNjNTcuMjc1LDAsNzMuNzYzLTI4LjYzNyw3My43NjMtNTMuODAzICAgIEMxNDcuNTI1LDIyMy4wMjQsMTM3LjExMiwxOTkuNTkzLDkxLjExOSwxOTkuNTkzeiIgZmlsbD0iIzJlMmUyZSIvPgoJPC9nPgo8L2c+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTQyMC44ODEsMjk1LjA1MWgtNzEuMTU5bC0xOS45NTksODYuNzhoNzMuNzYzYzU3LjI3NSwwLDczLjc2My0yNC4yOTgsNzMuNzYzLTQ5LjQ2NCAgICBDNDc3LjI4OCwzMTQuMTQyLDQ2Ni44NzUsMjk1LjA1MSw0MjAuODgxLDI5NS4wNTF6IiBmaWxsPSIjMmUyZTJlIi8+Cgk8L2c+CjwvZz4KPGc+Cgk8Zz4KCQk8cGF0aCBkPSJNNDQ2LjkxNSwxNDcuNTI1aC03MS4xNTlsLTE5Ljk1OSw4Ni43OGg3My43NjNjNTcuMjc1LDAsNzMuNzYzLTI0LjI5OCw3My43NjMtNDkuNDY0ICAgIEM1MDMuMzIyLDE2Ni42MTcsNDkyLjkwOCwxNDcuNTI1LDQ0Ni45MTUsMTQ3LjUyNXoiIGZpbGw9IiMyZTJlMmUiLz4KCTwvZz4KPC9nPgo8Zz4KCTxnPgoJCTxwYXRoIGQ9Ik0yNjUuNTQ2LDE5OS41OTNoLTcxLjE1OWwtMTkuOTU5LDk1LjQ1OGg3My43NjNjNTcuMjc1LDAsNzMuNzYzLTI4LjYzNyw3My43NjMtNTMuODAzICAgIEMzMjIuODIsMjIzLjAyNCwzMTEuNTM5LDE5OS41OTMsMjY1LjU0NiwxOTkuNTkzeiIgZmlsbD0iIzJlMmUyZSIvPgoJPC9nPgo8L2c+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTI5MS41OCw2MC43NDZIMjIwLjQybC0xOS45NTksOTUuNDU4aDczLjc2M2M1Ny4yNzUsMCw3My43NjMtMjguNjM3LDczLjc2My01My44MDMgICAgQzM0Ny45ODYsODQuMTc2LDMzNy41NzMsNjAuNzQ2LDI5MS41OCw2MC43NDZ6IiBmaWxsPSIjMmUyZTJlIi8+Cgk8L2c+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
}
.market-button.amazon-button {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAYAAABV7bNHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2FpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTExIDc5LjE1ODMyNSwgMjAxNS8wOS8xMC0wMToxMDoyMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0idXVpZDo1RDIwODkyNDkzQkZEQjExOTE0QTg1OTBEMzE1MDhDOCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpGQUJGNjhGNDRGNkMxMUU3OUY5REJEQzBGNkVBQUI5QiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpGQUJGNjhGMzRGNkMxMUU3OUY5REJEQzBGNkVBQUI5QiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IFdpbmRvd3MiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo2QUM1ODJFMkIxNEExMUUzQkY1NEUzQkNCRjlEODA1RSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo2QUM1ODJFM0IxNEExMUUzQkY1NEUzQkNCRjlEODA1RSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PgNXCVIAAAc7SURBVHja5FwJbFRVFH0tQimgUCiubKJCWWSwKIooVhG3aESkETRqBEEEEURExBXiVhElkRiIEFwTQEHciQiIMQhFkUGFihErIJjWUgg0LFXqPf4z9jvMTOe/v9ebnEw78+//b85/y7n33T8ZNTU1yo5FIhEdtxMEXQRtBGcLOglO5ftoUKagSrBLUCLYKCgVbBEcNJ8oGo0qN+045Z2dJCgU9BdcJ2igcY4DgsWC9wTvetHoTA+u0ZlfCL3hJcFATXJgzQS3C5YIKgWT3G58hotDDMNlvmCQy9+hAj1ThtqqMPWgywXlHpADayVYKTfq0bAQdJ9guaCR8tamCUlPBZ2gcYIXlH82RUgaFlSCCgQzlf82T0hqFzSCGgreUsGxqUEj6BkKvaBYofSi5kERihCAE2z4rxYs4qp3WNBY0F0wVtBC85xNKUrnBoGgUdBTGn4IH24UbEvwGQh7TDBdMNGGQA3EELtGw2eh4Jwk5JjtAcFDmu0633clLeMcweYOi24IOLta9CnR6BF/CE4Whf2Xnz3oKg2fJzR8PtTwyaXK9nWIHbF4PFIYn2hcZ6Vm+5r4SpB039c5T5RwqO0VHE3hgoByv8alSm3oM99XsecJxSUaUXyOoKPgTOIMEjdK8xrVYSbIbIeIMsGPDp43Q/lkmap+W0bQepDTliU43oam+bM+EIT5qZcyEve5nL9aCtpzHmtq49zVYSOoraCv4AZBHgPc3P/7EOsgGCoYzt4SKnOTIAyZGYJrwzzLu0XQi4Lx9WEZdJqg0wVfqmAlzwJDUB/BmvompJwiqLND5FQwXtuujJ3TA1TlmM8eDytB2P9absMfaVbshryN+DeJuDsrzATNor7RMezV3xvkWMwWQZFIpIe8jNB0v0kZuedAm91gdaSm31iL5NSEjiDuO92h4bqGwzIUMaOdHnSe0ktpztfwaRwqgqT3QAheqHnNZZoyIlQ9COT00/BDzrpcwy9fs51ZfhEEXdJRw+8AdY9XBPm2q4HyklM0/HRqE7H3f4mN2NAXgrKUXgUZihGsVl0Mt7GKDfKLIAyTIxp+2cqoj7bSeybb+H5DZEE5zQ+CsEn4u6avlb2x2cpI2tuxiX4Q9JOquzIjmaHOuXcax6H0ZaADK/V46UW9vCYIavgLG43+XHBRks9QLP6B3TsfZ6/pOmqXv8hdGSAvn9psOIiap4zcD5bkQsINQ+agKBqN/uZVjFOsjAdLsm2co4DwwhAgY5/sfk9iMbkT++TlVRUus7zTajfdMcvjL7hEWa9oi9llclMf9JQgueBmVVv64rY9p4yiz9kW/VC01U33YRcnqjtQQLXWZXIeFsTu/tOC9Wn6oR6yPW+kljmViOrDRp/rMDEourpeHVujiJ60VaXOEy0TYq72K9RIZEigLXbwfNBZJ6rEBZw7Uugo2CtOkOM0QbDBmAyVveqybwUDGMFXpDjuG5W4bmiKkDPSqS/0r1A8PEfvAZneL+ck+wgJNVR1RIhEuRkEvHhUcyNJhWwosdgElNEsYGA7pnh05ZI0fJARRSF7W8Z6hxhbQtv9+k+64q7tx8xBmEca2gwh4odIMYce5qaWJKkBswEQbfvZIPSGn1XqCtnEanV0ZYncpNHKKLz6uI7DeyojGwr0IlHZvFEoPF/H6AAPDO+J70GLKPNxwC10qC92heBJ3qx0rEh60OT4HnQrleZQ3s1xIVTKiexKVbtRUEEgL76XqyBSx/GZx6aJlnl0+5s5JlH0hO2Z25i/2RpigjaRgHKKxkTWjcMrRsy+VKsYHvp/n39fyskTlWKtQ0rQbmVU6lelOOYHwXem/0vrWuYhzpaa/p9A7TFJ+biJ55BlUZVv4nSiuHDE6icxOa9KRwehEnVu3ImLBDuV8Qhm85AR04TtRvufVcZvhtzNz9qYRshazsFpCUVUbsTX5eARI8zwSDwh2ZUfcGIwv8yh3kK7c00TdkxQ9jcdP9Oqkp7GSbsqwUw/jBpmC4dh94CQAvF4D1X59ySieZwK72wSpbGNhF9UXDFYusHqR7woqsAuSNKgGSaBCE21QfCVh6REGHoMZqiSzCBdzFUpOaYg+0470fxOqu0pglQ/AdFP1e7bl/IubuHEt07pPS8Wbw05tLHK9mDYkFeHTzV7/Jtx76PCLYOB9kqnYrF8jtWLLX4xSPrNXHrLuWJgQizj31Uc9kd58zBf4PmzTozsWzPm6mJxkXiHwndX3PvNTOFOh/8sdQliMSu2gb1kiDJ+qyPdffpGjId6ejTs0HORrF+R5PNWXKnHuJXuWMCAD3tY21Rw7GtGAV1TkKPYc0aoFNvoTuWDZlBoTWLj/LIV7NUISt8IYsJsOhtXoIxk/l4PSNlMZYzJGj/stNDJk7tVHLmaeIQTeV9qqTxOjHasjAm2pZwL17nJvtvVo8gQfEZMZXKqHXVHPlekFswgNFK1JXPwO8gVZg/lwnpKht1ejtm/BRgAKCaVSdcawG4AAAAASUVORK5CYII=);
}
.market-button.mb-light-skin {
  border-color: hsla(0, 0%, 100%, 0.12);
  background-color: transparent;
}
.market-button.mb-light-skin .mb-subtitle,
.market-button.mb-light-skin .mb-title {
  color: #fff;
}
.market-button.mb-light-skin .mb-subtitle {
  opacity: 0.55;
}
.market-button.mb-light-skin:hover {
  background-color: hsla(0, 0%, 100%, 0.06);
}
.market-button.mb-light-skin.apple-button {
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCAzMDUgMzA1IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAzMDUgMzA1OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCI+CjxnIGlkPSJYTUxJRF8yMjhfIj4KCTxwYXRoIGlkPSJYTUxJRF8yMjlfIiBkPSJNNDAuNzM4LDExMi4xMTljLTI1Ljc4NSw0NC43NDUtOS4zOTMsMTEyLjY0OCwxOS4xMjEsMTUzLjgyQzc0LjA5MiwyODYuNTIzLDg4LjUwMiwzMDUsMTA4LjIzOSwzMDUgICBjMC4zNzIsMCwwLjc0NS0wLjAwNywxLjEyNy0wLjAyMmM5LjI3My0wLjM3LDE1Ljk3NC0zLjIyNSwyMi40NTMtNS45ODRjNy4yNzQtMy4xLDE0Ljc5Ny02LjMwNSwyNi41OTctNi4zMDUgICBjMTEuMjI2LDAsMTguMzksMy4xMDEsMjUuMzE4LDYuMDk5YzYuODI4LDIuOTU0LDEzLjg2MSw2LjAxLDI0LjI1Myw1LjgxNWMyMi4yMzItMC40MTQsMzUuODgyLTIwLjM1Miw0Ny45MjUtMzcuOTQxICAgYzEyLjU2Ny0xOC4zNjUsMTguODcxLTM2LjE5NiwyMC45OTgtNDMuMDFsMC4wODYtMC4yNzFjMC40MDUtMS4yMTEtMC4xNjctMi41MzMtMS4zMjgtMy4wNjZjLTAuMDMyLTAuMDE1LTAuMTUtMC4wNjQtMC4xODMtMC4wNzggICBjLTMuOTE1LTEuNjAxLTM4LjI1Ny0xNi44MzYtMzguNjE4LTU4LjM2Yy0wLjMzNS0zMy43MzYsMjUuNzYzLTUxLjYwMSwzMC45OTctNTQuODM5bDAuMjQ0LTAuMTUyICAgYzAuNTY3LTAuMzY1LDAuOTYyLTAuOTQ0LDEuMDk2LTEuNjA2YzAuMTM0LTAuNjYxLTAuMDA2LTEuMzQ5LTAuMzg2LTEuOTA1Yy0xOC4wMTQtMjYuMzYyLTQ1LjYyNC0zMC4zMzUtNTYuNzQtMzAuODEzICAgYy0xLjYxMy0wLjE2MS0zLjI3OC0wLjI0Mi00Ljk1LTAuMjQyYy0xMy4wNTYsMC0yNS41NjMsNC45MzEtMzUuNjExLDguODkzYy02LjkzNiwyLjczNS0xMi45MjcsNS4wOTctMTcuMDU5LDUuMDk3ICAgYy00LjY0MywwLTEwLjY2OC0yLjM5MS0xNy42NDUtNS4xNTljLTkuMzMtMy43MDMtMTkuOTA1LTcuODk5LTMxLjEtNy44OTljLTAuMjY3LDAtMC41MywwLjAwMy0wLjc4OSwwLjAwOCAgIEM3OC44OTQsNzMuNjQzLDU0LjI5OCw4OC41MzUsNDAuNzM4LDExMi4xMTl6IiBmaWxsPSIjRkZGRkZGIi8+Cgk8cGF0aCBpZD0iWE1MSURfMjMwXyIgZD0iTTIxMi4xMDEsMC4wMDJjLTE1Ljc2MywwLjY0Mi0zNC42NzIsMTAuMzQ1LTQ1Ljk3NCwyMy41ODNjLTkuNjA1LDExLjEyNy0xOC45ODgsMjkuNjc5LTE2LjUxNiw0OC4zNzkgICBjMC4xNTUsMS4xNywxLjEwNywyLjA3MywyLjI4NCwyLjE2NGMxLjA2NCwwLjA4MywyLjE1LDAuMTI1LDMuMjMyLDAuMTI2YzE1LjQxMywwLDMyLjA0LTguNTI3LDQzLjM5NS0yMi4yNTcgICBjMTEuOTUxLTE0LjQ5OCwxNy45OTQtMzMuMTA0LDE2LjE2Ni00OS43N0MyMTQuNTQ0LDAuOTIxLDIxMy4zOTUtMC4wNDksMjEyLjEwMSwwLjAwMnoiIGZpbGw9IiNGRkZGRkYiLz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8L3N2Zz4K);
}
.market-button.mb-light-skin.blackberry-button {
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA1MDMuMzIyIDUwMy4zMjIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUwMy4zMjIgNTAzLjMyMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiPgo8Zz4KCTxnPgoJCTxwYXRoIGQ9Ik0xMTYuMjg1LDYwLjc0Nkg0NS45OTNsLTIwLjgyNyw5NS40NThoNzMuNzYzYzU3LjI3NSwwLDczLjc2My0yOC42MzcsNzMuNzYzLTUzLjgwMyAgICBDMTczLjU1OSw4NC4xNzYsMTYyLjI3OCw2MC43NDYsMTE2LjI4NSw2MC43NDZ6IiBmaWxsPSIjRkZGRkZGIi8+Cgk8L2c+CjwvZz4KPGc+Cgk8Zz4KCQk8cGF0aCBkPSJNMjM4LjY0NCwzNDcuMTE5aC03MS4xNTlsLTE5Ljk1OSw5NS40NThoNzMuNzYzYzU3LjI3NSwwLDczLjc2My0yOC42MzcsNzMuNzYzLTUzLjgwMyAgICBDMjk1LjA1MSwzNzAuNTQ5LDI4NC42MzcsMzQ3LjExOSwyMzguNjQ0LDM0Ny4xMTl6IiBmaWxsPSIjRkZGRkZGIi8+Cgk8L2c+CjwvZz4KPGc+Cgk8Zz4KCQk8cGF0aCBkPSJNOTEuMTE5LDE5OS41OTNIMTkuOTU5TDAsMjk1LjA1MWg3My43NjNjNTcuMjc1LDAsNzMuNzYzLTI4LjYzNyw3My43NjMtNTMuODAzICAgIEMxNDcuNTI1LDIyMy4wMjQsMTM3LjExMiwxOTkuNTkzLDkxLjExOSwxOTkuNTkzeiIgZmlsbD0iI0ZGRkZGRiIvPgoJPC9nPgo8L2c+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTQyMC44ODEsMjk1LjA1MWgtNzEuMTU5bC0xOS45NTksODYuNzhoNzMuNzYzYzU3LjI3NSwwLDczLjc2My0yNC4yOTgsNzMuNzYzLTQ5LjQ2NCAgICBDNDc3LjI4OCwzMTQuMTQyLDQ2Ni44NzUsMjk1LjA1MSw0MjAuODgxLDI5NS4wNTF6IiBmaWxsPSIjRkZGRkZGIi8+Cgk8L2c+CjwvZz4KPGc+Cgk8Zz4KCQk8cGF0aCBkPSJNNDQ2LjkxNSwxNDcuNTI1aC03MS4xNTlsLTE5Ljk1OSw4Ni43OGg3My43NjNjNTcuMjc1LDAsNzMuNzYzLTI0LjI5OCw3My43NjMtNDkuNDY0ICAgIEM1MDMuMzIyLDE2Ni42MTcsNDkyLjkwOCwxNDcuNTI1LDQ0Ni45MTUsMTQ3LjUyNXoiIGZpbGw9IiNGRkZGRkYiLz4KCTwvZz4KPC9nPgo8Zz4KCTxnPgoJCTxwYXRoIGQ9Ik0yNjUuNTQ2LDE5OS41OTNoLTcxLjE1OWwtMTkuOTU5LDk1LjQ1OGg3My43NjNjNTcuMjc1LDAsNzMuNzYzLTI4LjYzNyw3My43NjMtNTMuODAzICAgIEMzMjIuODIsMjIzLjAyNCwzMTEuNTM5LDE5OS41OTMsMjY1LjU0NiwxOTkuNTkzeiIgZmlsbD0iI0ZGRkZGRiIvPgoJPC9nPgo8L2c+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTI5MS41OCw2MC43NDZIMjIwLjQybC0xOS45NTksOTUuNDU4aDczLjc2M2M1Ny4yNzUsMCw3My43NjMtMjguNjM3LDczLjc2My01My44MDMgICAgQzM0Ny45ODYsODQuMTc2LDMzNy41NzMsNjAuNzQ2LDI5MS41OCw2MC43NDZ6IiBmaWxsPSIjRkZGRkZGIi8+Cgk8L2c+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
}
.market-button.mb-light-skin.amazon-button {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAYAAABV7bNHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2FpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTExIDc5LjE1ODMyNSwgMjAxNS8wOS8xMC0wMToxMDoyMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0idXVpZDo1RDIwODkyNDkzQkZEQjExOTE0QTg1OTBEMzE1MDhDOCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1QjFCQzQ2QjRGNkQxMUU3OUY5REJEQzBGNkVBQUI5QiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1QjFCQzQ2QTRGNkQxMUU3OUY5REJEQzBGNkVBQUI5QiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IFdpbmRvd3MiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo2QUM1ODJFMkIxNEExMUUzQkY1NEUzQkNCRjlEODA1RSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo2QUM1ODJFM0IxNEExMUUzQkY1NEUzQkNCRjlEODA1RSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pk2CzRIAAAcFSURBVHja5FxpbBZVFH2ULlhQCq2oiBWLWqCI0AoqKILgGo2KEqlGjSKKIuJaC9EgRKNYURL9YQ2KawKICO5RqZYYsKDFtS1VsSpaU2ypgQYo0HpP5lTGz2/pvNnrTU7yLXNn3px5775777tvurW3tysf5DDBEMEAwUmCEwX9+TsalCRoEfwuqBF8KagTVAt2e9nQZA+vdYRgimCi4GJBd41z7BK8LlgjeMOTVqMHuYxcwRrBgXZnZYegyO32d3NxiGG4LBVMdvkZN7JnfuzGyZNcavQkwXYPyIFkCsoED4SFoDsFHwpSPTb8CwQPO31Sp4fYbMFi5a9MEzwfRILGu2UHNORYwS9BGmIpgldVcGR+0GzQI3T0giKY1XoHZYjBAazHuTT1ywUrOOvtFfQQDBPMEmTYaNd0wZIgOIrzNB29zYKcBOcuseFIljjhKDoxxC7U0FkuGCnYmuC4ewVzNNt1ahCGGILNXy3qIOAcalEHAWuuRZ0/BUcKDvhppM/X0HlQQ+dtDZ0setm+zmKtFo9HCuM9jeuUabYv3e90x0uCfvReewoOZZAai3g4kjs1rlNnwz8LVKjRgwT1EeQIjicGCdoEM5gEsyonCGo19PIEVUFKmO0hGgRbnIwZ/fI4k1TXFtvEJgf8BtNo13R9mv1dgSDYpwJlJO6zaL/6MiLPofHXlX1hI+gYwVjBZYLBDHCz/u9DbKCgkK7AoLAZMTcJwpBZJLgozFbeLYKeFNzRFaZBpwk6TvCpClbyLDAEnS5Y39UcKacIynWInEbGa0i471DGUnMD7dk8XzxNB2IxrH/9wClcR5BmxVLRa4KvYjh3urEY4sAf/e5BT9sg5ynB7UGOxewSNFwZyXEduVIZyfpAi91g9SZNvVkWyWkPI0FYd7peQ289h2UoYkY7BI1SeinNpRo6PcJGEBzBMZq672u6EaEiCOSM09BrVsYKqlXJ12xnml8EwS/J0dDbRb/HK4LS/SIoW3CUhp5O4SbW/s+yERv6QlCa0qsgy1DWqy6m2ZjFJvtFEIZJq4beIcqoj7bSe4pt3N9UwdF+EIT1+D80dWdYOPYZZSTt7cg9fhD0vUpcmRFLrhOM7sRxJYJLHZipkbgr8JogeMPrbDT6E8EZMf7rJXjL7pOPkBf9SHecI/jAZsNB1HPKyP1gSp5CuCHIHCwU/OYVQZiN6ml4wyJPCO72Khb7S/CCCpfs93KIQVAp9p2HN7iKQbJOgu5spVHHbTcfhNKSxz0i5zHB5Zz6rQiKtvKUbpG7Q9uGNrS7K3Mjrrexk3pVgsygbIfaJDjF4V6DoqtL1H9rFDHEahPkiZBWucB2CxzegLbSwV5TnuDpF8TRfdape3Jjl94EQY0NYioFkzp5rdFR9Oe4suNwb2m2Xlh/c8xNNUiooarjZCJabgYBL2oWsWl3C92GGotNQBnNMga2M+U+VnVCBxnRkRyqiPX2MLbcKPjZfF/mNAKWjlNshhBmWccLjqJt6kuSujMbgOKmnWzQF8pY4GuznFYoza6Rm7lVGYVX7yY4fASzoWMYn/Wno4sHhcLzCkYH2DDc9C8/SC60gm4+DriaCl1FzhU8xIfVGVkopBdH9qBr6GkW8mnODqGnHE3OUwcXChoJ5MWbOQvmRMk8/lP2lxyRBLuKYxJFT1ieuZb5m9oQE/Q1CdhOpzGa5HF49TSFUTE9aWz6f5OfJ9B4olLs8JAShIC6Lg45iuHSN6bvdYlCDThnq03f72IWsUj5uIjnkCCffh97ViF/w8TRUT/ZZA5L4sViqERdEnFi5FO2KWMLZu+QEZPOdqP9jyrjnSG38L8BphHymTKVzCQKVlG5EVm4hC1GxUw8IdmVH3BiYF9K6W+h3Vkmg91RfDHRdPxiq9H8AhrtliiW/gb6MNUchsMCQgqcx9sEmwXfkghzj0ebc01OacdCwk/KeCmCijaLxZN3eFFUgZ0Wo0GLTA4ifKpKwQYPSYG3ji0LVzAdHEvgupirUvqYguwbIw+2siC3jd72XBX/FRDj1MF1+zo+xWoavgqlt18sUlI4tDHLDmfYMDiBzj72+FcifkeFGyrY8NqdspgZRYuxWD7H6pkWb6yVSbZ6+iVNNIgN/NzCYd/Ghwd7gf1nKOLsR0OKmGuIxUliJR3fyL1qvUzhzsBoMabukm4le8lUJsI7u06fynhohEfDDj0X1WxrY/yfyZl6plsp12UM+LCGtVUFRz5nFDA0DjmKPWe6irOM7tSGukV0tIrYOL9kLXs1gtKXnTih0zsOS9i48cpI5jd7QEoVPWMYa7zYabmTJ3erOLKcuJ+GfCx9qcE0jHakgQm21bSFFW6y73b1KDIEHxHzmZzKpt+RzxkpgxmEVHWwZA56uznDNNFd2ESXod7LMfu3AAMA3eQjZHI91/8AAAAASUVORK5CYII=);
}
.facebook-btn,
.google-btn,
.twitter-btn {
  text-transform: none;
}
.facebook-btn > i,
.google-btn > i,
.twitter-btn > i {
  margin-top: 0;
}
.facebook-btn {
  border-color: #3b5998;
  background-color: transparent;
  color: #3b5998;
}
.facebook-btn:hover {
  background-color: #3b5998;
  color: #fff;
}
.twitter-btn {
  border-color: #55acee;
  background-color: transparent;
  color: #55acee;
}
.twitter-btn:hover {
  background-color: #55acee;
  color: #fff;
}
.google-btn {
  border-color: #dd4b39;
  background-color: transparent;
  color: #dd4b39;
}
.google-btn > i {
  font-size: 1.3em;
}
.google-btn:hover {
  background-color: #dd4b39;
  color: #fff;
}
.social-button {
  display: inline-block;
  margin-top: 5px;
  margin-right: 18px;
  margin-bottom: 5px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  color: #FBF6EC;
  font-size: 22px;
  vertical-align: middle;
}
.social-button,
.social-button:focus {
  text-decoration: none;
}
.text-center .social-button {
  margin-right: 9px;
  margin-left: 9px;
}
.text-center .social-button.shape-circle,
.text-center .social-button.shape-rounded,
.text-center .social-button.shape-square {
  margin-right: 4px;
  margin-left: 4px;
}
.text-right .social-button {
  margin-right: 0;
  margin-left: 18px;
}
.text-right .social-button.shape-circle,
.text-right .social-button.shape-rounded,
.text-right .social-button.shape-square {
  margin-right: 0;
  margin-left: 8px;
}
.sb-amazon {
  font-size: 1.15em !important;
}
.sb-amazon:focus,
.sb-amazon:hover {
  color: #f90 !important;
}
.sb-airbnb:focus,
.sb-airbnb:hover {
  color: #fd5c63 !important;
}
.sb-behance {
  font-size: 1.1em !important;
}
.sb-behance:focus,
.sb-behance:hover {
  color: #1769ff !important;
}
.sb-deviantart {
  font-size: 1.2em !important;
}
.sb-deviantart:focus,
.sb-deviantart:hover {
  color: #4e6252 !important;
}
.sb-digg {
  font-size: 1.2em !important;
}
.sb-digg:focus,
.sb-digg:hover {
  color: #000 !important;
}
.sb-disqus {
  font-size: 1.1em !important;
}
.sb-disqus:focus,
.sb-disqus:hover {
  color: #2e9fff !important;
}
.sb-dribbble:focus,
.sb-dribbble:hover {
  color: #ea4c89 !important;
}
.sb-drupal {
  font-size: 1.1em !important;
}
.sb-drupal:focus,
.sb-drupal:hover {
  color: #0077c0 !important;
}
.sb-email:focus,
.sb-email:hover {
  color: #96c950 !important;
}
.sb-facebook:focus,
.sb-facebook:hover {
  color: #3b5998 !important;
}
.sb-flickr:focus,
.sb-flickr:hover {
  color: #0063dc !important;
}
.sb-foursquare:focus,
.sb-foursquare:hover {
  color: #ef4b78 !important;
}
.sb-github:focus,
.sb-github:hover {
  color: #4183c4 !important;
}
.sb-google-plus {
  font-size: 22px !important;
}
.sb-google-plus:focus,
.sb-google-plus:hover {
  color: #dd4b39 !important;
}
.sb-instagram:focus,
.sb-instagram:hover {
  color: #3f729b !important;
}
.sb-lastfm {
  font-size: 1.1em !important;
}
.sb-lastfm:focus,
.sb-lastfm:hover {
  color: #e31b23 !important;
}
.sb-linkedin:focus,
.sb-linkedin:hover {
  color: #0976b4 !important;
}
.sb-odnoklassniki {
  font-size: 1.1em !important;
}
.sb-odnoklassniki:focus,
.sb-odnoklassniki:hover {
  color: #ed812b !important;
}
.sb-paypal {
  font-size: 0.9em !important;
}
.sb-paypal:focus,
.sb-paypal:hover {
  color: #253b80 !important;
}
.sb-pinterest:focus,
.sb-pinterest:hover {
  color: #cc2127 !important;
}
.sb-reddit {
  font-size: 1.1em !important;
}
.sb-reddit:focus,
.sb-reddit:hover {
  color: #ff4500 !important;
}
.sb-rss {
  font-size: 0.9em !important;
}
.sb-rss:focus,
.sb-rss:hover {
  color: #f26522 !important;
}
.sb-skype {
  font-size: 0.9em !important;
}
.sb-skype:focus,
.sb-skype:hover {
  color: #00aff0 !important;
}
.sb-soundcloud {
  font-size: 1.2em !important;
}
.sb-soundcloud:focus,
.sb-soundcloud:hover {
  color: #f80 !important;
}
.sb-stackoverflow:focus,
.sb-stackoverflow:hover {
  color: #fe7a15 !important;
}
.sb-steam:focus,
.sb-steam:hover {
  color: #7da10e !important;
}
.sb-stumbleupon:focus,
.sb-stumbleupon:hover {
  color: #eb4924 !important;
}
.sb-tumblr:focus,
.sb-tumblr:hover {
  color: #35465c !important;
}
.sb-twitch:focus,
.sb-twitch:hover {
  color: #6441a5 !important;
}
.sb-twitter:focus,
.sb-twitter:hover {
  color: #55acee !important;
}
.sb-vimeo:focus,
.sb-vimeo:hover {
  color: #1ab7ea !important;
}
.sb-vine:focus,
.sb-vine:hover {
  color: #00b488 !important;
}
.sb-vk {
  font-size: 1.1em !important;
}
.sb-vk:focus,
.sb-vk:hover {
  color: #45668e !important;
}
.sb-wordpress:focus,
.sb-wordpress:hover {
  color: #21759b !important;
}
.sb-xing:focus,
.sb-xing:hover {
  color: #026466 !important;
}
.sb-yahoo {
  font-size: 1.1em !important;
}
.sb-yahoo:focus,
.sb-yahoo:hover {
  color: #400191 !important;
}
.sb-yelp:focus,
.sb-yelp:hover {
  color: #af0606 !important;
}
.sb-youtube:focus,
.sb-youtube:hover {
  color: #e52d27 !important;
}
.sb-light-skin {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: transparent;
  color: hsla(0, 0%, 100%, 0.6) !important;
}
.sb-light-skin:focus,
.sb-light-skin:hover {
  color: #fff !important;
}
.sb-light-skin.shape-circle,
.sb-light-skin.shape-rounded,
.sb-light-skin.shape-square {
  border-color: hsla(0, 0%, 100%, 0.12);
}
.sb-light-skin.shape-circle:hover,
.sb-light-skin.shape-rounded:hover,
.sb-light-skin.shape-square:hover {
  background-color: hsla(0, 0%, 100%, 0.06);
}
.nav-tabs {
  border-bottom-color: #e1e7ec;
}
.nav-tabs .nav-link {
  padding: 10px 20px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  color: #2b2b2b;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
}
.nav-tabs .nav-link:hover {
  color: #96c950;
}
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-color: transparent;
}
.nav-tabs .nav-link.disabled,
.nav-tabs .nav-link.disabled:hover {
  color: #9da9b9;
}
.nav-tabs .nav-link > i {
  margin-top: -3px;
  margin-right: 5px;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  border-color: #e1e7ec #e1e7ec #fff;
  color: #94a1b3;
}
.tab-content {
  padding: 24px;
  border-right: 1px solid #e1e7ec;
  border-bottom: 1px solid #e1e7ec;
  border-left: 1px solid #e1e7ec;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  overflow: hidden;
}
.tab-content ol:last-child,
.tab-content p:last-child,
.tab-content ul:last-child {
  margin-bottom: 0;
}
.nav-pills .nav-link {
  margin-right: 5px;
  padding: 8px 16px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 22px;
  color: #525252;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
}
.nav-pills .nav-link:hover:not(.disabled) {
  background-color: #fcfeff;
}
.nav-pills .nav-link.disabled {
  color: #9da9b9;
}
.nav-pills .nav-link > i {
  margin-top: -4px;
  margin-right: 5px;
}
.nav-pills .nav-item.show .nav-link,
.nav-pills .nav-link.active {
  background-color: #1e8e20 !important;
}
.nav-pills + .tab-content {
  padding: 24px 0 0;
  border: 0;
  border-radius: 0;
}
.nav-pills.nav-justified .nav-link {
  margin-right: 0;
}
.nav-pills.justify-content-center .nav-link {
  margin: 0 3px;
}
.nav-pills.justify-content-end .nav-link {
  margin: 0 0 0 5px;
}
.nav-pills.flex-column .nav-link {
  margin: 0 0 5px;
}
.transition.fade {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.transition.fade.show {
  opacity: 1;
}
.transition.scale.fade {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
.transition.scaledown.fade {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.transition.scale.fade.show,
.transition.scaledown.fade.show {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.transition.left.fade {
  -webkit-transform: translateX(40px);
  transform: translateX(40px);
}
.transition.right.fade {
  -webkit-transform: translateX(-40px);
  transform: translateX(-40px);
}
.transition.left.fade.show,
.transition.right.fade.show {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.transition.top.fade {
  -webkit-transform: translateY(-40px);
  transform: translateY(-40px);
}
.transition.bottom.fade {
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
}
.transition.bottom.fade.show,
.transition.top.fade.show {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.transition.flip.fade {
  -webkit-transform: rotateY(-90deg) scale(1.1);
  transform: rotateY(-90deg) scale(1.1);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.transition.flip.fade.show {
  -webkit-transform: rotateY(0deg) scale(1);
  transform: rotateY(0deg) scale(1);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.card {
  border-radius: 7px;
  border-color: #e1e7ec;
}
.card .google-map {
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}
.card-header {
  border-bottom-color: #e1e7ec;
}
.card-header .h1,
.card-header .h2,
.card-header .h3,
.card-header .h4,
.card-header .h5,
.card-header .h6,
.card-header h1,
.card-header h2,
.card-header h3,
.card-header h4,
.card-header h5,
.card-header h6 {
  margin-bottom: 0;
}
.card-header:first-child {
  border-radius: 7px;
}
.card-footer,
.card-header {
  background-color: #fff;
}
.card-footer {
  border-top-color: #e1e7ec;
}
.card-footer:last-child {
  border-radius: 0 0 7px 7px;
}
.card-block ol:last-child,
.card-block p:last-child,
.card-block ul:last-child {
  margin-bottom: 0;
}
.card-block .tab-content {
  padding: 0;
  border: 0;
}
.card-block .card-buttons-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .card-block .card-buttons-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.card-primary {
  border-color: #96c950;
  background-color: #96c950;
}
.card-success {
  border-color: #1e8e20;
  background-color: #1e8e20;
}
.card-info {
  border-color: #9aa0a2;
  background-color: #9aa0a2;
}
.card-warning {
  border-color: #e6731d;
  background-color: #e6731d;
}
.card-danger {
  border-color: #d04137;
  background-color: #d04137;
}
.card-outline-primary {
  border-color: #96c950;
}
.card-outline-success {
  border-color: #1e8e20;
}
.card-outline-info {
  border-color: #9aa0a2;
}
.card-outline-warning {
  border-color: #e6731d;
}
.card-outline-danger {
  border-color: #d04137;
}
.card-group .card .card-footer {
  border-radius: 0;
}
.card-group .card:first-child .card-footer {
  border-bottom-left-radius: 7px;
}
.card-group .card:last-child .card-footer {
  border-bottom-right-radius: 7px;
}
.card-img-tiles {
  display: block;
  border-bottom: 1px solid #e1e7ec;
}
.card-img-tiles > .inner {
  display: table;
  width: 100%;
}
.card-img-tiles .main-img,
.card-img-tiles .thumblist {
  display: table-cell;
  width: 65%;
  padding: 15px;
  vertical-align: middle;
}
.card-img-tiles .main-img > img,
.card-img-tiles .thumblist > img {
  display: block;
  width: 100%;
  margin-bottom: 6px;
}
.card-img-tiles .main-img > img:last-child,
.card-img-tiles .thumblist > img:last-child {
  margin-bottom: 0;
}
.card-img-tiles .thumblist {
  width: 35%;
  border-left: 1px solid #e1e7ec;
}
.accordion .card {
  margin-bottom: 8px;
}
.accordion [data-toggle="collapse"] {
  display: block;
  position: relative;
  color: #2b2b2b;
  text-decoration: none;
}
.accordion [data-toggle="collapse"]:after {
  position: absolute;
  top: calc(50% - 6px);
  right: 20px;
  width: 0;
  height: 0;
  margin-top: -2px;
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
  border: solid #525252;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  content: "";
}
.accordion [data-toggle="collapse"].collapsed:after {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.accordion [data-toggle="collapse"] > i {
  margin-top: -4px;
  margin-right: 7px;
}
.accordion [data-toggle="collapse"] > i.socicon-paypal {
  display: inline-block;
  margin-top: 1px;
  font-size: 0.8em;
  vertical-align: middle;
}
.accordion [data-toggle="collapse"] > i.icon-medal {
  width: 16px;
  height: 16px;
  background-size: 16px;
}
.pagination {
  display: table;
  width: 100%;
  border-top: 1px solid #e1e7ec;
}
.pagination > .column {
  display: table-cell;
  padding-top: 16px;
  vertical-align: middle;
}
.pagination .pages {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pagination .pages > li {
  display: inline-block;
  width: 36px;
  height: 36px;
  font-size: 14px;
  font-weight: 500;
  line-height: 34px;
  text-align: center;
}
.pagination .pages > li > a {
  display: block;
  width: 36px;
  height: 36px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid transparent;
  border-radius: 50%;
  color: #525252;
  line-height: 34px;
  text-decoration: none;
}
.pagination .pages > li > a:hover {
  border-color: #e1e7ec;
  background-color: #fcfeff;
}
.pagination .pages > li.active > a {
  border-color: #96c950;
  background-color: #96c950;
  color: #fff;
}
.pagination .btn > i {
  margin-top: -5px;
}
.entry-navigation {
  display: table;
  width: 100%;
  border-top: 1px solid #e1e7ec;
  border-bottom: 1px solid #e1e7ec;
  table-layout: fixed;
}
.entry-navigation > .column {
  display: table-cell;
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
  vertical-align: middle;
}
.entry-navigation .btn {
  margin: 0;
}
.entry-navigation .btn > i {
  margin-top: -4px;
}
.entry-navigation .btn.view-all {
  width: 44px;
  padding-right: 0;
  padding-left: 1px;
}
.entry-navigation .btn.view-all > i {
  margin-top: -6px;
  font-size: 1.4em;
}
.comment {
  display: block;
  position: relative;
  margin-bottom: 30px;
  padding-left: 66px;
}
.comment .comment-author-ava {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.comment .comment-author-ava > img {
  display: block;
  width: 100%;
}
.comment .comment-body {
  position: relative;
  padding: 24px;
  border: 1px solid #e1e7ec;
  border-radius: 7px;
  background-color: #fff;
}
.comment .comment-body:after,
.comment .comment-body:before {
  position: absolute;
  top: 12px;
  right: 100%;
  width: 0;
  height: 0;
  border: solid transparent;
  content: "";
  pointer-events: none;
}
.comment .comment-body:after {
  border-width: 9px;
  border-color: transparent;
  border-right-color: #fff;
}
.comment .comment-body:before {
  margin-top: -1px;
  border-width: 10px;
  border-color: transparent;
  border-right-color: #e1e7ec;
}
.comment .comment-title {
  margin-bottom: 8px;
  color: #525252;
  font-size: 14px;
  font-weight: 500;
}
.comment .comment-text {
  margin-bottom: 12px;
}
.comment .comment-footer {
  display: table;
  width: 100%;
}
.comment .comment-footer > .column {
  display: table-cell;
  vertical-align: middle;
}
.comment .comment-footer > .column:last-child {
  text-align: right;
}
.comment .comment-meta {
  color: #9da9b9;
  font-size: 13px;
}
.comment .reply-link {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  color: #2b2b2b;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
}
.comment .reply-link > i {
  display: inline-block;
  margin-top: -3px;
  margin-right: 4px;
  vertical-align: middle;
}
.comment .reply-link:hover {
  color: #96c950;
}
.comment.comment-reply {
  margin-top: 30px;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .comment {
    padding-left: 0;
  }
  .comment .comment-author-ava {
    display: none;
  }
  .comment .comment-body {
    padding: 15px;
  }
  .comment .comment-body:after,
  .comment .comment-body:before {
    display: none;
  }
}
.tooltip {
  font-family: 'DM Sans', sans-serif;
}
.tooltip.bs-tether-element-attached-bottom .tooltip-inner:before,
.tooltip.tooltip-top .tooltip-inner:before {
  border-top-color: #212121;
}
.tooltip.bs-tether-element-attached-left .tooltip-inner:before,
.tooltip.tooltip-right .tooltip-inner:before {
  border-right-color: #212121;
}
.tooltip.bs-tether-element-attached-top .tooltip-inner:before,
.tooltip.tooltip-bottom .tooltip-inner:before {
  border-bottom-color: #212121;
}
.tooltip.bs-tether-element-attached-right .tooltip-inner:before,
.tooltip.tooltip-left .tooltip-inner:before {
  border-left-color: #212121;
}
.tooltip.show {
  opacity: 1;
}
.tooltip-inner {
  border-radius: 3px;
  background-color: #212121;
  color: #fff;
  font-size: 13px;
}
.popover {
  border-radius: 7px;
  border-color: #e1e7ec;
  font-family: 'DM Sans', sans-serif;
}
.popover.bs-tether-element-attached-bottom:before,
.popover.popover-top:before {
  border-top-color: #d5dde4;
}
.popover.bs-tether-element-attached-left:before,
.popover.popover-right:before {
  border-right-color: #d5dde4;
}
.popover.bs-tether-element-attached-top:before,
.popover.popover-bottom:before {
  border-bottom-color: #d5dde4;
}
.popover.bs-tether-element-attached-right:before,
.popover.popover-left:before {
  border-left-color: #d5dde4;
}
.popover-title {
  font-family: inherit;
}
.example-tooltip .tooltip {
  display: inline-block;
  position: relative;
  margin: 10px 20px;
  opacity: 1;
}
.example-popover .popover {
  display: block;
  position: relative;
  width: 260px;
  margin: 1.25rem;
  float: left;
}
.dropdown-menu {
  border-color: #e1e7ec;
  border-radius: 5px;
  font-size: 14px;
}
.dropdown-menu .dropdown-item {
  padding-right: 20px;
  padding-left: 20px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  color: #2b2b2b;
  text-decoration: none;
}
.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active,
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item:hover {
  background: 0;
}
.dropdown-menu .dropdown-item:hover {
  color: #96c950;
}
.dropdown-menu .dropdown-item.active {
  color: #1e8e20;
}
.dropdown-menu a.dropdown-item {
  font-weight: 500;
}
.dropdown-toggle:after {
  margin-top: 1px;
}
.btn.dropdown-toggle:after {
  margin-top: -2px;
}
.show .dropdown-menu {
  -webkit-animation: dropdown-show 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation: dropdown-show 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@-webkit-keyframes dropdown-show {
  0% {
    -webkit-transform: scale(0.85);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
.list-group-item {
  background-color: #fff;
  text-decoration: none;
  /* box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05); */
  border: 1px solid #E3E9ED;
  border-radius: 2px;
}
.list-group-item:first-child {
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}
.list-group-item:last-child {
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
}
.list-group-item i {
  margin-right: 8px;
  font-size: 1.1em;
}
.list-group-item li,
.list-group-item ol,
.list-group-item p,
.list-group-item span,
.list-group-item ul {
  font-weight: 400;
}
.list-group-item-action,
a.list-group-item {
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #2b2b2b;
  font-weight: 500;
}
.list-group-item-action:active,
.list-group-item-action:focus,
.list-group-item-action:hover,
a.list-group-item:active,
a.list-group-item:focus,
a.list-group-item:hover {
  background-color: #fcfeff;
  color: #2b2b2b;
}
a.list-group-item {
  padding-top: 0.87rem;
  padding-bottom: 0.87rem;
}
.justify-content-between > span:not(.badge) {
  font-weight: 500 !important;
  font-size: 13px;
}
.justify-content-between > span:not(.badge) > i {
  margin-top: -5px;
}
.badge {
  color: #fff;
  font-size: 90%;
  font-weight: 500;
}
.badge.badge-default {
  background-color: #fbfbfb;
  color: #525252;
}
.badge.badge-primary {
  background-color: #96c950;
}
.badge.badge-info {
  background-color: #9aa0a2;
}
.badge.badge-success {
  background-color: #1e8e20;
}
.badge.badge-warning {
  background-color: #e6731d;
}
.badge.badge-danger {
  background-color: #d04137;
}
.list-group-item.active {
  border-color: #96c950;
  background-color: #96c950;
  color: #fff;
  cursor: default;
  pointer-events: none;
}
.list-group-item.active .h1,
.list-group-item.active .h2,
.list-group-item.active .h3,
.list-group-item.active .h4,
.list-group-item.active .h5,
.list-group-item.active .h6,
.list-group-item.active h1,
.list-group-item.active h2,
.list-group-item.active h3,
.list-group-item.active h4,
.list-group-item.active h5,
.list-group-item.active h6 {
  color: #fff;
}
.list-group-item.active .badge {
  background-color: #fff !important;
  color: #525252 !important;
}
.list-group-item-info {
  background-color: hsla(195, 4%, 62%, 0.12);
}
.list-group-item-info,
.list-group-item-info > *,
.list-group-item-info a,
.list-group-item-info h1,
.list-group-item-info h2,
.list-group-item-info h3,
.list-group-item-info h4,
.list-group-item-info h5,
.list-group-item-info h6,
.list-group-item-info ol,
.list-group-item-info p,
.list-group-item-info ul {
  color: #9aa0a2 !important;
}
.list-group-item-success {
  background-color: rgba(30, 142, 32, 0.12);
  color: #1b811d !important;
}
.list-group-item-success > *,
.list-group-item-success a,
.list-group-item-success h1,
.list-group-item-success h2,
.list-group-item-success h3,
.list-group-item-success h4,
.list-group-item-success h5,
.list-group-item-success h6,
.list-group-item-success ol,
.list-group-item-success p,
.list-group-item-success ul {
  color: #1b811d !important;
}
.list-group-item-warning {
  background-color: rgba(230, 115, 29, 0.12);
  color: #db6c18 !important;
}
.list-group-item-warning > *,
.list-group-item-warning a,
.list-group-item-warning h1,
.list-group-item-warning h2,
.list-group-item-warning h3,
.list-group-item-warning h4,
.list-group-item-warning h5,
.list-group-item-warning h6,
.list-group-item-warning ol,
.list-group-item-warning p,
.list-group-item-warning ul {
  color: #db6c18 !important;
}
.list-group-item-danger {
  background-color: rgba(208, 65, 55, 0.12);
  color: #d04137 !important;
}
.list-group-item-danger > *,
.list-group-item-danger a,
.list-group-item-danger h1,
.list-group-item-danger h2,
.list-group-item-danger h3,
.list-group-item-danger h4,
.list-group-item-danger h5,
.list-group-item-danger h6,
.list-group-item-danger ol,
.list-group-item-danger p,
.list-group-item-danger ul {
  color: #d04137 !important;
}
.list-group-item-action.active.list-group-item-info,
.list-group-item-action:hover.list-group-item-info {
  background-color: hsla(195, 4%, 62%, 0.24);
}
.list-group-item-action.active.list-group-item-success,
.list-group-item-action:hover.list-group-item-success {
  background-color: rgba(30, 142, 32, 0.24);
}
.list-group-item-action.active.list-group-item-warning,
.list-group-item-action:hover.list-group-item-warning {
  background-color: rgba(230, 115, 29, 0.24);
}
.list-group-item-action.active.list-group-item-danger,
.list-group-item-action:hover.list-group-item-danger {
  background-color: rgba(208, 65, 55, 0.24);
}
.alert {
  position: relative;
  padding: 24px;
  border: 5px solid transparent;
  border-radius: 5px;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-clip: padding-box;
}
.alert i {
  display: inline-block;
  margin-top: -2px;
  vertical-align: middle;
}
.alert > :last-child:not(.btn),
.alert a:last-child:not(.btn),
.alert h1:last-child:not(.btn),
.alert h2:last-child:not(.btn),
.alert h3:last-child:not(.btn),
.alert h4:last-child:not(.btn),
.alert h5:last-child:not(.btn),
.alert h6:last-child:not(.btn),
.alert ol:last-child:not(.btn),
.alert p:last-child:not(.btn),
.alert ul:last-child:not(.btn) {
  margin: 0;
}
.alert:before {
  display: block;
  position: absolute;
  top: -6px;
  right: -6px;
  bottom: -6px;
  left: -6px;
  border: 1px solid transparent;
  border-radius: 5px;
  content: "";
  z-index: -1;
}
.alert .alert-dismissible {
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.alert .alert-dismissible.fade.show {
  opacity: 1;
}
.alert .alert-close {
  display: block;
  position: absolute;
  top: 10px;
  right: 12px;
  font-family: feather;
  font-size: 14px;
  cursor: pointer;
}
.alert .alert-close:before {
  content: "\E117";
}
.alert-default {
  background-color: rgba(82, 82, 82, 0.05);
  color: #525252;
}
.alert-default:before {
  border-color: rgba(82, 82, 82, 0.13);
}
.alert-default .alert-close,
.alert-default > :not(.text-light),
.alert-default > :not(.text-white),
.alert-default a:not(.text-light),
.alert-default a:not(.text-white),
.alert-default h1:not(.text-light),
.alert-default h1:not(.text-white),
.alert-default h2:not(.text-light),
.alert-default h2:not(.text-white),
.alert-default h3:not(.text-light),
.alert-default h3:not(.text-white),
.alert-default h4:not(.text-light),
.alert-default h4:not(.text-white),
.alert-default h5:not(.text-light),
.alert-default h5:not(.text-white),
.alert-default h6:not(.text-light),
.alert-default h6:not(.text-white),
.alert-default ol:not(.text-light),
.alert-default ol:not(.text-white),
.alert-default p:not(.text-light),
.alert-default p:not(.text-white),
.alert-default ul:not(.text-light),
.alert-default ul:not(.text-white) {
  color: #525252;
}
.alert-primary {
  background-color: #96c950;
  color: #fff;
}
.alert-primary:before {
  border-color: rgba(150, 201, 80, 0.25);
}
.alert-primary .alert-close,
.alert-primary > :not(.text-light),
.alert-primary > :not(.text-white),
.alert-primary a:not(.text-light),
.alert-primary a:not(.text-white),
.alert-primary h1:not(.text-light),
.alert-primary h1:not(.text-white),
.alert-primary h2:not(.text-light),
.alert-primary h2:not(.text-white),
.alert-primary h3:not(.text-light),
.alert-primary h3:not(.text-white),
.alert-primary h4:not(.text-light),
.alert-primary h4:not(.text-white),
.alert-primary h5:not(.text-light),
.alert-primary h5:not(.text-white),
.alert-primary h6:not(.text-light),
.alert-primary h6:not(.text-white),
.alert-primary ol:not(.text-light),
.alert-primary ol:not(.text-white),
.alert-primary p:not(.text-light),
.alert-primary p:not(.text-white),
.alert-primary ul:not(.text-light),
.alert-primary ul:not(.text-white) {
  color: #fff;
}
.alert-info {
  background-color: hsla(195, 4%, 62%, 0.12);
  color: #9aa0a2;
}
.alert-info:before {
  border-color: hsla(195, 4%, 62%, 0.3);
}
.alert-info .alert-close,
.alert-info > :not(.text-light),
.alert-info > :not(.text-white),
.alert-info a:not(.text-light),
.alert-info a:not(.text-white),
.alert-info h1:not(.text-light),
.alert-info h1:not(.text-white),
.alert-info h2:not(.text-light),
.alert-info h2:not(.text-white),
.alert-info h3:not(.text-light),
.alert-info h3:not(.text-white),
.alert-info h4:not(.text-light),
.alert-info h4:not(.text-white),
.alert-info h5:not(.text-light),
.alert-info h5:not(.text-white),
.alert-info h6:not(.text-light),
.alert-info h6:not(.text-white),
.alert-info ol:not(.text-light),
.alert-info ol:not(.text-white),
.alert-info p:not(.text-light),
.alert-info p:not(.text-white),
.alert-info ul:not(.text-light),
.alert-info ul:not(.text-white) {
  color: #9aa0a2;
}
.alert-success {
  background-color: rgba(30, 142, 32, 0.12);
  color: #1b811d;
}
.alert-success:before {
  border-color: rgba(30, 142, 32, 0.25);
}
.alert-success .alert-close,
.alert-success > :not(.text-light),
.alert-success > :not(.text-white),
.alert-success a:not(.text-light),
.alert-success a:not(.text-white),
.alert-success h1:not(.text-light),
.alert-success h1:not(.text-white),
.alert-success h2:not(.text-light),
.alert-success h2:not(.text-white),
.alert-success h3:not(.text-light),
.alert-success h3:not(.text-white),
.alert-success h4:not(.text-light),
.alert-success h4:not(.text-white),
.alert-success h5:not(.text-light),
.alert-success h5:not(.text-white),
.alert-success h6:not(.text-light),
.alert-success h6:not(.text-white),
.alert-success ol:not(.text-light),
.alert-success ol:not(.text-white),
.alert-success p:not(.text-light),
.alert-success p:not(.text-white),
.alert-success ul:not(.text-light),
.alert-success ul:not(.text-white) {
  color: #1b811d;
}
.alert-warning {
  background-color: rgba(230, 115, 29, 0.12);
  color: #db6c18;
}
.alert-warning:before {
  border-color: rgba(230, 115, 29, 0.25);
}
.alert-warning .alert-close,
.alert-warning > :not(.text-light),
.alert-warning > :not(.text-white),
.alert-warning a:not(.text-light),
.alert-warning a:not(.text-white),
.alert-warning h1:not(.text-light),
.alert-warning h1:not(.text-white),
.alert-warning h2:not(.text-light),
.alert-warning h2:not(.text-white),
.alert-warning h3:not(.text-light),
.alert-warning h3:not(.text-white),
.alert-warning h4:not(.text-light),
.alert-warning h4:not(.text-white),
.alert-warning h5:not(.text-light),
.alert-warning h5:not(.text-white),
.alert-warning h6:not(.text-light),
.alert-warning h6:not(.text-white),
.alert-warning ol:not(.text-light),
.alert-warning ol:not(.text-white),
.alert-warning p:not(.text-light),
.alert-warning p:not(.text-white),
.alert-warning ul:not(.text-light),
.alert-warning ul:not(.text-white) {
  color: #db6c18;
}
.alert-danger {
  background-color: #d04137;
  color: #fff;
}
.alert-danger:before {
  border-color: rgba(208, 65, 55, 0.25);
}
.alert-danger .alert-close,
.alert-danger > :not(.text-light),
.alert-danger > :not(.text-white),
.alert-danger a:not(.text-light),
.alert-danger a:not(.text-white),
.alert-danger h1:not(.text-light),
.alert-danger h1:not(.text-white),
.alert-danger h2:not(.text-light),
.alert-danger h2:not(.text-white),
.alert-danger h3:not(.text-light),
.alert-danger h3:not(.text-white),
.alert-danger h4:not(.text-light),
.alert-danger h4:not(.text-white),
.alert-danger h5:not(.text-light),
.alert-danger h5:not(.text-white),
.alert-danger h6:not(.text-light),
.alert-danger h6:not(.text-white),
.alert-danger ol:not(.text-light),
.alert-danger ol:not(.text-white),
.alert-danger p:not(.text-light),
.alert-danger p:not(.text-white),
.alert-danger ul:not(.text-light),
.alert-danger ul:not(.text-white) {
  color: #fff;
}
.alert-image-bg {
  border: 0;
}
.alert-image-bg:before {
  display: none;
}
.iziToast {
  border: 1px solid #e1e7ec;
  background: #fcfeff;
}
.iziToast:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  -webkit-box-shadow: 0 8px 10px -4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 10px -4px rgba(0, 0, 0, 0.2);
  content: "";
  z-index: -1;
}
.iziToast > .iziToast-body {
  margin-left: 15px;
}
.iziToast > .iziToast-close {
  width: 40px;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
  background: none;
  background-position: 50%;
  background-color: transparent;
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDE1LjY0MiAxNS42NDIiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDE1LjY0MiAxNS42NDIiIHdpZHRoPSIxNnB4IiBoZWlnaHQ9IjE2cHgiPgogIDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTguODgyLDcuODIxbDYuNTQxLTYuNTQxYzAuMjkzLTAuMjkzLDAuMjkzLTAuNzY4LDAtMS4wNjEgIGMtMC4yOTMtMC4yOTMtMC43NjgtMC4yOTMtMS4wNjEsMEw3LjgyMSw2Ljc2TDEuMjgsMC4yMmMtMC4yOTMtMC4yOTMtMC43NjgtMC4yOTMtMS4wNjEsMGMtMC4yOTMsMC4yOTMtMC4yOTMsMC43NjgsMCwxLjA2MSAgbDYuNTQxLDYuNTQxTDAuMjIsMTQuMzYyYy0wLjI5MywwLjI5My0wLjI5MywwLjc2OCwwLDEuMDYxYzAuMTQ3LDAuMTQ2LDAuMzM4LDAuMjIsMC41MywwLjIyczAuMzg0LTAuMDczLDAuNTMtMC4yMmw2LjU0MS02LjU0MSAgbDYuNTQxLDYuNTQxYzAuMTQ3LDAuMTQ2LDAuMzM4LDAuMjIsMC41MywwLjIyYzAuMTkyLDAsMC4zODQtMC4wNzMsMC41My0wLjIyYzAuMjkzLTAuMjkzLDAuMjkzLTAuNzY4LDAtMS4wNjFMOC44ODIsNy44MjF6IiBmaWxsPSIjMzc0MjUwIi8+Cjwvc3ZnPgo=);
  background-size: 8px;
  background-repeat: no-repeat;
}
.iziToast.iziToast-info {
  border-color: hsla(195, 4%, 62%, 0.3);
  background-color: #f2f2f3;
  color: #8d9496;
}
.iziToast.iziToast-info > .iziToast-close {
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDE1LjY0MiAxNS42NDIiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDE1LjY0MiAxNS42NDIiIHdpZHRoPSIxNnB4IiBoZWlnaHQ9IjE2cHgiPgogIDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTguODgyLDcuODIxbDYuNTQxLTYuNTQxYzAuMjkzLTAuMjkzLDAuMjkzLTAuNzY4LDAtMS4wNjEgIGMtMC4yOTMtMC4yOTMtMC43NjgtMC4yOTMtMS4wNjEsMEw3LjgyMSw2Ljc2TDEuMjgsMC4yMmMtMC4yOTMtMC4yOTMtMC43NjgtMC4yOTMtMS4wNjEsMGMtMC4yOTMsMC4yOTMtMC4yOTMsMC43NjgsMCwxLjA2MSAgbDYuNTQxLDYuNTQxTDAuMjIsMTQuMzYyYy0wLjI5MywwLjI5My0wLjI5MywwLjc2OCwwLDEuMDYxYzAuMTQ3LDAuMTQ2LDAuMzM4LDAuMjIsMC41MywwLjIyczAuMzg0LTAuMDczLDAuNTMtMC4yMmw2LjU0MS02LjU0MSAgbDYuNTQxLDYuNTQxYzAuMTQ3LDAuMTQ2LDAuMzM4LDAuMjIsMC41MywwLjIyYzAuMTkyLDAsMC4zODQtMC4wNzMsMC41My0wLjIyYzAuMjkzLTAuMjkzLDAuMjkzLTAuNzY4LDAtMS4wNjFMOC44ODIsNy44MjF6IiBmaWxsPSIjMTg5NmJiIi8+Cjwvc3ZnPgo=);
}
.iziToast.iziToast-success {
  border-color: rgba(30, 142, 32, 0.3);
  background-color: #80e481;
  color: #19751a;
}
.iziToast.iziToast-success > .iziToast-close {
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDE1LjY0MiAxNS42NDIiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDE1LjY0MiAxNS42NDIiIHdpZHRoPSIxNnB4IiBoZWlnaHQ9IjE2cHgiPgogIDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTguODgyLDcuODIxbDYuNTQxLTYuNTQxYzAuMjkzLTAuMjkzLDAuMjkzLTAuNzY4LDAtMS4wNjEgIGMtMC4yOTMtMC4yOTMtMC43NjgtMC4yOTMtMS4wNjEsMEw3LjgyMSw2Ljc2TDEuMjgsMC4yMmMtMC4yOTMtMC4yOTMtMC43NjgtMC4yOTMtMS4wNjEsMGMtMC4yOTMsMC4yOTMtMC4yOTMsMC43NjgsMCwxLjA2MSAgbDYuNTQxLDYuNTQxTDAuMjIsMTQuMzYyYy0wLjI5MywwLjI5My0wLjI5MywwLjc2OCwwLDEuMDYxYzAuMTQ3LDAuMTQ2LDAuMzM4LDAuMjIsMC41MywwLjIyczAuMzg0LTAuMDczLDAuNTMtMC4yMmw2LjU0MS02LjU0MSAgbDYuNTQxLDYuNTQxYzAuMTQ3LDAuMTQ2LDAuMzM4LDAuMjIsMC41MywwLjIyYzAuMTkyLDAsMC4zODQtMC4wNzMsMC41My0wLjIyYzAuMjkzLTAuMjkzLDAuMjkzLTAuNzY4LDAtMS4wNjFMOC44ODIsNy44MjF6IiBmaWxsPSIjMWY5NzZjIi8+Cjwvc3ZnPgo=);
}
.iziToast.iziToast-warning {
  border-color: rgba(230, 115, 29, 0.3);
  background-color: #f5c8a7;
  color: #db6c18;
}
.iziToast.iziToast-warning > .iziToast-close {
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDE1LjY0MiAxNS42NDIiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDE1LjY0MiAxNS42NDIiIHdpZHRoPSIxNnB4IiBoZWlnaHQ9IjE2cHgiPgogIDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTguODgyLDcuODIxbDYuNTQxLTYuNTQxYzAuMjkzLTAuMjkzLDAuMjkzLTAuNzY4LDAtMS4wNjEgIGMtMC4yOTMtMC4yOTMtMC43NjgtMC4yOTMtMS4wNjEsMEw3LjgyMSw2Ljc2TDEuMjgsMC4yMmMtMC4yOTMtMC4yOTMtMC43NjgtMC4yOTMtMS4wNjEsMGMtMC4yOTMsMC4yOTMtMC4yOTMsMC43NjgsMCwxLjA2MSAgbDYuNTQxLDYuNTQxTDAuMjIsMTQuMzYyYy0wLjI5MywwLjI5My0wLjI5MywwLjc2OCwwLDEuMDYxYzAuMTQ3LDAuMTQ2LDAuMzM4LDAuMjIsMC41MywwLjIyczAuMzg0LTAuMDczLDAuNTMtMC4yMmw2LjU0MS02LjU0MSAgbDYuNTQxLDYuNTQxYzAuMTQ3LDAuMTQ2LDAuMzM4LDAuMjIsMC41MywwLjIyYzAuMTkyLDAsMC4zODQtMC4wNzMsMC41My0wLjIyYzAuMjkzLTAuMjkzLDAuMjkzLTAuNzY4LDAtMS4wNjFMOC44ODIsNy44MjF6IiBmaWxsPSIjZTg4OTAwIi8+Cjwvc3ZnPgo=);
}
.iziToast.iziToast-danger {
  border-color: rgba(208, 65, 55, 0.3);
  background-color: #edb7b3;
  color: #d04137;
}
.iziToast.iziToast-danger > .iziToast-close {
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDE1LjY0MiAxNS42NDIiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDE1LjY0MiAxNS42NDIiIHdpZHRoPSIxNnB4IiBoZWlnaHQ9IjE2cHgiPgogIDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTguODgyLDcuODIxbDYuNTQxLTYuNTQxYzAuMjkzLTAuMjkzLDAuMjkzLTAuNzY4LDAtMS4wNjEgIGMtMC4yOTMtMC4yOTMtMC43NjgtMC4yOTMtMS4wNjEsMEw3LjgyMSw2Ljc2TDEuMjgsMC4yMmMtMC4yOTMtMC4yOTMtMC43NjgtMC4yOTMtMS4wNjEsMGMtMC4yOTMsMC4yOTMtMC4yOTMsMC43NjgsMCwxLjA2MSAgbDYuNTQxLDYuNTQxTDAuMjIsMTQuMzYyYy0wLjI5MywwLjI5My0wLjI5MywwLjc2OCwwLDEuMDYxYzAuMTQ3LDAuMTQ2LDAuMzM4LDAuMjIsMC41MywwLjIyczAuMzg0LTAuMDczLDAuNTMtMC4yMmw2LjU0MS02LjU0MSAgbDYuNTQxLDYuNTQxYzAuMTQ3LDAuMTQ2LDAuMzM4LDAuMjIsMC41MywwLjIyYzAuMTkyLDAsMC4zODQtMC4wNzMsMC41My0wLjIyYzAuMjkzLTAuMjkzLDAuMjkzLTAuNzY4LDAtMS4wNjFMOC44ODIsNy44MjF6IiBmaWxsPSIjZWIwMDAwIi8+Cjwvc3ZnPgo=);
}
.alert .alert-close:before {
  color: #fff;
}
.modal {
  z-index: 9200;
}
.modal-content {
  border-radius: 7px;
  border-color: #e1e7ec;
}
.modal-body,
.modal-footer,
.modal-header {
  padding-right: 32px;
  padding-left: 32px;
}
.modal-footer {
  padding-top: 12px;
  padding-bottom: 12px;
}
.modal-footer .btn {
  margin-right: 0;
  margin-left: 12px;
}
.modal-open.hasScrollbar .navbar-stuck {
  width: calc(100% - 15px);
}
.modal-backdrop {
  z-index: 9100;
}
.example-modal .modal {
  display: block;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  z-index: 1;
}
.modal-vertical-centered {
  transform: translateY(50%) !important;
  -ms-transform: translateY(50%) !important;
  -webkit-transform: translateY(50%) !important;
}
.progress-bar {
  height: 18px;
  background-color: #96c950;
}
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-tap-highlight-color: transparent;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  -moz-backface-visibility: hidden;
}
.owl-carousel .owl-stage:after {
  display: block;
  height: 0;
  clear: both;
  line-height: 0;
  content: ".";
  visibility: hidden;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  overflow: hidden;
}
.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item .owl-lazy {
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  opacity: 0;
}
.owl-carousel .owl-item .from-bottom,
.owl-carousel .owl-item .from-left,
.owl-carousel .owl-item .from-right,
.owl-carousel .owl-item .from-top,
.owl-carousel .owl-item .scale-down,
.owl-carousel .owl-item .scale-up {
  -webkit-transition: all 0.45s ease-in-out 0.3s;
  transition: all 0.45s ease-in-out 0.3s;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.owl-carousel .owl-item .from-top {
  -webkit-transform: translateY(-45px);
  transform: translateY(-45px);
}
.owl-carousel .owl-item .from-bottom {
  -webkit-transform: translateY(45px);
  transform: translateY(45px);
}
.owl-carousel .owl-item .from-left {
  -webkit-transform: translateX(-45px);
  transform: translateX(-45px);
}
.owl-carousel .owl-item .from-right {
  -webkit-transform: translateX(45px);
  transform: translateX(45px);
}
.owl-carousel .owl-item .scale-up {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}
.owl-carousel .owl-item .scale-down {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.owl-carousel .owl-item .delay-1 {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.owl-carousel .owl-item .delay-2 {
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
.owl-carousel .owl-item .delay-3 {
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
}
.owl-carousel .owl-item .delay-4 {
  -webkit-transition-delay: 1.1s;
  transition-delay: 1.1s;
}
.owl-carousel .owl-item.active .from-bottom,
.owl-carousel .owl-item.active .from-top {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.owl-carousel .owl-item.active .from-left,
.owl-carousel .owl-item.active .from-right {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
.owl-carousel .owl-item.active .scale-down,
.owl-carousel .owl-item.active .scale-up {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.owl-carousel .owl-item > img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-item > img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}
.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  display: block;
  opacity: 0;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
.owl-carousel .animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
.owl-carousel .owl-dots {
  display: block;
  width: 100%;
  margin-top: 18px;
  text-align: center;
}
.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 6px;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
  border-radius: 50%;
  background-color: #525252;
  opacity: 0.3;
}
.owl-carousel .owl-dots .owl-dot.active {
  opacity: 0.9;
}
.owl-carousel .owl-next, .owl-carousel .owl-prev {
  display: block;
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  margin-top: -42px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  border-radius: 50%;
  color: #868686;
  line-height: 40px;
  text-align: center;
  opacity: 1;
}
.owl-carousel .owl-next:hover, .owl-carousel .owl-prev:hover {
  opacity: 1;
}
.owl-carousel .owl-prev {
  left: -36px;
}
.owl-carousel .owl-next {
  right: -36px;
}
.owl-carousel.large-controls .owl-next,
.owl-carousel.large-controls .owl-prev {
  width: 54px;
  height: 54px;
  margin-top: -47px;
  line-height: 50px;
}
.owl-carousel.large-controls .owl-prev {
  left: 30px;
}
.owl-carousel.large-controls .owl-next {
  right: 30px;
}
.owl-carousel.dots-inside .owl-dots {
  position: absolute;
  bottom: 0;
  margin: 0;
  padding-bottom: 24px;
}
.owl-carousel.dots-inside .owl-dots .owl-dot {
  background-color: #fff;
  opacity: 0.5;
}
.owl-carousel.dots-inside .owl-dots .owl-dot.active {
  opacity: 1;
}
.owl-carousel.dots-inside .owl-next,
.owl-carousel.dots-inside .owl-prev {
  margin-top: -22px;
}
.owl-carousel.dots-inside.large-controls .owl-next,
.owl-carousel.dots-inside.large-controls .owl-prev {
  margin-top: -27px;
}
.owl-carousel .widget,
.owl-carousel .widget.widget-featured-posts > .entry {
  margin-bottom: 0;
}
.no-js .owl-carousel {
  display: block;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.owl-height {
  -webkit-transition: height 0.5s ease-in-out;
  transition: height 0.5s ease-in-out;
}
.hero-slider {
  width: 100%;
  background-position: 50%;
  background-color: #fcfeff;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.hero-slider,
.hero-slider > .owl-carousel {
  min-height: 580px;
}
.hero-slider > .owl-carousel.dots-inside .owl-dots {
  display: inline-block;
  left: 50%;
  width: auto;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 10px 22px 14px;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  background-color: #525252;
}
.hero-slider > .owl-carousel .owl-next,
.hero-slider > .owl-carousel .owl-prev {
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.hero-slider > .owl-carousel .owl-prev {
  -webkit-transform: translateX(-150px);
  transform: translateX(-150px);
}
.hero-slider > .owl-carousel .owl-next {
  -webkit-transform: translateX(150px);
  transform: translateX(150px);
}
.hero-slider > .owl-carousel:hover .owl-next,
.hero-slider > .owl-carousel:hover .owl-prev {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
@media (max-width: 991px) {
  .hero-slider > .owl-carousel .owl-next,
  .hero-slider > .owl-carousel .owl-prev {
    display: none;
  }
}
@media (max-width: 1100px) {
  .hero-slider,
  .hero-slider > .owl-carousel {
    min-height: 430px;
  }
}
@media (max-width: 576px) {
  .owl-nav {
    display: none;
  }
}
.gallery-item {
  margin-bottom: 30px;
}
.gallery-item > a {
  position: relative;
  border-radius: 7px;
  overflow: hidden;
}
.gallery-item > a,
.gallery-item > a > img {
  display: block;
  width: 100%;
}
.gallery-item > a:before {
  top: 0;
  height: 100%;
  background-color: #000;
  content: "";
  z-index: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.gallery-item > a:after,
.gallery-item > a:before {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  opacity: 0;
}
.gallery-item > a:after {
  top: 50%;
  margin-top: -19px;
  -webkit-transform: translateY(15px);
  transform: translateY(15px);
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  color: #fff;
  font-family: feather;
  font-size: 26px;
  text-align: center;
  content: "\E036";
  z-index: 5;
}
.gallery-item > a:hover:before {
  opacity: 0.45;
}
.gallery-item > a:hover:after {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.gallery-item > a[data-type="video"]:after {
  left: 50%;
  width: 46px;
  height: 46px;
  margin-top: -22px;
  margin-left: -22px;
  padding-left: 5px;
  -webkit-transform: none;
  transform: none;
  border-radius: 50%;
  background-color: #fff;
  color: #525252;
  font-size: 27px;
  line-height: 42px;
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.25);
  content: "\E052";
  opacity: 1;
}
.gallery-item .caption {
  display: none;
}
.grid-no-gap .gallery-item {
  margin-bottom: 0;
}
.grid-no-gap .gallery-item > a {
  border-radius: 0;
}
.owl-carousel .gallery-item {
  margin-bottom: 0;
}
.pswp__zoom-wrap {
  text-align: center;
}
.pswp__zoom-wrap:before {
  content: "";
  height: 100%;
}
.pswp__zoom-wrap:before,
.wrapper {
  display: inline-block;
  vertical-align: middle;
}
.wrapper {
  line-height: 0;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}
.video-wrapper,
.wrapper {
  width: 100%;
  position: relative;
}
.video-wrapper {
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
video {
  width: 100% !important;
  height: auto !important;
}
.pswp__caption__center {
  padding: 20px 10px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.countdown {
  display: inline-block;
}
.countdown:after {
  display: block;
  clear: both;
  content: "";
}
.countdown .item {
  display: block;
  margin: 7px;
  float: left;
  text-align: center;
}
.countdown .item .days,
.countdown .item .hours,
.countdown .item .minutes,
.countdown .item .seconds {
  width: 48px;
  height: 48px;
  margin-bottom: 5px;
  border: 1px solid #e1e7ec;
  border-radius: 7px;
  font-size: 22px;
  line-height: 46px;
}
.countdown .item .days_ref,
.countdown .item .hours_ref,
.countdown .item .minutes_ref,
.countdown .item .seconds_ref {
  font-size: 12px;
  text-transform: uppercase;
}
.countdown.countdown-inverse .item .days,
.countdown.countdown-inverse .item .hours,
.countdown.countdown-inverse .item .minutes,
.countdown.countdown-inverse .item .seconds {
  border-color: hsla(0, 0%, 100%, 0.12);
  color: #fff;
}
.countdown.countdown-inverse .item .days_ref,
.countdown.countdown-inverse .item .hours_ref,
.countdown.countdown-inverse .item .minutes_ref,
.countdown.countdown-inverse .item .seconds_ref {
  color: hsla(0, 0%, 100%, 0.8);
}
.sidebar {
  width: 100%;
  max-width: 400px;
}

.widget-telefone {
  font-family: 'Barlow';
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #FBF6EC;
}
.widget-title {
  font-family: 'Barlow Condensed';
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #F1D9A6;
  margin-bottom: 0px;
  padding-bottom: 24px;
  font-weight: 700;
  font-size: 17px;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.widget-footer-list .widget-title {
  padding-bottom: 10px;
}
.widget {
  margin-bottom: 0px;
}
.widget .form-group {
  margin-bottom: 0;
}
.widget ul {
  margin-bottom: 12px;
}
.widget .market-button:last-child {
  margin-bottom: 0;
}
.widget .custom-control:last-child {
  margin-bottom: 0 !important;
}
.widget-categories ul,
.widget-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widget-categories ul > li,
.widget-links ul > li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 14px;
}
.widget-links.widget-footer-list ul > li {
  margin-bottom: 0;
  padding-left: 0;
}
.widget-categories ul > li:last-child,
.widget-links ul > li:last-child {
  margin-bottom: 0;
}
.widget-categories ul > li:before,
.widget-links ul > li:before {
  position: absolute;
  top: 11px;
  left: 0px;
  content: "";
  border: solid #FBF6EC;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 2px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  /*
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 0.35s;
  transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  transition: transform 0.35s, -webkit-transform 0.35s;
  border-top: 4px dashed;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: "";
  color: #9da9b9;*/
}
.widget-links.widget-footer-list ul > li::before {
  display: none !important;
}
.widget-categories ul > li > a,
.widget-links ul > li > a {
  font-family: 'Barlow';
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #FBF6EC;
  display: inline-block;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  text-decoration: none;
}
.widget-categories ul > li > a:hover,
.widget-links ul > li > a:hover {
  text-decoration: underline;
}
.widget-categories ul > li.active > a,
.widget-links ul > li.active > a {
  color: #1e8e20;
}
.widget-categories ul > li > span,
.widget-links ul > li > span {
  margin-left: 4px;
  color: #9da9b9;
}
.widget-categories ul > li.has-children ul,
.widget-links ul > li.has-children ul {
  border-left: 1px solid #dee5ea;
}
.widget-categories ul > li.has-children ul li:before,
.widget-links ul > li.has-children ul li:before {
  top: 14px;
  width: 8px;
  height: 1px;
  -webkit-transform: none;
  transform: none;
  border: 0;
  background-color: #dee5ea;
  color: transparent;
}
.widget-categories ul > li.has-children ul li a,
.widget-links ul > li.has-children ul li a {
  font-size: 13px;
}
.widget-categories ul > li.has-children ul ul > li,
.widget-links ul > li.has-children ul ul > li {
  margin-bottom: 0;
}
.widget-categories ul > li.has-children > ul,
.widget-links ul > li.has-children > ul {
  max-height: 0;
  -webkit-transition: max-height 0.6s;
  transition: max-height 0.6s;
  overflow: hidden;
}
.widget-categories ul > li.has-children.expanded:before,
.widget-links ul > li.has-children.expanded:before {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.widget-categories ul > li.has-children.expanded > ul,
.widget-links ul > li.has-children.expanded > ul {
  max-height: 800px;
}
.widget-featured-posts > .entry,
.widget-featured-products > .entry {
  display: table;
  width: 100%;
  margin-bottom: 18px;
}
.widget-featured-posts > .entry .entry-content,
.widget-featured-posts > .entry .entry-thumb,
.widget-featured-products > .entry .entry-content,
.widget-featured-products > .entry .entry-thumb {
  display: table-cell;
  vertical-align: middle;
}
.widget-featured-posts > .entry .entry-thumb,
.widget-featured-products > .entry .entry-thumb {
  width: 62px;
  padding-right: 12px;
}
.widget-featured-posts > .entry .entry-thumb > a,
.widget-featured-products > .entry .entry-thumb > a {
  display: block;
  border-radius: 10%;
  overflow: hidden;
}
.widget-featured-posts > .entry .entry-title,
.widget-featured-products > .entry .entry-title {
  margin-bottom: 0;
  font-size: 14px;
}
.widget-featured-posts > .entry .entry-title > a,
.widget-featured-products > .entry .entry-title > a {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  color: #2b2b2b;
  font-weight: 500;
  text-decoration: none;
}
.widget-featured-posts > .entry .entry-title > a:hover,
.widget-featured-products > .entry .entry-title > a:hover {
  color: #96c950;
}
.widget-featured-posts > .entry .entry-meta,
.widget-featured-products > .entry .entry-meta {
  display: block;
  margin-bottom: 0;
  padding-top: 4px;
  color: #9da9b9;
  font-size: 12px;
}
.widget-featured-products > .entry {
  margin-bottom: 12px;
}
.widget-featured-products > .entry .entry-thumb > a {
  border-radius: 0;
}
.widget-featured-products > .entry .entry-meta {
  color: #525252;
  font-size: 13px;
}
.tag {
  display: inline-block;
  height: 28px;
  margin-right: 4px;
  margin-bottom: 8px;
  padding: 0 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #e1e7ec;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 500;
  line-height: 25px;
  text-decoration: none !important;
  white-space: nowrap;
}
.tag,
.tag:hover {
  color: #2b2b2b !important;
}
.tag:hover {
  background-color: #fcfeff;
}
.tag.active {
  border-color: #1e8e20;
  background-color: #1e8e20;
  color: #fff !important;
  cursor: default;
}
.text-right .tag {
  margin-right: 0;
  margin-left: 4px;
}
.text-center .tag {
  margin-right: 2px;
  margin-left: 2px;
}
.widget-order-summary .table td {
  padding: 8px 0;
  border: 0;
}
.widget-order-summary .table td:last-child {
  text-align: right;
}
.widget-order-summary .table tr:first-child > td {
  padding-top: 0;
}
.widget-order-summary .table tr:last-child > td {
  padding: 13px 0;
  border-top: 1px solid #e1e7ec;
}
.widget-order-summary .table tr:nth-last-child(2) > td {
  padding-bottom: 12px;
}
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.noUi-target {
  position: relative;
  border-radius: 3px;
  direction: ltr;
}
.noUi-base {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.noUi-origin {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.noUi-handle {
  position: relative;
  z-index: 1;
}
.noUi-stacking .noUi-handle {
  z-index: 10;
}
.noUi-state-tap .noUi-origin {
  -webkit-transition: left 0.3s, top 0.3s;
  transition: left 0.3s, top 0.3s;
}
.noUi-state-drag * {
  cursor: inherit !important;
}
.noUi-base,
.noUi-handle {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.noUi-horizontal {
  height: 4px;
}
.noUi-horizontal .noUi-handle {
  top: -6px;
  left: -8px;
  width: 16px;
  height: 16px;
}
.noUi-background {
  background: #edf9ff;
}
.noUi-connect {
  -webkit-transition: background 0.45s;
  transition: background 0.45s;
  background: #9da9b9;
}
.noUi-draggable {
  cursor: w-resize;
}
.noUi-vertical .noUi-draggable {
  cursor: n-resize;
}
.noUi-handle {
  border: 4px solid #9da9b9;
  border-radius: 50%;
  background: #fff;
  cursor: default;
}
.price-range-slider {
  padding-top: 9px;
}
.price-range-slider .ui-range-slider-footer {
  display: table;
  width: 100%;
  padding-top: 30px;
}
.price-range-slider .ui-range-slider-footer > .column {
  display: table-cell;
  vertical-align: middle;
}
.price-range-slider .ui-range-slider-footer > .column:first-child {
  width: 40%;
}
.price-range-slider .ui-range-slider-footer > .column:last-child {
  width: 60%;
  padding-left: 15px;
  text-align: right;
}
.price-range-slider .ui-range-slider-footer .btn {
  height: 28px;
  margin: 0;
  padding: 0 15px;
  line-height: 26px;
}
.price-range-slider .ui-range-values {
  display: inline-block;
}
.price-range-slider .ui-range-values .ui-range-value-max,
.price-range-slider .ui-range-values .ui-range-value-min {
  display: inline-block;
  font-size: 14px;
}
.widget-light-skin .widget-title {
  border-color: hsla(0, 0%, 100%, 0.12);
  /*color: rgba(82, 82, 82, 0.6);*/
}
.widget-light-skin.widget-categories ul > li:before,
.widget-light-skin.widget-categories ul > li > a,
.widget-light-skin.widget-links ul > li:before,
.widget-light-skin.widget-links ul > li > a {
  /*color: rgba(82, 82, 82, 0.9);*/
  /*color: #525252;*/
}
.widget-light-skin.widget-categories ul > li.active > a,
.widget-light-skin.widget-categories ul > li > a:hover,
.widget-light-skin.widget-links ul > li.active > a,
.widget-light-skin.widget-links ul > li > a:hover {
  color: #2B1E0F;
}
.widget-light-skin.widget-categories ul > li > span,
.widget-light-skin.widget-links ul > li > span {
  color: hsla(0, 0%, 100%, 0.5);
}
.widget-light-skin.widget-featured-posts > .entry .entry-title > a,
.widget-light-skin.widget-featured-products > .entry .entry-title > a {
  color: #fff;
}
.widget-light-skin.widget-featured-posts > .entry .entry-title > a:hover,
.widget-light-skin.widget-featured-products > .entry .entry-title > a:hover {
  color: #96c950;
}
.widget-light-skin.widget-featured-posts > .entry .entry-meta,
.widget-light-skin.widget-featured-products > .entry .entry-meta {
  color: hsla(0, 0%, 100%, 0.5);
}
.widget-light-skin .tag {
  border-color: hsla(0, 0%, 100%, 0.12);
  color: #fff !important;
}
.widget-light-skin .tag:hover {
  background-color: #fcfeff;
  color: #2b2b2b !important;
}
.widget-light-skin .tag.active {
  border-color: #1e8e20;
  background-color: #1e8e20;
  color: #fff !important;
}
.img-listproducts {
  width: 50px;
  height: 50px;
}
.promo-box {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  background-position: 50%;
  background-color: #fcfeff;
  background-repeat: no-repeat;
  background-size: cover;
}
.promo-box .overlay-dark,
.promo-box .overlay-light {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  content: "";
  opacity: 0.5;
  z-index: 1;
}
.promo-box .overlay-light {
  background-color: #fff;
}
.promo-box .promo-box-content {
  position: relative;
  z-index: 5;
}
.br-theme-fontawesome-stars-o .br-widget {
  height: 28px;
  white-space: nowrap;
}
.br-theme-fontawesome-stars-o .br-widget a {
  font: normal normal normal 20px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  text-decoration: none;
  margin-right: 2px;
}
.br-theme-fontawesome-stars-o .br-widget a:after {
  content: "\F006";
  color: #d2d2d2;
}
.br-theme-fontawesome-stars-o .br-widget a.br-active:after,
.br-theme-fontawesome-stars-o .br-widget a.br-selected:after {
  content: "\F005";
  color: #50e3c2;
}
.br-theme-fontawesome-stars-o .br-widget a.br-fractional:after {
  content: "\F123";
  color: #50e3c2;
}
.br-theme-fontawesome-stars-o .br-widget .br-current-rating {
  display: none;
}
.br-theme-fontawesome-stars-o .br-readonly a {
  cursor: default;
}
.br-theme-fontawesome-stars-o .br-reverse a.br-fractional {
  display: inline-block;
  transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -webkit-filter: FlipH;
  filter: FlipH;
  -ms-filter: "FlipH";
}
@media print {
  .br-theme-fontawesome-stars-o .br-widget a:after {
    content: "\F006";
    color: #000;
  }
  .br-theme-fontawesome-stars-o .br-widget a.br-active:after,
  .br-theme-fontawesome-stars-o .br-widget a.br-selected:after {
    content: "\F005";
    color: #000;
  }
  .br-theme-fontawesome-stars-o .br-widget a.br-fractional:after {
    content: "\F123";
    color: #000;
  }
}
.br-theme-fontawesome-stars .br-widget {
  height: 28px;
  white-space: nowrap;
}
.br-theme-fontawesome-stars .br-widget a {
  font: normal normal normal 20px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  text-decoration: none;
  margin-right: 2px;
}
.br-theme-fontawesome-stars .br-widget a:after {
  content: "\F005";
  color: #d2d2d2;
}
.br-theme-fontawesome-stars .br-widget a.br-active:after,
.br-theme-fontawesome-stars .br-widget a.br-selected:after {
  color: #edb867;
}
.br-theme-fontawesome-stars .br-widget .br-current-rating {
  display: none;
}
.br-theme-fontawesome-stars .br-readonly a {
  cursor: default;
}
@media print {
  .br-theme-fontawesome-stars .br-widget a:after {
    content: "\F006";
    color: #000;
  }
  .br-theme-fontawesome-stars .br-widget a.br-active:after,
  .br-theme-fontawesome-stars .br-widget a.br-selected:after {
    content: "\F005";
    color: #000;
  }
}
#zoomple_previewholder {
  left: 0;
  top: 0;
  z-index: 99;
  position: absolute;
  display: none;
  width: 300px;
  height: 300px;
  background-color: transparent;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
#zoomple_previewholder .image_wrap {
  left: 0;
  top: 0;
  z-index: 99;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
  -webkit-box-shadow: 0 0 10px -4px rgba(0, 0, 0, 0.9);
  box-shadow: 0 0 10px -4px rgba(0, 0, 0, 0.9);
}
#zoomple_previewholder.rounded .image_wrap {
  border: 0 solid #454c50;
  border-radius: 50%;
  background-clip: padding-box;
}
#zoomple_previewholder .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-clip: padding-box;
  z-index: 1;
}
#zoomple_previewholder.rounded .overlay {
  border-radius: 50%;
  -webkit-box-shadow: inset 0 0 20px 7px hsla(0, 0%, 100%, 0.1);
  box-shadow: inset 0 0 20px 7px hsla(0, 0%, 100%, 0.1);
}
#zoomple_previewholder .cursor {
  width: 20px;
  height: 20px;
  margin-left: -10px;
  margin-top: -10px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 101;
}
#zoomple_previewholder.zp-visible {
  display: block;
}
#zoomple_previewholder img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  max-width: 900%;
}
#zoomple_previewholder .caption-wrap {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 101;
  width: 100%;
  margin: 0;
  padding: 0;
  font: 11px Verdana, sans-serif;
  color: #090808;
  border-radius: 0 0 7px 7px;
  display: none;
}
#zoomple_previewholder .caption-wrap .caption {
  padding: 5px 10px;
  font: 11px Verdana, sans-serif;
  border-radius: 0 0 7px 7px;
  background: #fff;
}
#zoomple_image_overlay {
  background: red;
  position: absolute;
  z-index: 100;
  filter: alpha(opacity=1);
  opacity: 0.01;
}
#zoomple_image_overlay.preview {
  background: #000;
  filter: alpha(opacity=50);
  opacity: 0.5;
}
#zoomple_image_overlay .eyelet {
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  top: 0;
}
.marquee {
  filter: alpha(opacity=100);
}
@font-face {
  font-family: icomoon;
  src: url("/fonts/icomoon.eot?utifwb");
  src: url("/fonts/icomoon.eot?utifwb#iefix") format("embedded-opentype"),
    url("/fonts/icomoon.ttf?utifwb") format("truetype"),
    url("/fonts/icomoon.woff?utifwb") format("woff"),
    url("/fonts/icomoon.svg?utifwb#icomoon") format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
[class*=" icomoon-"],
[class^="icomoon-"] {
  font-family: icomoon !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icomoon-arrow_top_right:before {
  content: "\E95C";
}
.icomoon-question_mark:before {
  content: "\E95B";
}
.icomoon-text_align_left:before {
  content: "\E959";
}
.icomoon-bowl:before {
  content: "\E95A";
}
.icomoon-menu_icon_2:before {
  content: "\E958";
}
.icomoon-arrow_up:before {
  content: "\E957";
}
.icomoon-clock:before {
  content: "\E954";
}
.icomoon-flame:before {
  content: "\E955";
}
.icomoon-plate_cover:before {
  content: "\E956";
}
.icomoon-play:before {
  content: "\E953";
}
.icomoon-new_tab:before {
  content: "\E951";
}
.icomoon-check:before {
  content: "\E952";
}
.icomoon-info:before,
.icomoon-trashcan:before {
  content: "\E950";
}
.icomoon-alfabetical-order-asc:before {
  content: "\E949";
}
.icomoon-alfabetical-order-desc:before {
  content: "\E94A";
}
.icomoon-arrow_lower_spike:before {
  content: "\E94B";
}
.icomoon-arrow_upper_spike:before {
  content: "\E94C";
}
.icomoon-calendar:before {
  content: "\E94D";
}
.icomoon-like:before {
  content: "\E94E";
}
.icomoon-percentage:before {
  content: "\E94F";
}
.icomoon-sliders:before {
  content: "\E948";
}
.icomoon-submit_arrow:before {
  content: "\E946";
}
.icomoon-search1:before {
  content: "\E945";
}
.icomoon-user:before {
  content: "\E947";
}
.icomoon-truck:before {
  content: "\E944";
}
.icomoon-globe:before {
  content: "\E943";
}
.icomoon-tag:before {
  content: "\E942";
}
.icomoon-checkmark_off:before {
  content: "\E940";
}
.icomoon-checkmark_on:before {
  content: "\E941";
}
.icomoon-flag_en .path1:before {
  content: "\E92C";
  color: #002173;
}
.icomoon-flag_en .path2:before {
  content: "\E92D";
  margin-left: -1.40625em;
  color: #f4f4f4;
}
.icomoon-flag_en .path3:before {
  content: "\E92E";
  margin-left: -1.40625em;
  color: #c61018;
}
.icomoon-flag_en .path4:before {
  content: "\E92F";
  margin-left: -1.40625em;
  color: #c61018;
}
.icomoon-flag_en .path5:before {
  content: "\E930";
  margin-left: -1.40625em;
  color: #f4f4f4;
}
.icomoon-flag_en .path6:before {
  content: "\E931";
  margin-left: -1.40625em;
  color: #c61018;
}
.icomoon-flag_en .path7:before {
  content: "\E932";
  margin-left: -1.40625em;
  color: #c61018;
}
.icomoon-flag_en .path8:before {
  content: "\E933";
  margin-left: -1.40625em;
  color: #f4f4f4;
}
.icomoon-flag_en .path9:before {
  content: "\E934";
  margin-left: -1.40625em;
  color: #c61018;
}
.icomoon-flag_es .path1:before {
  content: "\E935";
  color: #c60b1e;
}
.icomoon-flag_es .path2:before {
  content: "\E936";
  margin-left: -1.40625em;
  color: #fec000;
}
.icomoon-flag_it .path1:before {
  content: "\E937";
  color: #d02430;
}
.icomoon-flag_it .path2:before {
  content: "\E938";
  margin-left: -1.40625em;
  color: #f4f4f4;
}
.icomoon-flag_it .path3:before {
  content: "\E939";
  margin-left: -1.40625em;
  color: #009246;
}
.icomoon-flag_fr .path1:before {
  content: "\E93A";
  color: #e80c20;
}
.icomoon-flag_fr .path2:before {
  content: "\E93B";
  margin-left: -1.40625em;
  color: #f4f4f4;
}
.icomoon-flag_fr .path3:before {
  content: "\E93C";
  margin-left: -1.40625em;
  color: #002a94;
}
.icomoon-flag_ie .path1:before {
  content: "\E93D";
  color: #f27c20;
}
.icomoon-flag_ie .path2:before {
  content: "\E93E";
  margin-left: -1.40625em;
  color: #f4f4f4;
}
.icomoon-flag_ie .path3:before {
  content: "\E93F";
  margin-left: -1.40625em;
  color: #108e54;
}
.icon-flag_ch {
  background: url('/img/flag-sh.svg') no-repeat left;
  width: 16px;
  height: 16px;
  position: relative;
  left: 0px;
  padding: 0px;
  top: -1px;
}

/*.icon-flag_ch .path1:before {*/
/*  content: "\e961";*/
/*  color: rgb(255, 0, 0);*/
/*}*/
/*.icon-flag_ch .path2:before {*/
/*  content: "\e962";*/
/*  margin-left: -1em;*/
/*  color: rgb(255, 0, 0);*/
/*}*/
/*.icon-flag_ch .path3:before {*/
/*  content: "\e963";*/
/*  margin-left: -1em;*/
/*  color: rgb(255, 255, 255);*/
/*}*/
/*.icon-flag_ch .path4:before {*/
/*  content: "\e964";*/
/*  margin-left: -1em;*/
/*  color: rgb(255, 255, 255);*/
/*}*/
.icomoon-simple-arrow-up:before {
  content: "\E92A";
}
.icomoon-simple-arrow-down:before {
  content: "\E92B";
}
.icomoon-flag_pt .path1:before {
  content: "\E924";
  color: #000;
}
.icomoon-flag_pt .path2:before {
  content: "\E925";
  margin-left: -1.400390625em;
  color: #ff2936;
}
.icomoon-flag_pt .path3:before {
  content: "\E926";
  margin-left: -1.400390625em;
  color: #128415;
}
.icomoon-flag_pt .path4:before {
  content: "\E927";
  margin-left: -1.400390625em;
  color: #faf94f;
}
.icomoon-flag_pt .path5:before {
  content: "\E928";
  margin-left: -1.400390625em;
  color: #fff;
}
.icomoon-flag_pt .path6:before {
  content: "\E929";
  margin-left: -1.400390625em;
  color: #1d50b5;
}
.icomoon-exclamation_on_circle:before {
  content: "\E951";
}
.icomoon-mail:before {
  content: "\E91A";
}
.icomoon-user-plus:before {
  content: "\E91B";
}
.icomoon-log-in:before {
  content: "\E91C";
}
.icomoon-heart:before {
  content: "\E91D";
}
.icomoon-gift:before {
  content: "\E91E";
}
.icomoon-file-text:before {
  content: "\E91F";
}
.icomoon-chef:before {
  content: "\E920";
}
.icomoon-close:before {
  content: "\E921";
}
.icomoon-shopping-bag:before {
  content: "\E922";
}
.icomoon-menu:before {
  content: "\E923";
}
.icomoon-fairtrade:before {
  content: "\E917";
}
.icomoon-eu-stamp:before {
  content: "\E918";
}
.icomoon-award:before {
  content: "\E919";
}
.icomoon-shopping-cart:before {
  content: "\E916";
}
.icomoon-minus_rounded:before {
  content: "\E914";
}
.icomoon-plus_rounded:before {
  content: "\E915";
}
.icomoon-supervegan_logo_horiz:before {
  content: "\E913";
}
.icomoon-complete_arrow_left:before {
  content: "\E912";
}
.icomoon-iswari_logo:before {
  content: "\E911";
}
.icomoon-shopping_basket:before {
  content: "\E90E";
}
.icomoon-search:before {
  content: "\E90F";
}
.icomoon-account_circle:before {
  content: "\E910";
}
.icomoon-shield:before {
  content: "\E90D";
}
.icomoon-carret-right:before {
  content: "\E90C";
  color: #adadad;
}
.icomoon-simple_arrow_left:before {
  content: "\E90B";
}
.icomoon-arrow_right:before {
  content: "\E900";
}
.icomoon-leaf:before {
  content: "\E901";
}
.icomoon-organic:before {
  content: "\E902";
}
.icomoon-plus_sign:before {
  content: "\E903";
}
.icomoon-share:before {
  content: "\E904";
}
.icomoon-simple_arrow_right:before {
  content: "\E905";
}
.icomoon-star-filled:before {
  content: "\E906";
}
.icomoon-star:before {
  content: "\E907";
}
.icomoon-vegan:before {
  content: "\E908";
}
.icomoon-home:before {
  content: "\E909";
}
.icomoon-gluten_free:before {
  content: "\E90A";
}
.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #e8e8e8;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
}
.nice-select:hover {
  border-color: #dbdbdb;
}
.nice-select.open,
.nice-select:active,
.nice-select:focus {
  border-color: #999;
}
.nice-select:after {
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
  content: "";
  display: block;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 5px;
}
.nice-select.open:after {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: #ccc;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .list {
  left: auto;
  right: 0;
}
.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
.nice-select.small:after {
  height: 4px;
  width: 4px;
}
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
.nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
    opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}
.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.nice-select .option.focus,
.nice-select .option.selected.focus,
.nice-select .option:hover {
  background-color: #F5EAD3;
  color: #684E33;
  font-family: 'Barlow';
  font-style: normal;
}
.nice-select .option.selected {
  font-weight: 700;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}
.no-csspointerevents .nice-select .list {
  display: none;
}
.no-csspointerevents .nice-select.open .list {
  display: block;
}
#cookie-bar {
  width: 100%;
  position: fixed;
  bottom: 0;
  background: #525252;
  border-radius: 8px 8px 0 0;
  height: 61px;
  z-index: 9999;
  padding: 0 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  line-height: 110%;
  letter-spacing: -0.03em;
}
#cookie-bar,
#cookie-bar a {
  color: #e3e9ed;
}
.underline {
  text-decoration: underline;
}
.cookie-bar__btn {
  background: #525252;
  border: 1px solid #e3e9ed;
  color: #e3e9ed;
  font-size: 13px;
  line-height: 17px;
  text-shadow: 0 1px 3px rgba(82, 82, 82, 0.2);
  -webkit-box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  border-radius: 50px;
  padding: 9px 17px;
  margin-left: 32px;
  cursor: pointer;
  font-weight: 700;
}
@media (max-width: 576px) {
  #cookie-bar {
    padding: 14px 18px;
    font-size: 11px;
  }
  .cookie-bar__btn {
    margin-left: 5px;
    padding: 8px 16px;
  }
  #cookie-bar span {
    position: relative;
  }
  #cookie-bar a:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
  }
}
.fw-section {
  position: relative;
  width: 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.fw-section > .overlay {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  content: "";
  opacity: 0.6;
  z-index: 1;
}
.fw-section > .container,
.fw-section > .container-fluid,
.fw-section > div {
  position: relative;
  z-index: 5;
}
.fw-section.bg-fixed {
  background-attachment: fixed;
}
.fw-section.no-cover-bg {
  background-size: auto;
}
.isotope-grid {
  position: relative;
  min-height: 180px;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 74px;
}
.isotope-grid > .grid-item {
  display: none;
}
.isotope-grid[style] {
  background: none;
}
.isotope-grid[style] > .grid-item {
  display: inline-block;
  -webkit-animation: showGrid 0.6s;
  animation: showGrid 0.6s;
}
.isotope-grid .gutter-sizer {
  width: 30px;
}
.isotope-grid .grid-item {
  margin-bottom: 30px;
}
.isotope-grid .grid-item .portfolio-tile,
.isotope-grid .grid-item .post-tile {
  margin-bottom: 0;
}
.isotope-grid.cols-1 .gutter-sizer {
  width: 0;
}
.isotope-grid.cols-1 .grid-item,
.isotope-grid.cols-1 .grid-sizer {
  width: 100%;
}
.isotope-grid.cols-2 .grid-item,
.isotope-grid.cols-2 .grid-sizer {
  width: calc(50% - 15px);
}
.isotope-grid.cols-3 .grid-item,
.isotope-grid.cols-3 .grid-sizer {
  width: calc(33.33333% - 20px);
}
.isotope-grid.cols-4 .grid-item,
.isotope-grid.cols-4 .grid-sizer {
  width: calc(25% - 22.5px);
}
.isotope-grid.cols-5 .grid-item,
.isotope-grid.cols-5 .grid-sizer {
  width: calc(20% - 24px);
}
.isotope-grid.cols-6 .grid-item,
.isotope-grid.cols-6 .grid-sizer {
  width: calc(16.66667% - 25px);
}
@media (max-width: 1200px) {
  .isotope-grid.cols-3 .grid-item,
  .isotope-grid.cols-3 .grid-sizer,
  .isotope-grid.cols-4 .grid-item,
  .isotope-grid.cols-4 .grid-sizer,
  .isotope-grid.cols-5 .grid-item,
  .isotope-grid.cols-5 .grid-sizer,
  .isotope-grid.cols-6 .grid-item,
  .isotope-grid.cols-6 .grid-sizer {
    width: calc(33.33333% - 22.5px);
  }
}
@media (max-width: 768px) {
  .isotope-grid.cols-3 .grid-item,
  .isotope-grid.cols-3 .grid-sizer,
  .isotope-grid.cols-4 .grid-item,
  .isotope-grid.cols-4 .grid-sizer,
  .isotope-grid.cols-5 .grid-item,
  .isotope-grid.cols-5 .grid-sizer,
  .isotope-grid.cols-6 .grid-item,
  .isotope-grid.cols-6 .grid-sizer {
    width: calc(50% - 15px);
  }
}
@media (max-width: 576px) {
  .isotope-grid.cols-2 .gutter-sizer,
  .isotope-grid.cols-3 .gutter-sizer,
  .isotope-grid.cols-4 .gutter-sizer,
  .isotope-grid.cols-5 .gutter-sizer,
  .isotope-grid.cols-6 .gutter-sizer {
    width: 0;
  }
  .isotope-grid.cols-2 .grid-item,
  .isotope-grid.cols-2 .grid-sizer,
  .isotope-grid.cols-3 .grid-item,
  .isotope-grid.cols-3 .grid-sizer,
  .isotope-grid.cols-4 .grid-item,
  .isotope-grid.cols-4 .grid-sizer,
  .isotope-grid.cols-5 .grid-item,
  .isotope-grid.cols-5 .grid-sizer,
  .isotope-grid.cols-6 .grid-item,
  .isotope-grid.cols-6 .grid-sizer {
    width: 100%;
  }
}
.isotope-grid.grid-no-gap .gutter-sizer {
  width: 0;
}
.isotope-grid.grid-no-gap .grid-item {
  margin-bottom: 0;
}
.isotope-grid.grid-no-gap.cols-2 .grid-item,
.isotope-grid.grid-no-gap.cols-2 .grid-sizer {
  width: 50%;
}
.isotope-grid.grid-no-gap.cols-3 .grid-item,
.isotope-grid.grid-no-gap.cols-3 .grid-sizer {
  width: 33.33333333%;
}
.isotope-grid.grid-no-gap.cols-4 .grid-item,
.isotope-grid.grid-no-gap.cols-4 .grid-sizer {
  width: 25%;
}
.isotope-grid.grid-no-gap.cols-5 .grid-item,
.isotope-grid.grid-no-gap.cols-5 .grid-sizer {
  width: 20%;
}
.isotope-grid.grid-no-gap.cols-6 .grid-item,
.isotope-grid.grid-no-gap.cols-6 .grid-sizer {
  width: 16.66666667%;
}
@media (max-width: 1200px) {
  .isotope-grid.grid-no-gap.cols-3 .grid-item,
  .isotope-grid.grid-no-gap.cols-3 .grid-sizer,
  .isotope-grid.grid-no-gap.cols-4 .grid-item,
  .isotope-grid.grid-no-gap.cols-4 .grid-sizer,
  .isotope-grid.grid-no-gap.cols-5 .grid-item,
  .isotope-grid.grid-no-gap.cols-5 .grid-sizer,
  .isotope-grid.grid-no-gap.cols-6 .grid-item,
  .isotope-grid.grid-no-gap.cols-6 .grid-sizer {
    width: 33.33333333%;
  }
}
@media (max-width: 768px) {
  .isotope-grid.grid-no-gap.cols-3 .grid-item,
  .isotope-grid.grid-no-gap.cols-3 .grid-sizer,
  .isotope-grid.grid-no-gap.cols-4 .grid-item,
  .isotope-grid.grid-no-gap.cols-4 .grid-sizer,
  .isotope-grid.grid-no-gap.cols-5 .grid-item,
  .isotope-grid.grid-no-gap.cols-5 .grid-sizer,
  .isotope-grid.grid-no-gap.cols-6 .grid-item,
  .isotope-grid.grid-no-gap.cols-6 .grid-sizer {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .isotope-grid.grid-no-gap.cols-2 .grid-item,
  .isotope-grid.grid-no-gap.cols-2 .grid-sizer,
  .isotope-grid.grid-no-gap.cols-3 .grid-item,
  .isotope-grid.grid-no-gap.cols-3 .grid-sizer,
  .isotope-grid.grid-no-gap.cols-4 .grid-item,
  .isotope-grid.grid-no-gap.cols-4 .grid-sizer,
  .isotope-grid.grid-no-gap.cols-5 .grid-item,
  .isotope-grid.grid-no-gap.cols-5 .grid-sizer,
  .isotope-grid.grid-no-gap.cols-6 .grid-item,
  .isotope-grid.grid-no-gap.cols-6 .grid-sizer {
    width: 100%;
  }
}
@-webkit-keyframes showGrid {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes showGrid {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.toolbar {
  position: absolute;
  top: 0;
  right: 30px;
  height: 100%;
  z-index: 5;
}
.toolbar .inner {
  display: table;
  height: 100%;
  min-height: 100%;
}
.toolbar .tools {
  display: table-cell;
  vertical-align: middle;
}
.toolbar .account,
.toolbar .cart,
.toolbar .search {
  display: inline-block;
  position: relative;
  width: 44px;
  height: 44px;
  margin-left: 6px;
  -webkit-transition: background-color 0.35s;
  transition: background-color 0.35s;
  border: 1px solid #e1e7ec;
  border-radius: 50%;
  color: #525252;
  font-size: 17px;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
}
.toolbar .account > i,
.toolbar .cart > i,
.toolbar .search > i {
  line-height: 39px;
}
.toolbar .account > a,
.toolbar .cart > a,
.toolbar .search > a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.toolbar .account:hover,
.toolbar .cart:hover,
.toolbar .search:hover {
  background-color: #fcfeff;
}
.toolbar .account > a:after,
.toolbar .cart > a:after {
  display: block;
  position: absolute;
  top: 100%;
  width: 100%;
  height: 18px;
  margin-top: -10px;
  content: "";
}
.toolbar .search > i {
  line-height: 40px;
}
.toolbar .cart {
  width: auto;
  padding: 0 16px;
}
.toolbar .cart,
.toolbar .cart > a {
  border-radius: 22px;
}
.toolbar .cart > .count,
.toolbar .cart > .subtotal {
  display: inline-block;
  margin-top: 2px;
  font-size: 14px;
  vertical-align: middle;
}
.toolbar .cart > .count {
  margin-left: 5px;
}
.toolbar .cart > .subtotal {
  margin-left: 11px;
  padding: 1px 0 1px 12px;
  border-left: 1px solid #e1e7ec;
}
@media (max-width: 1200px) {
  .toolbar .cart {
    padding: 0 14px;
  }
  .toolbar .cart > .subtotal {
    display: none;
  }
}
.toolbar-dropdown {
  margin-top: 7px !important;
  text-align: left;
}
.toolbar .account > .toolbar-dropdown {
  left: 50%;
  margin-left: -100px;
}
.toolbar .cart > .toolbar-dropdown {
  right: 0;
  left: auto;
  width: 260px;
  padding-right: 18px !important;
  padding-left: 18px !important;
}
.toolbar .cart > .toolbar-dropdown > .toolbar-dropdown-group {
  display: table;
  width: 100%;
  padding-top: 9px;
  padding-bottom: 9px;
  border-top: 1px solid #e1e7ec;
}
.toolbar .cart > .toolbar-dropdown > .toolbar-dropdown-group:last-child {
  border-top: 0;
}
.toolbar .cart > .toolbar-dropdown > .toolbar-dropdown-group > .column {
  display: table-cell;
  vertical-align: top;
}
.toolbar
  .cart
  > .toolbar-dropdown
  > .toolbar-dropdown-group
  > .column:first-child {
  padding-right: 6px;
}
.toolbar
  .cart
  > .toolbar-dropdown
  > .toolbar-dropdown-group
  > .column:last-child {
  padding-left: 6px;
}
.toolbar .cart > .toolbar-dropdown > .toolbar-dropdown-group .btn {
  margin: 0;
}
.dropdown-product-item {
  display: table;
  position: relative;
  width: 100%;
  padding: 9px 0;
  border-top: 1px dashed #d8e0e6;
}
.dropdown-product-item:first-child {
  border-top: 0;
}
.dropdown-product-item > .dropdown-product-info,
.dropdown-product-item > .dropdown-product-thumb {
  display: table-cell;
  vertical-align: top;
}
.dropdown-product-item > .dropdown-product-thumb {
  width: 55px;
  border-radius: 50%;
  overflow: hidden;
}
.dropdown-product-item > .dropdown-product-thumb > img {
  display: block;
  width: 100%;
}
.dropdown-product-item > .dropdown-product-remove {
  display: block;
  position: absolute;
  top: 12px;
  right: 0;
  color: #d04137;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
}
.dropdown-product-item > .dropdown-product-info {
  padding-right: 15px;
  padding-left: 12px;
}
.dropdown-product-item .dropdown-product-title {
  display: block;
  padding-top: 2px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  color: #2b2b2b;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.dropdown-product-item .dropdown-product-title:hover {
  color: #96c950;
}
.dropdown-product-item .dropdown-product-details {
  color: #9da9b9;
  font-size: 14px;
}
.toolbar .account:hover > .toolbar-dropdown,
.toolbar .cart:hover > .toolbar-dropdown {
  display: block;
  -webkit-animation: submenu-show 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation: submenu-show 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.topbar {
  display: table;
  position: relative;
  width: 100%;
  height: 40px;
  padding: 0 30px;
  border-bottom: 1px solid #96c950;
  background-color: #96c950;
  z-index: 9010;
}
.topbar .topbar-column {
  display: table-cell;
  width: 50%;
  vertical-align: middle;
}
.topbar .topbar-column:last-child {
  text-align: right;
}
.topbar .topbar-column:first-child {
  text-align: left;
}
.topbar .topbar-column a:not(.social-button),
.topbar .topbar-column p,
.topbar .topbar-column span {
  color: #2b2b2b;
  font-size: 13px;
}
.topbar .topbar-column > a:not(.social-button),
.topbar .topbar-column > p,
.topbar .topbar-column > span {
  display: inline-block;
  margin-top: 5px;
  margin-bottom: 5px;
}
.topbar .topbar-column > a:not(.social-button) > i,
.topbar .topbar-column > p > i,
.topbar .topbar-column > span > i {
  margin-top: -3px;
}
.topbar .topbar-column > a:not(.social-button) > i.icon-download,
.topbar .topbar-column > p > i.icon-download,
.topbar .topbar-column > span > i.icon-download {
  margin-top: -4px;
}
.topbar .topbar-column a:not(.social-button) {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  text-decoration: none;
}
.topbar .topbar-column a:not(.social-button):hover {
  color: #96c950;
}
.topbar .topbar-column:last-child > a:not(.social-button),
.topbar .topbar-column:last-child > p,
.topbar .topbar-column:last-child > span {
  margin-left: 20px;
}
.topbar .topbar-column:first-child > a:not(.social-button),
.topbar .topbar-column:first-child > p,
.topbar .topbar-column:first-child > span {
  margin-right: 20px;
}
.topbar.topbar_yellow {
  border-bottom: 1px solid #fcd404;
  background-color: #fcd404;
  z-index: 910;
}
.topbar.topbar_yellow .text-white {
  color: #000 !important;
}
.topbar.topbar_yellow i {
  color: #000;
}
.topbar.topbar_orange {
  border-bottom: 1px solid #f48b24;
  background-color: #f48b24;
  z-index: 910;
}
.topbar.topbar_orange .text-white {
  color: #000 !important;
}
.topbar.topbar_orange i {
  color: #000;
}
.topbar_2 {
  background: linear-gradient(0deg, rgba(227, 233, 237, 0.3), rgba(227, 233, 237, 0.3)), #FFFFFF;
  padding: 9px 32px;
  min-height: 40px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 767px) {
  .topbar_2 {
    height: 0;
    overflow: hidden;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .topbar_2 .topbar_2_message_wrap {
    display: none;
  }
}
.topbar_2 .topbar_2_spacer {
  width: 246.27px;
  min-height: 1px;
}
@media (max-width: 1200px) {
  .topbar_2 .topbar_2_spacer {
    display: none;
  }
}
.topbar_2 p.topbar_message {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #684E33;
}
.topbar_2 p.topbar_message i {
  font-size: 16px;
  color: #A16734;
  position: relative;
  top: 3px;
  margin-right: 2px;
}
.topbar_2 .topbar_2_lang_switch {
  cursor: pointer;
}
@media (max-width: 767px) {
  .topbar_2 .topbar_2_lang_switch {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}
.topbar_2 .topbar_2_lang_switch .topbar_2_flag {
  margin-right: 5px;
}
.topbar_2 .topbar_2_lang_switch .topbar_2_flag span {
  font-size: 10px;
}
.topbar_2 .topbar_2_lang_switch .topbar_2_location_text {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: #684E33;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.topbar_2 .topbar_2_lang_switch:hover .topbar_2_location_text {
  color: #3ca047;
}
.topbar_2 .topbar_2_menu a {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: #684E33;
  margin: 24px 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin: 0 12px;
}
.topbar_2 .topbar_2_menu a:hover {
  color: #3ca047;
}
.topbar_2 .topbar_2_menu a:last-child {
  margin-right: 0;
}
.header_2 {
  padding: 7px 32px;
  min-height: 66px;
  z-index: 9000;
  position: relative;
  background: #FBF6EC;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 100%;
}
.header_2.page-head-scrolled {
  position: fixed !important;
  top: 0;
}
@media (max-width: 1200px) {
  /*.header_2 {
    margin-bottom: 45px;
  }*/
}
@media (max-width: 767px) {
  .header_2 {
    border-bottom: 1px solid #eee;
    padding: 14px 20px;
    margin-bottom: 0;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
  }
}
.header_2 .site-logo2 {
  width: 174px;
  display: block;
}
@media (max-width: 1200px) {
  .header_2 .site-logo2 {
    width: 140px;
  }
}
@media (max-width: 767px) {
  .header_2 .site-logo2 {
    width: 130px;
  }
}
.header_2 .mobile_toogle_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header_2 .mobile_toogle_buttons .mobile-menu-toggle {
  font-size: 14px;
  color: #684E33;
  padding: 10px;
  margin-left: -10px;
  margin-right: 5px;
}
.header_2 .mobile_toogle_buttons .header_2_mobile-search-toggle {
  font-size: 14px;
  padding: 10px;
  color: #684E33;
}
@media (min-width: 1025px) {
  .header_2 .mobile_toogle_buttons {
    display: none;
  }
}
#site_search {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  /*flex-grow: 1;*/
  margin: 0;
  position: relative;
}

#site_search.addSize {
  width: 75%;
}
.site_search_changeicon::before {
  content: "\e903";
  color: #389C23;
}
.site_search_changeicon {
  transform: rotate(44deg);
}
#site_search .icomoon-search1.site_search_changeicon {
  background-image: none;
}
.site_search_no_results {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: -0.02em;
  color: #2B1E0F;
  text-align: center;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #2B1E0F;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #2B1E0F transparent transparent transparent;
}
.div-lds-ring {
  display: flex;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


@media (max-width: 1200px) {
  #site_search {
    margin: 0;
  }
}
@media (max-width: 1024px) {
  #site_search {
    position: absolute;
    top: 68px;
    left: -20px;
    /*top: 0;
    left: 0;*/
    margin: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  #site_search.active {
    visibility: visible;
    opacity: 1;
    width: 100%;
  }
  #site_search .site-search {
    height: 100%;
    position: relative;
  }
}
#site_search input[type="text"] {
  font-family: 'Barlow';
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #969696;
  height: 39px;
  line-height: 37px;
  padding: 0 40px;
  padding-right: 17vw;
  border: 1px solid #E1E1E1;
  border-radius: 32px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#site_search input[type="text"].addSize {
  width: 100%;
}
#site_search input[type="text"]::placeholder {
  font-family: 'Barlow';
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: #A16734;
  opacity: 1;
}
#site_search input[type="text"]:focus {
  outline: none;
}
@media (min-width: 1025px) {
  #site_search input[type="text"]:focus {
    /*border: 1px solid #3ca047;*/
  }
}
@media (max-width: 1024px) {
  #site_search input[type="text"] {
    padding: 0 105px 0 15px;
    height: 100%;
    border-radius: 0;
    border: 0;
    font-size: 12px;
  }


  #site_search input {
    width: 334px !important;
    height: 40px !important;
    background: #FFFFFF;
    border: 1px solid #E1E1E1 !important;
    border-radius: 32px !important;
    margin-top: 10px;
    margin-left: 10px;
  }
}
#site_search .icomoon-search1 {
  position: absolute;
  top: 13px;
  left: 17px;
  font-size: 13px;
  color: #525252;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
}
#site_search .icomoon-search1:hover {
  color: #3ca047;
}
@media (max-width: 1025px) {
  #site_search .icomoon-search1 {
    display: none;
  }
}
#site_search .icomoon-submit_arrow {
  position: absolute;
  top: 8px;
  right: 11px;
  color: #96c950;
  font-size: 23px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: 0;
}
#site_search .icomoon-submit_arrow:hover {
  color: #3ca047;
}
#site_search .icomoon-submit_arrow.active {
  opacity: 1;
}
@media (max-width: 1024px) {
  #site_search .icomoon-submit_arrow {
    display: none;
  }
}
#site_search .clear-search {
  padding: 10px 0;
  color: #9da9b9;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: absolute;
  top: 20px;
  right: 44px;
}
@media (min-width: 1025px) {
  #site_search .clear-search,
  #site_search .close-search {
    display: none;
  }

  .sidebar {
    max-width: none;
  }
}
@media (max-width: 1024px) {
  #site_search .close-search {
    padding: 10px;
    font-size: 10px;
    color: #389C23;
    position: absolute;
    top: 15px;
    left: 15px;
  }
}
.toolbar_2 .account {
  position: relative;
  padding: 10px 0;
  margin-right: 32px;
}
@media (max-width: 1200px) {
  .toolbar_2 .account {
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .toolbar_2 .account {
    margin-right: 5px;
    padding: 0;
    position: unset;
  }
}
.toolbar_2 .account a i {
  font-size: 17px;
  color: #2B1E0F;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .toolbar_2 .account a i {
    color: #9da9b9;
    margin-right: 0;
    padding: 10px;
    font-size: 14px;
  }
}
.toolbar_2 .account a span {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: -0.02em;
  color: #684E33;
}
@media (max-width: 767px) {
  .toolbar_2 .account a span {
    display: none;
  }
}
.toolbar_2 .account .toolbar-dropdown {
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin-top: 0 !important;
  left: unset;
  right: 0;
}
@media (max-width: 767px) {
  .toolbar_2 .account .toolbar-dropdown {
    width: calc(100% - 90px);
    left: 45px;
  }
}
.toolbar_2 .account:hover .toolbar-dropdown {
  display: block;
  opacity: 1;
}
.toolbar_2 .cart {
  position: relative;
  padding: 10px 0;
  margin-right: 32px;
}
@media (max-width: 767px) {
  .toolbar_2 .cart {
    padding: 0;
  }
}
.toolbar_2 .cart a i {
  font-size: 17px;
  color: #2B1E0F;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .toolbar_2 .cart a i {
    color: #684E33;
    margin-right: -10px;
    padding: 10px;
    font-size: 14px;
  }
  .toolbar_2 .cart a i:before {
    content: "\E922";
    bottom: -2px;
    position: relative;
  }
}
.toolbar_2 .cart a span {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: -0.02em;
  color: #684E33;
}
@media (max-width: 767px) {
  .toolbar_2 .cart a span {
    display: none;
  }
}
.toolbar_2 .cart .toolbar-dropdown {
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin-top: 0 !important;
  width: 260px;
  padding-right: 18px !important;
  padding-left: 18px !important;
}
.toolbar_2 .cart .toolbar-dropdown .toolbar-dropdown-group {
  display: table;
  width: 100%;
  padding-top: 9px;
  padding-bottom: 9px;
  border-top: 1px solid #e1e7ec;
}
.toolbar_2 .cart .toolbar-dropdown .toolbar-dropdown-group:last-child {
  border-top: 0;
}
.toolbar_2 .cart .toolbar-dropdown .toolbar-dropdown-group > .column {
  display: table-cell;
  vertical-align: top;
}
.toolbar_2
  .cart
  .toolbar-dropdown
  .toolbar-dropdown-group
  > .column:first-child {
  padding-right: 6px;
}
.toolbar_2
  .cart
  .toolbar-dropdown
  .toolbar-dropdown-group
  > .column:last-child {
  padding-left: 6px;
}
.toolbar_2 .cart .toolbar-dropdown .toolbar-dropdown-group .btn {
  margin: 0;
}
.toolbar_2 .cart:hover .toolbar-dropdown {
  display: block;
  opacity: 1;
  right: 0;
  left: unset;
}
.main-navigation-desktop {
  padding: 0 32px;
  background: #3ca047;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}
.main-navigation-desktop .nav_item {
  display: inline-block;
}
.main-navigation-desktop .nav_item > a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding: 17px 8px;
  display: inline-block;
}
@media (max-width: 1200px) {
  .main-navigation-desktop .nav_item > a {
    font-size: 11px;
  }
}
.main-navigation-desktop .nav_item.hover .mega_menu {
  opacity: 1;
  visibility: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index:10000;
}
.main-navigation-desktop .nav_item.hover .mega_menu_horizontal_scroll {
  opacity: 1;
  visibility: visible;
}
.main-navigation-desktop .nav_item.hover > a {
  color: #1e8e20;
  /*background: #f7f7f7;*/
}
.main-navigation-desktop .new_item {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #FDFBF7;
  font-size: 10px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  padding: 0 4px;
  background-color: #2A941A;
  margin-left: 4px;
}
.main-navigation-desktop a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.main-navigation-desktop.no-bg.none {
  display: none;
}
.mega_menu_horizontal_scroll {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: absolute;
  left: 0;
  background: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(hsla(0, 0%, 100%, 0.2)),
      to(hsla(0, 0%, 100%, 0.2))
    ),
    hsla(0, 0%, 100%, 0.98);
  background: linear-gradient(
      0deg,
      hsla(0, 0%, 100%, 0.2),
      hsla(0, 0%, 100%, 0.2)
    ),
    hsla(0, 0%, 100%, 0.98);
  border-radius: 0 0 8px 8px;
  width: 100%;
  overflow: scroll;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.mega_menu_horizontal_scroll > nav {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.mega_menu_horizontal_scroll > nav a {
  width: 23%;
  min-width: 437px;
  height: 253px;
  margin: 35px 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-size: 16px;
}
.mega_menu_horizontal_scroll > nav a > .mega_menu_campaign_title {
  font-weight: 700;
  font-size: 32px;
}
.mega_menu_horizontal_scroll > nav a > .mega_menu_campaign_conditions,
.mega_menu_horizontal_scroll > nav a > .mega_menu_campaign_title {
  width: calc(100% - 60px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  letter-spacing: -0.02em;
}
.mega_menu_horizontal_scroll > nav a > .mega_menu_campaign_conditions {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  line-height: 22px;
  font-weight: 400;
}
.mega_menu_horizontal_scroll > nav a > .mega_menu_campaign_code {
  font-weight: 400;
  text-transform: uppercase;
}
.mega_menu_horizontal_scroll > nav a > .mega_menu_campaign_code > span {
  padding-left: 10px;
  font-size: 19px;
  font-weight: 600;
}
.mega_menu_horizontal_scroll > nav a > .mega_menu_campaign_see_conditions {
  font-size: 19px;
  margin-top: 20px;
}
.mega_menu {
  opacity: 0.4;
  visibility: hidden;
  display: none;
  padding-right: 32px;
  padding-left: 32px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(hsla(0, 0%, 100%, 0.2)),
      to(hsla(0, 0%, 100%, 0.2))
    ),
    hsla(0, 0%, 100%, 0.98);
  background: linear-gradient(
      0deg,
      hsla(0, 0%, 100%, 0.2),
      hsla(0, 0%, 100%, 0.2)
    ),
    hsla(0, 0%, 100%, 0.98);
  border-radius: 0 0 8px 8px;
  position: absolute;
  left: 0;
  width: 100%;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  top: 56px;
}
.mega_menu,
.mega_menu nav {
  -webkit-box-direction: normal;
}
.mega_menu nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
}
.mega_menu .mega_menu_left a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: -0.02em;
  color: #000;
  margin-bottom: 10px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.mega_menu .mega_menu_left a:hover {
  color: #1e8e20;
}
.mega_menu .mega_menu_left span a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: -0.02em;
  color: #684E33;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: inline;
  text-decoration: underline;
  text-decoration-color: #684E33;
}
.mega_menu .mega_menu_left span a:hover {
  color: #684E33;
}
.mega_menu .mega_menu_regular a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: -0.02em;
  color: #4f5155;
  margin-bottom: 10px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.mega_menu .mega_menu_regular a:hover {
  color: #1e8e20;
}
@media (max-width: 1200px) {
  .mega_menu .mega_menu_regular a {
    font-size: 13px;
  }
}
.mega_menu .mega_menu_regular .mega_menu_title {
  margin: 0;
}
.mega_menu .mega_menu_regular .mega_menu_title,
.mega_menu .mega_menu_regular .mega_menu_title a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: -0.02em;
  color: #000;
}
.mega_menu .mega_menu_regular .mega_menu_title a {
  margin-bottom: 0;
}
.mega_menu .mega_menu_regular .mega_menu_title a:hover {
  color: #1e8e20;
}
@media (max-width: 1200px) {
  .mega_menu .mega_menu_regular .mega_menu_title,
  .mega_menu .mega_menu_regular .mega_menu_title a {
    font-size: 13px;
  }
}
.mega_menu .mega_menu_regular .mega_menu_title + a {
  margin-top: 12px;
}
.mega_menu .mega_menu_regular .mega_menu_title + .mega_menu_title {
  margin-top: 10px;
}
.mega_menu .mega_menu_sqares {
  max-width: 813px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 54px;
}
.mega_menu .mega_menu_sqares a {
  margin: 9px;
  width: calc(33.333% - 18px);
  padding: 24px 16px;
  background: #fff;
  -webkit-box-shadow: 0 3px 28px rgba(82, 82, 82, 0.11);
  box-shadow: 0 3px 28px rgba(82, 82, 82, 0.11);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.2;
  color: #000;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.mega_menu .mega_menu_sqares a:hover {
  color: #1e8e20;
}
.mega_menu .mega_menu_featured_images {
  width: 100%;
  max-width: 923px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 24px;
}
.mega_menu .mega_menu_featured_images a {
  background: #fff;
  -webkit-box-shadow: 0 3px 28px rgba(82, 82, 82, 0.11);
  box-shadow: 0 3px 28px rgba(82, 82, 82, 0.11);
  border-radius: 8px;
  display: block;
}
.mega_menu .mega_menu_featured_images a .mega_menu_featured_image_wrap {
  width: 100%;
  padding-bottom: 69.7594501718%;
  position: relative;
  overflow: hidden;
}
.mega_menu .mega_menu_featured_images a .mega_menu_featured_image_wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: scale(1) translate(-50%, -50%);
  transform: scale(1) translate(-50%, -50%);
  width: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.mega_menu .mega_menu_featured_images a span {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000;
  padding: 24px 16px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: block;
}
.mega_menu .mega_menu_featured_images a:hover img {
  -webkit-transform: scale(1.1) translate(-45%, -45%);
  transform: scale(1.1) translate(-45%, -45%);
}
.mega_menu .mega_menu_featured_images a:hover span {
  color: #1e8e20;
}
.mega_menu .mega_menu_arrow_before {
  width: 25%;
  padding-right: 23px;
}
.mega_menu .mega_menu_arrow_before .mega_menu_title {
  font-weight: 600;
  font-size: 15px;
  padding-bottom: 4px;
  border-bottom: 1px solid #e3e9ed;
}
.mega_menu .mega_menu_arrow_before .mega_menu_title,
.mega_menu .mega_menu_arrow_before a {
  font-family: 'DM Sans', sans-serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #525252;
  margin-bottom: 16px;
}
.mega_menu .mega_menu_arrow_before a {
  font-weight: 500;
  font-size: 14px;
  padding-left: 11px;
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.mega_menu .mega_menu_arrow_before a:before {
  width: 5px;
  height: 5px;
  border-top: 1px solid #525252;
  border-right: 1px solid #525252;
  content: "";
  top: 5px;
  left: 0;
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mega_menu .mega_menu_arrow_before a:hover {
  color: #1e8e20;
}
.mega_menu .mega_menu_arrow_before a:hover:before {
  border-top: 1px solid #1e8e20;
  border-right: 1px solid #1e8e20;
}
.mega_menu .mega_menu_background_images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 75%;
}
.mega_menu .mega_menu_background_images a {
  padding-bottom: 37.7358490566%;
  width: calc(33.333% - 4px);
  margin-right: 4px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.mega_menu .mega_menu_background_images a:last-child {
  margin-right: 0;
}
.mega_menu .mega_menu_background_images a p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  z-index: 3;
  padding: 30px;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .mega_menu .mega_menu_background_images a p {
    padding: 16px;
  }
}
.mega_menu .mega_menu_background_images a p span {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1200px) {
  .mega_menu .mega_menu_background_images a p span {
    font-size: 14px;
  }
}
.mega_menu .mega_menu_background_images a p i {
  font-size: 22px;
  margin-left: 4px;
  color: #fff;
}
.mega_menu .mega_menu_background_images a div.mega_menu_background {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  top: -1px;
  left: -1px;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  z-index: 1;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
}
.mega_menu .mega_menu_background_images a:after {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  content: "";
  top: -1px;
  left: -1px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(transparent),
    color-stop(46.35%, rgba(0, 0, 0, 0.04)),
    color-stop(82.81%, rgba(0, 0, 0, 0.4375)),
    to(rgba(0, 0, 0, 0.8))
  );
  background: linear-gradient(
    180deg,
    transparent,
    rgba(0, 0, 0, 0.04) 46.35%,
    rgba(0, 0, 0, 0.4375) 82.81%,
    rgba(0, 0, 0, 0.8)
  );
  z-index: 2;
  position: absolute;
}
.mega_menu .mega_menu_background_images a:hover div.mega_menu_background {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.mega_menu .mega_menu_top {
  width: 100%;
  padding: 13px 32px;
}
.mega_menu .mega_menu_bottom {
  width: 100%;
  padding: 48px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mega_menu .recipes_color_menu {
  text-align: center;
  background: rgba(255, 233, 237, 0.2);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.mega_menu .recipes_color_menu a {
  display: inline-block;
  padding: 8px 25px;
  border-radius: 50px;
  margin: 0 12px;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  letter-spacing: -0.02em;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (max-width: 1200px) {
  .mega_menu .recipes_color_menu a {
    padding: 8px 16px;
    margin: 0 4px;
  }
}
.mega_menu .recipes_color_menu a.green_bg {
  color: #fff;
  -webkit-box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  background: #96c950;
}
.mega_menu .recipes_color_menu a.green_bg:hover {
  background: transparent;
  color: #96c950;
}
.mega_menu .recipes_color_menu a.blue {
  color: #39b8b3;
}
.mega_menu .recipes_color_menu a.blue:hover {
  background: #39b8b3;
  color: #fff;
}
.mega_menu .recipes_color_menu a.orange {
  color: #dd5631;
}
.mega_menu .recipes_color_menu a.orange:hover {
  background: #dd5631;
  color: #fff;
}
.mega_menu .recipes_color_menu a.light_green {
  color: #a9c600;
}
.mega_menu .recipes_color_menu a.light_green:hover {
  background: #a9c600;
  color: #fff;
}
.mega_menu .recipes_color_menu a.brown {
  color: #846503;
}
.mega_menu .recipes_color_menu a.brown:hover {
  background: #846503;
  color: #fff;
}
.mega_menu .recipes_color_menu a.dark_green {
  color: #08b556;
}
.mega_menu .recipes_color_menu a.dark_green:hover {
  background: #08b556;
  color: #fff;
}
.mega_menu .recipes_color_menu a.yellow {
  color: #ffb520;
}
.mega_menu .recipes_color_menu a.yellow:hover {
  background: #ffb520;
  color: #fff;
}
.mega_menu a.highlight_big {
  width: 33.333%;
  padding-bottom: 22.9317936118%;
  border-radius: 10px;
  display: block;
  position: relative;
  overflow: hidden;
}
.mega_menu a.highlight_big p {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}
.mega_menu a.highlight_big p span.highlight_big_title {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 1px 3px rgba(82, 82, 82, 0.2);
  margin-bottom: 10px;
}
.mega_menu a.highlight_big p span.highlight_big_fake_button {
  background: #96c950;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  border-radius: 50px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(82, 82, 82, 0.2);
  padding: 10px 40px;
  display: inline-block;
  margin: auto;
  border: 0;
}
.mega_menu a.highlight_big .background {
  z-index: 0;
  background-position: 50%;
  background-size: cover;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.mega_menu a.highlight_big .background,
.mega_menu a.highlight_big:before {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  top: -1px;
  left: -1px;
}
.mega_menu a.highlight_big:before {
  content: "";
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
}
.mega_menu a.highlight_big:hover .background {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.mega_menu .recipes_navs_wrap {
  width: 66.666%;
  padding-left: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1200px) {
  .mega_menu .recipes_navs_wrap {
    padding-left: 32px;
  }
}
.mega_menu .mega_menu_small_featured_image {
  width: 50%;
}
.mega_menu .mega_menu_small_featured_image .mega_menu_title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #525252;
  padding-bottom: 4px;
  border-bottom: 1px solid #e3e9ed;
  margin-bottom: 16px;
}
.mega_menu .mega_menu_small_featured_image a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}
.mega_menu .mega_menu_small_featured_image a img {
  width: 60px;
  margin-right: 10px;
  -webkit-filter: drop-shadow(0 0 5px rgba(82, 82, 82, 0.08)),
    drop-shadow(0 10px 40px rgba(82, 82, 82, 0.1));
  filter: drop-shadow(0 0 5px rgba(82, 82, 82, 0.08)),
    drop-shadow(0 10px 40px rgba(82, 82, 82, 0.1));
  border-radius: 4px;
}
.mega_menu .mega_menu_small_featured_image a span {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.64;
  letter-spacing: -0.02em;
  color: #525252;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.mega_menu .mega_menu_small_featured_image a:hover span {
  color: #3ca047;
}
.mega_menu .mega_menu_discount_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.mega_menu .mega_menu_discount_wrap .mega_menu_discount_item {
  margin: 0 10px;
  -webkit-filter: drop-shadow(0 3px 28px rgba(82, 82, 82, 0.11));
  filter: drop-shadow(0 3px 28px rgba(82, 82, 82, 0.11));
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e3e9ed;
  background: #fff;
  width: 33.333%;
}
.mega_menu .mega_menu_discount_wrap .mega_menu_discount_item,
.mega_menu
  .mega_menu_discount_wrap
  .mega_menu_discount_item
  .mega_menu_discount_item_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.mega_menu
  .mega_menu_discount_wrap
  .mega_menu_discount_item
  .mega_menu_discount_item_top {
  padding: 45px 20px 20px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.mega_menu
  .mega_menu_discount_wrap
  .mega_menu_discount_item
  .mega_menu_discount_item_top
  p {
  width: 100%;
  text-align: center;
}
.mega_menu
  .mega_menu_discount_wrap
  .mega_menu_discount_item
  .mega_menu_discount_item_top
  p.mega_menu_discount_item_title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 23.2556px;
  line-height: 110%;
  letter-spacing: -0.02em;
}
.mega_menu
  .mega_menu_discount_wrap
  .mega_menu_discount_item
  .mega_menu_discount_item_top
  p.mega_menu_discount_item_description {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  text-align: center;
  letter-spacing: -0.02em;
}
.mega_menu
  .mega_menu_discount_wrap
  .mega_menu_discount_item
  .mega_menu_discount_item_top
  .mega_menu_discount_item_spacer {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.mega_menu
  .mega_menu_discount_wrap
  .mega_menu_discount_item
  .mega_menu_discount_item_top
  p.mega_menu_discount_item_code {
  opacity: 0.9;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: -0.02em;
  color: #fff;
  margin-top: 10px;
}
.mega_menu
  .mega_menu_discount_wrap
  .mega_menu_discount_item
  .mega_menu_discount_item_top
  p.mega_menu_discount_item_code
  strong {
  font-weight: 700;
}
.mega_menu
  .mega_menu_discount_wrap
  .mega_menu_discount_item
  .mega_menu_discount_item_top.purple_bg {
  background: #37235a;
}
.mega_menu
  .mega_menu_discount_wrap
  .mega_menu_discount_item
  .mega_menu_discount_item_top.purple_bg
  p {
  color: #fff;
}
.mega_menu
  .mega_menu_discount_wrap
  .mega_menu_discount_item
  .mega_menu_discount_item_top.brown_bg {
  background: #e1dace;
}
.mega_menu
  .mega_menu_discount_wrap
  .mega_menu_discount_item
  .mega_menu_discount_item_top.brown_bg
  p {
  color: #000;
}
.mega_menu
  .mega_menu_discount_wrap
  .mega_menu_discount_item
  .mega_menu_discount_item_top.green_bg {
  background: #81bdb1;
}
.mega_menu
  .mega_menu_discount_wrap
  .mega_menu_discount_item
  .mega_menu_discount_item_top.green_bg
  p {
  color: #fff;
}
.mega_menu
  .mega_menu_discount_wrap
  .mega_menu_discount_item
  .mega_menu_discount_item_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 15px;
}
.mega_menu
  .mega_menu_discount_wrap
  .mega_menu_discount_item
  .mega_menu_discount_item_bottom
  a.mega_menu_discount_item_apply_button {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #9da9b9;
  border-radius: 50px;
  border: 1px solid #9da9b9;
  padding: 11px 40px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.mega_menu
  .mega_menu_discount_wrap
  .mega_menu_discount_item
  .mega_menu_discount_item_bottom
  a.mega_menu_discount_item_apply_button:hover {
  background: #3ca047;
  color: #fff;
}
.mega_menu
  .mega_menu_discount_wrap
  .mega_menu_discount_item
  .mega_menu_discount_item_bottom
  a.mega_menu_discount_item_details_button {
  padding: 11px 18px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #9da9b9;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.mega_menu
  .mega_menu_discount_wrap
  .mega_menu_discount_item
  .mega_menu_discount_item_bottom
  a.mega_menu_discount_item_details_button:hover {
  color: #3ca047;
}
.main-navigation-wrap-desktop {
  position: absolute;
  top: 119px;
  left: 0;
  width: 100%;
  z-index: 100;
}
.main-navigation-wrap-desktop.sticky {
  top: 0;
  position: fixed;
}
@media (max-width: 1200px) {
  .main-navigation-wrap-desktop {
    top: 114px;
  }
}
@media (max-width: 1024px) {
  .main-navigation-wrap-desktop {
    display: none;
  }
}
.mobile-navigation-wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9020;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (min-width: 1025px) {
  .mobile-navigation-wrap {
    display: none;
  }
}
.mobile-navigation-wrap.active {
  visibility: visible;
  opacity: 1;
}
.mobile-navigation-wrap.active .close-mobile-menu-background {
  opacity: 1;
}
.mobile-navigation-wrap.active .mobile-menu-section {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.mobile-navigation-wrap .close-mobile-menu-background {
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 0.5s ease 0.2s;
  transition: all 0.5s ease 0.2s;
}
.mobile-navigation-wrap .mobile-menu-section {
  width: calc(100% - 50px);
  max-width: 400px;
  height: 100%;
  background: #FBF6EC;
  border-radius: 0 10px 10px 0;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.mobile-navigation-wrap .mobile-menu-section-scrollable-div {
  width: 100%;
  height: 100%;
  overflow: -moz-scrollbars-none;
  -ms-overflow-style: none;
  overflow-x: hidden;
  overflow-y: scroll;
}
.mobile-navigation-wrap .mobile-menu-section-scrollable-div::-webkit-scrollbar {
  display: none;
}
.mobile-navigation-wrap
  .mobile-menu-section-scrollable-div
  .mobile-menu-section-scrollable-div-inner {
  width: 100%;
  display: block;
}
.mobile-navigation-wrap .mobile-menu-section-top {
  padding: 14px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #e3e9ed;
}
.mobile-navigation-wrap .mobile-menu-section-middle {
  padding-top: 16px;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.mobile-navigation-wrap .close-mobile-menu-toggle {
  font-size: 10px;
  color: #8a939f;
  padding: 8px;
}
.account_mobile_menu_toggle {
  position: fixed;
  top: 0px;
  right: 41px;
  width: 46px;
  background: transparent;
  z-index: 104;
  padding: 0 16px;
  height: 64px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.account_mobile_menu_toggle i {
  font-size: 15px;
  color: #684E33;
  position: absolute;
  top: 50%;
  left: 50%;
  line-height: 1;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.account_mobile_menu_toggle.active i {
  font-size: 12px;
}
.account_mobile_menu_toggle.active i:before {
  content: "\E921";
}
@media (min-width: 768px) {
  .account_mobile_menu_toggle {
    display: none;
  }
}
.account_mobile_menu {
  position: fixed;
  left: 41px;
  top: 75px;
  background: #f6f6f6;
  border-radius: 0 0 4px 4px;
  z-index: 104;
  width: calc(100% - 82px);
  padding: 16px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.account_mobile_menu.active {
  visibility: visible;
  opacity: 1;
}
.account_mobile_menu li {
  margin-bottom: 8px;
}
.account_mobile_menu li:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .account_mobile_menu {
    display: none;
  }
}
.mobile_overlay_background {
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  position: fixed;
  top: -5px;
  left: -5px;
  z-index: 100;
  background: rgba(0, 0, 0, 0.6);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.mobile_overlay_background.active {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 768px) {
  .mobile_overlay_background {
    display: none;
  }
}
.account_mobile_menu_green_button,
.account_mobile_menu_green_button:hover {
  background: #96c950;
  border: 1px solid rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  border-radius: 50px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(82, 82, 82, 0.2);
}
.account_mobile_menu_green_button,
.account_mobile_menu_green_button:hover,
.account_mobile_menu_white_button,
.account_mobile_menu_white_button:hover {
  padding: 12px 16px;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  width: calc(100% - 32px);
  display: block;
  margin: 0 16px;
}
.account_mobile_menu_white_button,
.account_mobile_menu_white_button:hover {
  background: #fff;
  border: 1px solid #e3e9ed;
  border-radius: 50px;
  color: #525252;
}
.account_mobile_menu_button,
.account_mobile_menu_button:hover {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.05em;
  width: 100%;
  padding: 16px 22px;
  color: #8a939f;
}
.mobile_referals_button,
.mobile_referals_button:hover {
  padding: 22px 20px;
}
.mobile_referals_button .mobile_referals_button_text,
.mobile_referals_button:hover .mobile_referals_button_text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: #96c950;
}
form.mobile_logout_form {
  padding-top: 8px;
}
.mobile_home_button {
  padding: 8px;
  display: block;
  line-height: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  overflow: hidden;
}
.mobile_home_button i {
  font-size: 15px;
  color: #8a939f;
}
.mobile_close_submenu_button {
  padding: 8px 0;
  font-size: 15px;
  color: #8a939f;
  font-size: 10px;
  width: 0;
  overflow: hidden;
}
.mobile-menu-item {
  height: 48px;
}
.mobile-menu-item .mobile-menu-item-first-level-button {
  padding: 12px 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.mobile-menu-item .mobile-menu-item-first-level-button span {
  font-family: garage-gothic, sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: #2B1E0F;
  margin-right: 16px;
}
.mobile-menu-item .mobile-menu-item-first-level-button i {
  font-size: 13px;
  color: #525252;
}
.mobile-menu-item .mobile-menu-child {
  position: absolute;
  width: 100%;
  right: -100%;
  top: 0;
  visibility: hidden;
}
.mobile-menu-item .mobile-menu-child > a {
  padding: 8px 16px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: #000;
  display: block;
}
.mobile-menu-item .mobile-menu-child > .mobile-menu-child-title {
  padding: 16px 18px 30px;
}
.mobile-menu-item .mobile-menu-child > .mobile-menu-child-title > a {
  font-family: garage-gothic, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 134.5%;
  letter-spacing: -0.02em;
  color: #2B1E0F;
}
.mobile-menu-item
  .mobile-menu-child
  > .mobile-menu-child-title
  > a
  > .mobile-menu-child-subtitle {
  font-family: 'Barlow';
  color: #A16734;
  text-decoration: underline;
  position: absolute;
  left: 18px;
  top: 40px;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: -0.02em;
  line-height: 110%;
  margin-top:5px;
}
.mobile-menu-item.sub_menu_is_open .mobile-menu-child {
  visibility: visible;
}
.mobile-menu-item .mobile-sub-menu {
  position: relative;
}
.mobile-menu-item .mobile-sub-menu > a {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: #684E33;
  display: block;
  padding: 8px 34px 8px 16px;
}
.mobile-menu-item .mobile-sub-menu.mobile-sub-menu-has-dropdown:after {
  top: 8px;
  right: 14px;
  position: absolute;
  content: "\E915";
  font-family: icomoon !important;
  font-size: 12px;
}
.mobile-menu-item .mobile-sub-menu.mobile-sub-menu-has-dropdown.active:after {
  content: "\E914";
}
.mobile-menu-item .mobile-sub-menu.mobile-menu-child-option:after {
  top: 8px;
  right: 14px;
  position: absolute;
  content: "\E95C";
  font-family: icomoon !important;
  font-size: 12px;
}
.mobile-menu-item .mobile-sub-menu-dropdown {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  padding-bottom: 0;
}
.mobile-menu-item .mobile-sub-menu-dropdown.active {
  max-height: 900px;
  padding-bottom: 10px;
}
.mobile-menu-item .mobile-sub-menu-dropdown a {
  font-family: 'Barlow';
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: #A16734;
  padding: 12px 16px;
  display: block;
}
.mobile-menu-item
  .mobile-sub-menu-dropdown
  a.mobile-menu-item-small-underlined {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  line-height: 120%;
  letter-spacing: -0.02em;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}
.mobile-menu-item .new_item {
  color: #1e8e20;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  padding-left: 3px;
}
.mobile-navigation-wrap.sub_menu_is_open .mobile-menu-section-middle {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.mobile-navigation-wrap.sub_menu_is_open .mobile_home_button {
  width: 0;
  padding: 8px 0;
}
.mobile-navigation-wrap.sub_menu_is_open .mobile_close_submenu_button {
  width: 6px;
  padding: 8px;
}
.mobile-menu-section-top-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.mobile-menu-section-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid #e3e9ed;
  margin-top: 16px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.mobile-menu-section-bottom .lang_menu {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 14px 10px 22px;
}
.mobile-menu-section-bottom .lang_menu,
.mobile-menu-section-bottom .lang_menu .current_lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.mobile-menu-section-bottom .lang_menu .current_lang {
  margin-bottom: 0;
}
.mobile-menu-section-bottom .lang_menu .current_lang span {
  color: #525252;
  font-weight: 600;
  font-size: 16px;
}
.mobile-menu-section-bottom .lang_menu i {
  font-size: 10px;
  -webkit-filter: drop-shadow(0 1px 3px rgba(82, 82, 82, 0.2));
  filter: drop-shadow(0 1px 3px rgba(82, 82, 82, 0.2));
  margin-right: 10px;
}
.mobile-menu-section-bottom .lang_menu > span {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 150%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  letter-spacing: -0.02em;
  color: #525252;
}
.mobile-menu-section-bottom .lang_menu a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #1e8e20;
}
.change_lang_button {
  font-family: 'Barlow';
  color: #684E33;
  font-size: 16px;
  font-weight: 600;
}
.mobile-menu-section-bottom .lang_menu a p {
  padding: 10px;
  margin-bottom: 0;
}
.mobile-menu-section-bottom .menu-item a {
  padding: 10px 22px;
  display: block;
  width: 100%;
}
.mobile-menu-section-bottom .menu-item a i {
  font-size: 13px;
  color: #684E33;
  margin-right: 15px;
}
.mobile-menu-section-bottom .menu-item a span {
  font-family: 'Barlow';
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #684E33;
}
.app_supervegan #site_search input[type="text"],
.app_supervegan .account_mobile_menu,
.app_supervegan .account_mobile_menu_white_button,
.app_supervegan .account_mobile_menu_white_button:hover,
.app_supervegan .toolbar-dropdown,
.app_supervegan .topbar_2 {
  background: #000;
}
.app_supervegan .main-navigation-desktop .nav_item > a,
.app_supervegan .toolbar_2 .cart a.btn-success {
  color: #000;
}
.app_supervegan #site_search .icomoon-submit_arrow,
.app_supervegan .dropdown-product-item .dropdown-product-title:hover,
.app_supervegan .main-navigation-desktop .nav_item:hover > a,
.app_supervegan .mega_menu .mega_menu_arrow_before a:hover,
.app_supervegan .mega_menu .mega_menu_featured_images a:hover span,
.app_supervegan .mega_menu .mega_menu_left a:hover,
.app_supervegan .mega_menu .mega_menu_regular a:hover,
.app_supervegan .mega_menu .mega_menu_sqares a:hover,
.app_supervegan .toolbar_2 .account a i,
.app_supervegan .topbar_2 p.topbar_message i {
  color: #ffb020;
}

.app_supervegan .toolbar_2 .account a .icon-points-myaccount {
  background: url('/img/points-orange.svg') no-repeat center;
}

@media (min-width: 768px) {
  .app_supervegan .toolbar_2 .cart a i {
    color: #ffb020;
  }
}
.app_supervegan .btn-primary,
.app_supervegan .main-navigation-desktop,
.app_supervegan .toolbar_2 .cart a.btn-success {
  background: #ffb020;
}
.app_supervegan .mega_menu .mega_menu_arrow_before a:hover:before {
  border-top: 1px solid #ffb020;
  border-right: 1px solid #ffb020;
}
.app_supervegan .account_mobile_menu_toggle,
.app_supervegan .header_2,
.app_supervegan .main-navigation-desktop .nav_item:hover > a {
  background: #0b0b0b;
}
.app_supervegan .topbar_2 .topbar_2_lang_switch .topbar_2_location_text,
.app_supervegan .topbar_2 .topbar_2_menu a,
.app_supervegan .topbar_2 p.topbar_message {
  color: #9da9b9;
}
.app_supervegan #site_search input[type="text"] {
  color: #969696;
}
.app_supervegan #site_search .icomoon-search1 {
  color: #525252;
}
.app_supervegan .account_mobile_menu_button,
.app_supervegan .account_mobile_menu_button:hover,
.app_supervegan .account_mobile_menu_toggle i,
.app_supervegan .account_mobile_menu_white_button,
.app_supervegan .account_mobile_menu_white_button:hover,
.app_supervegan .dropdown-product-item .dropdown-product-title,
.app_supervegan .header_2 .mobile_toogle_buttons .header_2_mobile-search-toggle,
.app_supervegan .header_2 .mobile_toogle_buttons .mobile-menu-toggle,
.app_supervegan .mega_menu .mega_menu_arrow_before a,
.app_supervegan .mega_menu .mega_menu_left a,
.app_supervegan .mega_menu .mega_menu_regular .mega_menu_title,
.app_supervegan .mega_menu .mega_menu_regular a,
.app_supervegan .mega_menu .mega_menu_small_featured_image .mega_menu_title,
.app_supervegan .mega_menu .mega_menu_small_featured_image a span,
.app_supervegan .toolbar-dropdown,
.app_supervegan .toolbar-dropdown > li > a,
.app_supervegan .toolbar_2 .account a span,
.app_supervegan .toolbar_2 .cart a,
.app_supervegan .toolbar_2 .cart a span {
  color: #fff;
}
@media (max-width: 767px) {
  .app_supervegan .toolbar_2 .cart a i {
    color: #fff;
  }
}
.app_supervegan .toolbar_2 .cart a.btn-success:hover {
  background: #fff;
}
.app_supervegan .mega_menu .mega_menu_arrow_before a:before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.app_supervegan #site_search input[type="text"],
.app_supervegan .toolbar-dropdown {
  border: 1px solid hsla(0, 0%, 100%, 0.3);
}
.app_supervegan .header_2 {
  border-bottom: 1px solid #000;
}
.app_supervegan .mega_menu {
  background: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(rgba(0, 0, 0, 0.2)),
      to(rgba(0, 0, 0, 0.2))
    ),
    rgba(0, 0, 0, 0.98);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    rgba(0, 0, 0, 0.98);
}
@media (max-width: 767px) {
  .hide_for_product_page {
    top: -65px;
  }
}
.page-title {
  width: 100%;
  margin-bottom: 60px;
  padding: 19px 0;
  border-bottom: 1px solid hsla(0, 0%, 85%, 0.3);
  background-color: #fff;
}
.page-title > .container,
.page-title > .container-fluid {
  display: table;
}
.page-title .column {
  display: table-cell;
  vertical-align: middle;
}
.page-title .column:first-child {
  padding-right: 20px;
}
.page-title h1,
.page-title h2,
.page-title h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
}
@media (max-width: 576px) {
  .page-title {
    margin-bottom: 6px;
  }
}
.breadcrumbs {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: right;
}
.breadcrumbs > li {
  display: inline-block;
  margin-left: 5px;
  padding: 5px 0;
  color: #9da9b9;
  font-size: 14px;
  cursor: default;
  vertical-align: middle;
}
.breadcrumbs > li.separator {
  width: 3px;
  height: 3px;
  margin-top: 2px;
  padding: 0;
  border-radius: 50%;
  background-color: #9da9b9;
}
.breadcrumbs > li > a {
  -webkit-transition: color 0.25s;
  transition: color 0.25s;
  color: #2b2b2b;
  text-decoration: none;
}
.breadcrumbs > li > a:hover {
  color: #96c950;
}
@media (max-width: 768px) {
  .page-title > .container,
  .page-title > .container-fluid {
    display: block;
  }
  .page-title .column {
    display: block;
    width: 100%;
    text-align: center;
  }
  .page-title .column:first-child {
    padding-right: 0;
  }
  .breadcrumbs {
    padding-top: 10px;
    text-align: center;
  }
  .breadcrumbs > li {
    margin-left: 3px;
    margin-right: 3px;
  }
}
.offcanvas-wrapper {
  position: relative;
  /*min-height: 100vh;*/
  background-color: #FCFEFF;
  z-index: 10;
  width: 100%;
  overflow: hidden;
  margin-top: 48px;
}
.offcanvas-wrapper_blur {
  filter: blur(4px);
  /*pointer-events: none;*/
}
.offcanvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 290px;
  height: 100%;
  background-color: #2b2b2b;
  -webkit-box-shadow: inset -4px 0 17px 0 rgba(0, 0, 0, 0.35);
  box-shadow: inset -4px 0 17px 0 rgba(0, 0, 0, 0.35);
  visibility: hidden;
  z-index: 9020;
  overflow-y: auto;
}
.offcanvas-container.active {
  visibility: visible;
}
.offcanvas-header {
  padding: 28px 20px;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.12);
}
.offcanvas-header .offcanvas-title {
  margin-bottom: 0;
  color: hsla(0, 0%, 100%, 0.5);
  font-size: 16px;
  font-weight: 500;
}
.account-link {
  display: block;
  padding: 28px 20px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.12);
  background-color: #232323;
  color: #fff !important;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}
.account-link > span {
  font-weight: 400;
}
.account-link > i {
  display: inline-block;
  margin-top: -2px;
  margin-right: 8px;
  vertical-align: middle;
}
.account-link:hover {
  background-color: #2e2e2e;
}
.site-backdrop {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  content: "";
  opacity: 0;
  z-index: 9980;
  position: fixed;
  -webkit-transition: opacity 0.35s, visibility 0.35s;
  transition: opacity 0.35s, visibility 0.35s;
  cursor: pointer;
  visibility: hidden;
}
.no-csstransforms3d .navbar,
.no-csstransforms3d .offcanvas-wrapper,
.no-csstransforms3d .topbar {
  -webkit-transition: left 0.4s ease-in-out;
  transition: left 0.4s ease-in-out;
}
.no-csstransforms3d .site-backdrop {
  -webkit-transition: left 0.4s ease-in-out, opacity 0.35s, visibility 0.35s;
  transition: left 0.4s ease-in-out, opacity 0.35s, visibility 0.35s;
}
.no-csstransforms3d .offcanvas-open .navbar,
.no-csstransforms3d .offcanvas-open .offcanvas-wrapper,
.no-csstransforms3d .offcanvas-open .site-backdrop,
.no-csstransforms3d .offcanvas-open .topbar {
  left: 290px;
}
.no-csstransforms3d .offcanvas-open .site-backdrop {
  opacity: 0.28;
  visibility: visible;
}
.csstransforms3d .navbar,
.csstransforms3d .offcanvas-wrapper,
.csstransforms3d .topbar {
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}
.csstransforms3d .site-backdrop {
  -webkit-transition: -webkit-transform 0.4s ease-in-out, opacity 0.35s,
    visibility 0.35s;
  -webkit-transition: opacity 0.35s, visibility 0.35s,
    -webkit-transform 0.4s ease-in-out;
  transition: opacity 0.35s, visibility 0.35s,
    -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, opacity 0.35s, visibility 0.35s;
  transition: transform 0.4s ease-in-out, opacity 0.35s, visibility 0.35s,
    -webkit-transform 0.4s ease-in-out;
}
.csstransforms3d .offcanvas-open .navbar,
.csstransforms3d .offcanvas-open .offcanvas-wrapper,
.csstransforms3d .offcanvas-open .site-backdrop,
.csstransforms3d .offcanvas-open .topbar {
  -webkit-transform: translate3d(290px, 0, 0);
  transform: translate3d(290px, 0, 0);
}
.csstransforms3d .offcanvas-open .site-backdrop {
  opacity: 0.22;
  visibility: visible;
}
.site-footer {
  padding-top: 70px;
  padding-bottom: 20px;
  background-color: #B98E58;
  position: relative;
}
@media (max-width: 768px) {
  .site-footer {
    padding-top: 48px;
  }
}
.footer-copyright {
  margin: 0;
  /*text-align: center;*/
  padding-top: 10px;
  padding-bottom: 24px;
  color: #fcfeff;
  font-size: 14px;
  font-weight: 400;
}
.footer-copyright > a {
  font-family: 'Barlow';
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  color: #FBF6EC;
  opacity: 0.7;
  -webkit-transition: color 0.25s;
  transition: color 0.25s;
  text-decoration: none;
}
.footer-copyright > a:hover {
  color: #1e8e20;
}
.app_supervegan .supervegan_footer {
  background: #eee url(/img/supervegan/footer_bg.png) no-repeat 50% / cover;
  padding-bottom: 160px;
}
@media (min-width: 992px) {
  .app_supervegan .supervegan_footer {
    padding-top: 80px;
  }
}
@media (max-width: 768px) {
  .app_supervegan .supervegan_footer {
    padding-bottom: 95px;
  }
}
@media (min-width: 768px) {
  .app_supervegan .scroll-to-top-btn {
    display: none;
  }
}
.app_supervegan .scroll-to-top-btn.visible {
  bottom: 70px;
}
.app_supervegan .terms_and_privacy_link {
  max-width: 204px;
  font-size: 18px;
  line-height: 1.44;
  letter-spacing: -0.01em;
  color: #7e7e80;
}
@media (max-width: 991px) {
  .app_supervegan .terms_and_privacy_link {
    font-size: 17px;
    max-width: 292px;
    width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
.app_supervegan .terms_and_privacy_link a {
  text-decoration: underline;
  color: #7e7e80;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.app_supervegan .terms_and_privacy_link a:hover {
  color: #ffb520;
}
.app_supervegan .footer_logo {
  width: 57px;
  position: relative;
  left: -5px;
}
@media (max-width: 991px) {
  .app_supervegan .footer_logo {
    width: 70px;
    display: block;
    margin: auto;
  }
}
.app_supervegan .footer_menu_title {
  font-size: 21px;
}
@media (max-width: 991px) {
  .app_supervegan .footer_menu_title {
    width: 100%;
    max-width: 292px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
  }
}
.app_supervegan .footer_menu {
  padding: 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  .app_supervegan .footer_menu {
    max-height: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    max-width: 292px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
  .app_supervegan .footer_menu.expanded {
    max-height: 999px;
    padding: 20px 0;
  }
}
.app_supervegan .footer_menu li {
  list-style: none;
  margin-bottom: 20px;
}
.app_supervegan .footer_menu li a {
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.app_supervegan .footer_menu li a:hover {
  color: #ffb520;
}
.app_supervegan .supervegan_newsletter_email_field {
  padding: 0 15px;
  background: transparent;
  border: 2px solid #525252;
  border-radius: 100px;
  font-size: 19px;
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  font-style: normal;
  height: 40px;
  line-height: 40px;
  color: hsla(0, 0%, 100%, 0.5);
  margin-right: 10px;
}
@media (max-width: 991px) {
  .app_supervegan .supervegan_newsletter_email_field {
    margin-right: 0;
    margin-bottom: 8px;
    width: 100%;
  }
}
.app_supervegan .newsletter-submit {
  background: #f48b24;
  border-radius: 100px;
  color: #fff;
  font-family: futura-pt, sans-serif;
  font-weight: 600;
  font-style: normal;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding: 0 32px;
  height: 40px;
  line-height: 40px;
  border: 0;
  font-size: 19px;
  cursor: pointer;
}
.app_supervegan .newsletter-submit:hover {
  background: #fff;
  color: #f48b24;
}
@media (max-width: 991px) {
  .app_supervegan .newsletter-submit {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .app_supervegan .footer_social_menu {
    text-align: center;
  }
}
.app_supervegan .footer_social_menu a {
  font-size: 18px;
  color: #c7c7c7;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  margin-right: 16px;
}
.app_supervegan .footer_social_menu a:last-child {
  margin-right: 0;
}
.app_supervegan .footer_social_menu a:hover {
  color: #ffb520;
}
@media (max-width: 991px) {
  .app_supervegan .footer_social_menu a {
    display: inline-block;
  }
}
.app_supervegan .footer_bottom_section {
  border-top: 2px solid #525252;
}
@media (max-width: 991px) {
  .app_supervegan .footer_bottom_section {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.app_supervegan .footer_bottom_section .footer_bottom_text {
  font-size: 22px;
}
@media (min-width: 992px) {
  .app_supervegan .footer_bottom_section .footer_bottom_text {
    margin-right: 80px;
  }
}
@media (max-width: 991px) {
  .app_supervegan .footer_bottom_section .footer_bottom_text {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
}
.app_supervegan .chain_logo_wrap i {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.app_supervegan .chain_logo_wrap.chain_logo_wrap_supervegan i {
  font-size: 42px;
  color: #d3d3d3;
  margin-right: 32px;
  bottom: -5px;
  position: relative;
}
.app_supervegan .chain_logo_wrap.chain_logo_wrap_supervegan:hover i {
  color: #fcd404;
}
.app_supervegan .chain_logo_wrap.chain_logo_wrap_iswari i {
  font-size: 20px;
  color: #8f9090;
}
.app_supervegan .chain_logo_wrap.chain_logo_wrap_iswari:hover i {
  color: #96c950;
}
@media (max-width: 991px) {
  .app_supervegan .newsletter_form_inner_wrap {
    width: 100%;
    max-width: 298px;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.user-info-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: -1px;
  padding-top: 90px;
  padding-bottom: 20px;
  border: 1px solid #e1e7ec;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  overflow: hidden;
  background: #ffffff;
}
.user-info-wrapper .user-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background-position: 50%;
  background-color: #fcfeff;
  background-repeat: no-repeat;
  background-size: cover;

  display: flex;
  align-items: center;
  justify-content: center;
}
.user-info-wrapper .user-cover .user-cover-title {
  font-family: garage-gothic, sans-serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 100%;
  color: #FBF6EC;
  text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  margin: 0;
}

.user-info-wrapper .user-cover .tooltip .tooltip-inner {
  width: 230px;
  max-width: 100%;
  padding: 10px 15px;
}
.user-info-wrapper .info-label {
  display: block;
  position: absolute;
  top: 18px;
  right: 18px;
  height: 26px;
  padding: 0 12px;
  border-radius: 13px;
  background-color: #fff;
  color: #525252;
  font-size: 12px;
  line-height: 26px;
  -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.18);
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.18);
  cursor: pointer;
}
.user-info-wrapper .info-label > i {
  display: inline-block;
  margin-right: 3px;
  font-size: 1.2em;
  vertical-align: middle;
}
.user-info-wrapper .user-info {
  display: table;
  position: relative;
  width: 100%;
  padding: 0 18px;
  z-index: 5;
}
.user-info-wrapper .user-info .user-avatar,
.user-info-wrapper .user-info .user-data {
  display: table-cell;
  vertical-align: top;
}
.user-info-wrapper .user-info .user-avatar {
  position: relative;
  width: 115px;
}
.user-info-wrapper .user-info .user-avatar > img {
  display: block;
  width: 100%;
  border: 5px solid #fff;
  border-radius: 50%;
}
.user-info-wrapper .user-info .user-avatar .edit-avatar {
  display: block;
  position: absolute;
  top: -2px;
  right: 2px;
  width: 36px;
  height: 36px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  border-radius: 50%;
  background-color: #fff;
  color: #525252;
  line-height: 34px;
  -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  opacity: 0;
  text-align: center;
  text-decoration: none;
}
.user-info-wrapper .user-info .user-avatar .edit-avatar:before {
  font-family: feather;
  font-size: 17px;
  content: "\E058";
}
.user-info-wrapper .user-info .user-avatar:hover .edit-avatar {
  opacity: 1;
}
.user-info-wrapper .user-info .user-data {
  padding-top: 48px;
  padding-left: 12px;
}
.user-info-wrapper .user-info .user-data h4 {
  margin-bottom: 2px;
  font-family: garage-gothic, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.01em;
  color: #2B1E0F;
}
.user-info-wrapper .user-info .user-data span {
  font-family: 'Barlow';
  display: block;
  color: #B98E58;
  font-size: 14px;
  font-weight: 500;
}
.user-info-wrapper + .list-group .list-group-item:first-child {
  border-radius: 0;
}
#delete-account-form .form-group {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#delete-account-form .form-group h4 {
  margin: 5px 10px 10px 0;
}
.shop_container {
  width: 100%;
  display: block;
  margin: 0;
}
@media (min-width: 992px) {
  .shop_container {
    padding: 31px 56px 0 71px;
  }
}
.shop_body {
  margin: 0;
  padding: 0;
}
@media (min-width: 992px) {
  .shop_body {
    padding-left: 81px;
  }
}
.product-card {
  display: block;
  position: relative;
  min-height: 425px;
  width: 100%;
  height: 100%;
  padding: 18px;
  border: 1px solid #e1e7ec;
  border-radius: 7px;
  background-color: #fff;
}
.product-card .product-thumb {
  display: block;
  width: 100%;
  margin-bottom: 35px;
}
.product-card .product-thumb > img {
  display: block;
  height: auto;
  margin: auto;
}
.product-card .product-title {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
.product-card .product-title > a {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  color: #2b2b2b;
  text-decoration: none;
}
.product-card .product-title > a:hover {
  color: #96c950;
}
.product-card .product-price {
  margin-bottom: 10px;
  color: #525252;
  min-height: 20px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.product-card .product-price > del {
  /*margin-right: 5px;*/
  color: #9da9b9;
}
.product-card .product-buttons {
  padding: 12px 0 8px;
  text-align: center;
}
.product-card .product-buttons > .btn {
  margin: 0 4px;
}
.product-card .product-buttons > .btn.btn-wishlist {
  width: 36px;
  padding: 0;
  padding-left: 1px;
  border-radius: 50%;
}
.product-card .product-buttons > .btn.btn-wishlist > i {
  font-size: 1.2em;
}
.product-card .product-buttons > .btn.btn-wishlist.active {
  color: #d04137;
}
.product-card .product-badge {
  top: 57%;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  width: 88%;
  position: absolute;
  border: 2px dashed #ec1104;
  text-align: center;
  color: #ec1104;
  margin-bottom: 10px;
}
.product-card .rating-stars {
  position: absolute;
  top: 15px;
  right: 18px;
}
.product-card.product-list {
  margin-bottom: 30px;
}
@media (min-width: 576px) {
  .product-card.product-list {
    display: table;
    width: 100%;
    padding: 0;
  }
  .product-card.product-list .product-info,
  .product-card.product-list .product-thumb {
    display: table-cell;
    vertical-align: middle;
  }
  .product-card.product-list .product-thumb {
    position: relative;
    width: 270px;
    padding: 20px 18px;
    border-right: 1px solid #e1e7ec;
  }
  .product-card.product-list .product-info {
    padding: 20px 22px;
  }
  .product-card.product-list .product-info .product-buttons,
  .product-card.product-list .product-info .product-price,
  .product-card.product-list .product-info .product-title {
    text-align: left;
  }
  .product-card.product-list .product-info .product-buttons {
    padding-top: 20px;
    padding-bottom: 0;
    border-top: 1px solid #e1e7ec;
  }
  .product-card.product-list .product-info .product-buttons > .btn {
    margin: 0;
    margin-right: 8px;
  }
  .product-card.product-list .product-title {
    font-size: 16px;
  }
}
@-webkit-keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }
  to {
    background-position: 468px 0;
  }
}
@-webkit-keyframes prideShimmer {
  0% {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}
.product-card-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0.500862px 2.87996px rgba(0, 0, 0, 0.05),
    0 4px 23px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.500862px 2.87996px rgba(0, 0, 0, 0.05),
    0 4px 23px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.product-card-2 .product-thumb {
  display: block;
  width: 100%;
  background: #e0e0e0;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#f4f4f4),
    color-stop(20%, #e3e3e3),
    color-stop(40%, #e6e4e4),
    to(#f4f4f4)
  );
  background: linear-gradient(
    90deg,
    #f4f4f4,
    #e3e3e3 20%,
    #e6e4e4 40%,
    #f4f4f4
  );
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: placeHolderShimmer;
  animation-name: placeHolderShimmer;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  padding-bottom: 90.6666666667%;
  position: relative;
}
.product-card-2 .product-thumb.loaded {
  background: #f8f8f8 !important;
}
.product-card-2 .product-thumb > img {
  display: block;
  width: 85%;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  mix-blend-mode: darken;
}
.product-card-2 .product-thumb > img.loaded {
  opacity: 1;
  visibility: visible;
}
.product-card-2:hover {
  border: 2px solid #96c950;
  -webkit-filter: drop-shadow(0 4px 23px rgba(0, 0, 0, 0.1)),
    drop-shadow(0 0.500862px 2.87996px rgba(0, 0, 0, 0.05));
  filter: drop-shadow(0 4px 23px rgba(0, 0, 0, 0.1)),
    drop-shadow(0 0.500862px 2.87996px rgba(0, 0, 0, 0.05));
}
.product-card-2:hover .product-thumb img {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}
.product-card-2 h3.product-title {
  text-align: left;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-top: 4px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #2B1E0F;
}
@media (max-width: 575px) {
  .product-card-2 h3.product-title {
    margin-bottom: 9px;
  }
}
@media (max-width: 1199px) {
  .product-card-2 h3.product-title {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .product-card-2 h3.product-title {
    font-size: 13px;
  }
}
.product-card-2 .product-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: #2B1E0F;
}
@media (max-width: 575px) {
  .product-card-2 .product-price {
    font-size: 14px;
  }
}
/*.product-card-2 .product-price .product-price-label,
.product-card-2 */

.product-price del {
  font-weight: 400;
}
.product-card-2 .product-buttons {
  padding: 12px 0 8px;
  text-align: center;
}
.product-card-2 .product-buttons > .btn {
  margin: 0 4px;
}
.product-card-2 .product-buttons > .btn.btn-wishlist {
  width: 36px;
  padding: 0;
  padding-left: 1px;
  border-radius: 50%;
}
.product-card-2 .product-buttons > .btn.btn-wishlist > i {
  font-size: 1.2em;
}
.product-card-2 .product-buttons > .btn.btn-wishlist.active {
  color: #d04137;
}
.product-card-2 .product-badge {
  width: 100%;
  border: 1px solid #eee;
  border-radius: 3px;
  background: #fcfcfc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 7px 15px;
}
@media (max-width: 1199px) {
  .product-card-2 .product-badge {
    font-size: 8px;
  }
}
.product-card-2 .product-badge .product-promo {
  text-align: left;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #2A941A;
}
@media (max-width: 1199px) {
  .product-card-2 .product-badge .product-promo {
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .product-card-2 .product-badge .product-promo {
    font-size: 10px;
  }
}
.product-card-2 .product-badge i {
  font-size: 14px;
  color: #2A941A;
  margin-right: 8px;
}
@media (max-width: 1199px) {
  .product-card-2 .product-badge i {
    font-size: 12px;
    font-size: 10px;
    margin-right: 4px;
  }
}
.product-card-2 .product-badge.popular .product-promo,
.product-card-2 .product-badge.popular i {
  color: #97191F;
}
.product-card-2 .product-badge.online_exclusive .product-promo,
.product-card-2 .product-badge.online_exclusive i {
  color: #389C23;
  font-family: 'Barlow';
  font-weight: 600;
}
.product-card-2 .product-badge.new {
  background: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(rgba(196, 141, 50, 0.05)),
      to(rgba(196, 141, 50, 0.05))
    ),
    #fcfcfc;
  background: linear-gradient(0deg, rgba(196, 141, 50, 0.05), rgba(196, 141, 50, 0.05)), #FCFCFC;
  border: 1px solid #eee;
}
.product-card-2 .product-badge.new .product-promo,
.product-card-2 .product-badge.new i {
  color: #B98E58;
}
.product-card-2 .product-badge.popular {
  background-color: #F7F4F4;
}
.product-card-2 .product-badge.online_exclusive {
  background-color: #F3F7F2;
}
.product-card-2 .recipe-badge {
  top: 67%;
}
@media (max-width: 576px) {
  .product-card-2 > .product-badge {
    top: 65%;
  }
}
.product-card-2 .rating-stars {
  position: absolute;
  top: 15px;
  right: 18px;
}
.product-card-2.product-list {
  margin-bottom: 30px;
}
@media (min-width: 576px) {
  .product-card-2.product-list {
    display: table;
    width: 100%;
    padding: 0;
  }
  .product-card-2.product-list .product-info,
  .product-card-2.product-list .product-thumb {
    display: table-cell;
    vertical-align: middle;
  }
  .product-card-2.product-list .product-thumb {
    position: relative;
    width: 270px;
    padding: 20px 18px;
    border-right: 1px solid #e1e7ec;
  }
  .product-card-2.product-list .product-info {
    padding: 20px 22px;
  }
  .product-card-2.product-list .product-info .product-buttons,
  .product-card-2.product-list .product-info .product-price,
  .product-card-2.product-list .product-info .product-title {
    text-align: left;
  }
  .product-card-2.product-list .product-info .product-buttons {
    padding-top: 20px;
    padding-bottom: 0;
    border-top: 1px solid #e1e7ec;
  }
  .product-card-2.product-list .product-info .product-buttons > .btn {
    margin: 0;
    margin-right: 8px;
  }
  .product-card-2.product-list .product-title {
    font-size: 16px;
  }
}
.product-card-2 .product-card-content-wrap {
  padding: 24px;
  padding-bottom: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 1199px) {
  .product-card-2 .product-card-content-wrap {
    padding: 16px;
  }
}
@media (max-width: 991px) {
  .product-card-2 .product-card-content-wrap {
    padding: 12px;
  }
}
.product-card-2 .product-weight {
  color: #AFA99D;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: -0.03em;
}
@media (max-width: 1199px) {
  .product-card-2 .product-weight {
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .product-card-2 .product-weight {
    font-size: 10px;
    margin-bottom: 2px;
  }
}
.product-card-2 .rating_stars {
  position: relative;
  margin-bottom: 16px;
}
@media (max-width: 757px) {
  .product-card-2 .rating_stars {
    margin-bottom: 5px;
  }
}
.product-card-2 .rating_stars i:last-child {
  margin-right: 0;
}
.product-card-2 .rating_stars .rating_base i {
  color: #feaf00;
}
.product-card-2 .rating_stars .rating_filled {
  position: absolute;
  top: 0;
  overflow: hidden;
}
.product-card-2 .rating_stars .rating_filled i {
  color: #feaf00;
}
.product-card-2 .rating_stars.rating_stars_size_1 {
  width: 94px;
  height: 19px;
}
.product-card-2 .rating_stars.rating_stars_size_1 i {
  margin-right: 1.9px;
  font-size: 13px;
}
.product-card-2
  .rating_stars.rating_stars_size_1
  .rating_filled
  .ratting_filled_inner_wrap {
  width: 94px;
}
.product-card-2 .rating_stars.rating_stars_size_2 {
  width: 117px;
  height: 20px;
}
@media (max-width: 575px) {
  .product-card-2 .rating_stars.rating_stars_size_2 {
    width: 90px;
    height: 18px;
  }
}
.product-card-2 .rating_stars.rating_stars_size_2 i {
  margin-right: 2px;
  font-size: 18px;
}
.product-card-2 .rating_stars.rating_stars_size_2 i:last-child {
  margin-right: 0;
}
@media (max-width: 575px) {
  .product-card-2 .rating_stars.rating_stars_size_2 i {
    font-size: 11px;
    margin-right: 0;
    line-height: 1;
  }
}
.product-card-2
  .rating_stars.rating_stars_size_2
  .rating_filled
  .ratting_filled_inner_wrap {
  width: 117px;
}
@media (max-width: 575px) {
  .product-card-2
    .rating_stars.rating_stars_size_2
    .rating_filled
    .ratting_filled_inner_wrap {
    width: 90px;
  }
}
.product-badge {
  background-color: #ff000012;
  border: 2px dashed #ec1104;
  text-align: center;
  color: #ec1104;
}
.product-promo {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
@media (max-width: 576px) {
  > .product-promo {
    font-size: 18px;
  }
}
.rating-stars,
.rating-stars > i {
  display: inline-block;
}
.rating-stars > i {
  margin-right: 2px;
  color: #cad0d9;
  font-size: 14px;
}
.rating-stars > i.filled {
  color: #e6731d;
}
.rating-stars > i:last-child {
  margin-right: 0;
}
.shop-toolbar {
  display: table;
  width: 100%;
}
.shop-toolbar > .column {
  display: table-cell;
  vertical-align: middle;
}
.shop-toolbar > .column:last-child {
  text-align: right;
}
@media (max-width: 576px) {
  .shop-toolbar > .column {
    display: block;
    width: 100%;
    text-align: center;
  }
  .shop-toolbar > .column:last-child {
    padding-top: 24px;
    text-align: center;
  }
}
.shop-sorting .form-control,
.shop-sorting label,
.shop-sorting span {
  display: inline-block;
  vertical-align: middle;
}
.shop-sorting span {
  padding: 8px 0;
}
.shop-sorting label {
  margin: 0;
  padding: 8px 5px 8px 0;
  color: #9da9b9;
  font-size: 14px;
  font-weight: 400;
}
.shop-sorting .form-control {
  width: 100%;
  max-width: 186px;
  margin-right: 10px;
}
@media (max-width: 576px) {
  .shop-sorting .form-control,
  .shop-sorting label {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-top: 0;
    padding-right: 0;
  }
}
.shop-view {
  display: inline-block;
}
.shop-view:after {
  display: block;
  clear: both;
  content: "";
}
.shop-view > a {
  display: block;
  width: 43px;
  height: 43px;
  margin-left: 10px;
  padding: 13px;
  float: left;
  -webkit-transition: background-color 0.35s;
  transition: background-color 0.35s;
  border: 1px solid #e1e7ec;
  border-radius: 50%;
  background-color: #fff;
}
.shop-view > a span {
  display: block;
  position: relative;
  width: 3px;
  height: 3px;
  margin-bottom: 3px;
  background-color: #525252;
}
.shop-view > a span:after,
.shop-view > a span:before {
  display: block;
  position: absolute;
  background-color: #525252;
}
.shop-view > a span:last-child {
  margin-bottom: 0;
}
.shop-view > a:hover {
  background-color: #fcfeff;
}
.shop-view > a.active {
  border-color: #96c950;
  background-color: #96c950;
  cursor: default;
  pointer-events: none;
}
.shop-view > a.active span,
.shop-view > a.active span:after,
.shop-view > a.active span:before {
  background-color: #fff;
}
.shop-view > a.grid-view span:after,
.shop-view > a.grid-view span:before {
  top: 0;
  width: 3px;
  height: 3px;
  content: "";
}
.shop-view > a.grid-view span:before {
  left: 6px;
}
.shop-view > a.grid-view span:after {
  left: 12px;
}
.shop-view > a.list-view span:before {
  top: 1px;
  left: 6px;
  width: 9px;
  height: 1px;
  content: "";
}
.shopping-cart,
.wishlist-table {
  margin-bottom: 20px;
}
.shopping-cart .table,
.wishlist-table .table {
  margin-bottom: 0;
}
.shopping-cart .btn,
.wishlist-table .btn {
  margin: 0;
}
.shopping-cart > table > tbody > tr > td,
.shopping-cart > table > tbody > tr > th,
.shopping-cart > table > thead > tr > td,
.shopping-cart > table > thead > tr > th,
.wishlist-table > table > tbody > tr > td,
.wishlist-table > table > tbody > tr > th,
.wishlist-table > table > thead > tr > td,
.wishlist-table > table > thead > tr > th {
  vertical-align: middle !important;
}
.shopping-cart > table thead th,
.wishlist-table > table thead th {
  padding-top: 17px;
  padding-bottom: 17px;
  border-width: 1px;
}
.shopping-cart .remove-from-cart,
.wishlist-table .remove-from-cart {
  display: inline-block;
  color: #d04137;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
}
.shopping-cart .count-input,
.wishlist-table .count-input {
  display: inline-block;
  width: 100%;
  width: 86px;
}
.shopping-cart .product-item,
.wishlist-table .product-item {
  display: table;
  width: 100%;
  min-width: 150px;
  margin-top: 5px;
  margin-bottom: 3px;
}
.shopping-cart .product-item .product-info,
.shopping-cart .product-item .product-thumb,
.wishlist-table .product-item .product-info,
.wishlist-table .product-item .product-thumb {
  display: table-cell;
  vertical-align: top;
}
.shopping-cart .product-item .product-thumb,
.wishlist-table .product-item .product-thumb {
  width: 130px;
  padding-right: 20px;
}
.shopping-cart .product-item .product-thumb > img,
.wishlist-table .product-item .product-thumb > img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 860px) {
  .shopping-cart .product-item .product-thumb,
  .wishlist-table .product-item .product-thumb {
    display: none;
  }
}
.shopping-cart .product-item .product-info span,
.wishlist-table .product-item .product-info span {
  display: block;
  font-size: 13px;
}
.shopping-cart .product-item .product-info span > em,
.wishlist-table .product-item .product-info span > em {
  font-weight: 500;
  font-style: normal;
}
.shopping-cart .product-item .product-title,
.wishlist-table .product-item .product-title {
  margin-bottom: 6px;
  margin-top: 20px;
  padding-top: 5px;
  font-size: 16px;
  font-weight: 500;
}
.shopping-cart .product-item .product-title > a,
.wishlist-table .product-item .product-title > a {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  color: #2b2b2b;
  line-height: 1.5;
  text-decoration: none;
}
.shopping-cart .product-item .product-title > a:hover,
.wishlist-table .product-item .product-title > a:hover {
  color: #96c950;
}
.shopping-cart .product-item .product-title small,
.wishlist-table .product-item .product-title small {
  display: inline;
  margin-left: 6px;
  font-weight: 500;
}
.wishlist-table .product-item .product-thumb {
  display: table-cell !important;
}
@media screen and (max-width: 576px) {
  .wishlist-table .product-item .product-thumb {
    display: none !important;
  }
}
.shopping-cart-footer {
  display: table;
  width: 100%;
  padding: 10px 0;
  border-top: 1px solid #e1e7ec;
}
.shopping-cart-footer > .column {
  display: table-cell;
  padding: 5px 0;
  vertical-align: middle;
}
.shopping-cart-footer > .column:last-child {
  text-align: right;
}
.shopping-cart-footer > .column:last-child .btn {
  margin-right: 0;
  margin-left: 15px;
}
@media (max-width: 768px) {
  .shopping-cart-footer > .column {
    display: block;
    width: 100%;
  }
  .shopping-cart-footer > .column:last-child {
    text-align: center;
  }
  .shopping-cart-footer > .column .btn {
    width: 100%;
    margin: 12px 0 !important;
  }
}
#suggested_products .product-title {
  font-size: 16px;
}
@media (max-width: 1199px) {
  #suggested_products .product-title {
    font-size: 14px;
  }
}
.checkout-steps {
  margin-bottom: 40px;
}
.checkout-steps:after {
  display: block;
  clear: both;
  content: "";
}
.checkout-steps > a {
  display: block;
  position: relative;
  width: 25%;
  height: 55px;
  float: right;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  border-top: 1px solid #e1e7ec;
  border-bottom: 1px solid #e1e7ec;
  background-color: #fff;
  color: #2b2b2b;
  font-size: 14px;
  font-weight: 500;
  line-height: 53px;
  text-decoration: none;
  text-align: center;
}
.checkout-steps > a > .angle {
  display: block;
  position: absolute;
  top: 0;
  right: -13px;
  width: 27px;
  height: 53px;
  background-color: #fff;
}
.checkout-steps > a > .angle:after,
.checkout-steps > a > .angle:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border: solid transparent;
  content: "";
  pointer-events: none;
}
.checkout-steps > a > .angle:after {
  border-width: 26px;
  border-color: transparent;
  border-left-color: #fff;
}
.checkout-steps > a > .angle:before {
  margin-top: -1px;
  border-width: 27px;
  border-color: transparent;
  border-left-color: #d8e0e6;
}
.checkout-steps > a:hover {
  color: #96c950;
}
.checkout-steps > a.active {
  background-color: #1e8e20;
  color: #fff;
  cursor: default;
  pointer-events: none;
}
.checkout-steps > a.active > .angle:after {
  border-left-color: #1e8e20;
}
.checkout-steps > a.active + a > .angle {
  background-color: #1e8e20;
}
.checkout-steps > a.completed > .step-indicator {
  display: inline-block;
  margin-top: -5px;
  margin-right: 7px;
  border-radius: 50%;
  color: #1e8e20;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
}
.checkout-steps > a.completed:hover {
  color: #2b2b2b;
}
.checkout-steps > a:first-child {
  border-right: 1px solid #e1e7ec;
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
}
.checkout-steps > a:last-child {
  border-left: 1px solid #e1e7ec;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
}
@media (max-width: 576px) {
  .header_banner.category {
    padding-left: 16px;
    background-color:#FFFFFF !important;
  }
  .header_banner.category .title {
    font-family: garage-gothic, sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    color: #2B1E0F;
  }

  .checkout-steps > a {
    width: 100%;
    margin-bottom: 10px;
    float: none;
    border: 1px solid #e1e7ec;
    border-radius: 7px;
  }
  .checkout-steps > a > .angle {
    display: none;
  }
}
.checkout-footer {
  display: table;
  width: 100%;
  margin-top: 28px;
  padding-top: 5px;
  padding-bottom: 5px;
  border: 1px solid #e1e7ec;
  border-radius: 7px;
  table-layout: fixed;
}
.checkout-footer > .column {
  display: table-cell;
  padding: 10px 15px;
  vertical-align: middle;
}
.checkout-footer > .column:last-child {
  text-align: right;
}
.checkout-footer > .column:first-child {
  text-align: left;
}
.checkout-footer .btn {
  margin: 0;
}
.sp-buttons .btn {
  margin: 0;
  margin-left: 8px;
}
.sp-buttons .btn.btn-wishlist {
  width: 36px;
  padding: 0;
  padding-left: 1px;
  border-radius: 50%;
}
.sp-buttons .btn.btn-wishlist > i {
  font-size: 1.2em;
}
.sp-buttons .btn.btn-wishlist.active {
  color: #d04137;
}
.product-gallery {
  position: relative;
  padding: 22px 15px 15px;
  border: 1px solid #e1e7ec;
  border-radius: 7px;
}
.product-gallery .gallery-item {
  position: absolute;
  top: 15px;
  right: 15px;
  margin-bottom: 0;
}
.product-gallery .gallery-item > a {
  display: none;
  width: 44px;
  height: 44px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  border: 1px solid #e1e7ec;
  border-radius: 50%;
  text-decoration: none;
}
.product-gallery .gallery-item > a:before {
  display: none !important;
}
.product-gallery .gallery-item > a:after {
  position: static;
  top: 0;
  margin-top: 0;
  margin-left: 1px;
  -webkit-transform: none;
  transform: none;
  -webkit-transition: none;
  transition: none;
  color: #525252;
  font-size: 22px;
  line-height: 40px;
  content: "\E037";
  opacity: 1;
}
.product-gallery .gallery-item > a:hover {
  background-color: #fcfeff;
}
.product-gallery .gallery-item.active > a {
  display: block;
}
.product-gallery .product-badge {
  z-index: 101;
}
.product-gallery .product-thumbnails {
  display: block;
  margin: 0;
  margin-top: 24px;
  padding: 0;
  list-style: none;
  text-align: center;
}
.product-gallery .product-thumbnails > li {
  display: inline-block;
  margin: 0 3px 10px;
}
.product-gallery .product-thumbnails > li > a {
  display: block;
  width: 94px;
  -webkit-transition: border-color 0.25s;
  transition: border-color 0.25s;
  border: 1px solid #e1e7ec;
  border-radius: 5px;
  overflow: hidden;
}
.product-gallery .product-thumbnails > li.active > a {
  border-color: #96c950;
  cursor: default;
}
.filters_heading {
  padding: 0 24px;
  background: #F4F3F1;
  border-radius: 4px;
  overflow: hidden;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  max-height: 0;
}
.filters_heading.active {
  padding: 24px 24px 16px;
  max-height: 9999px;
}
@media (max-width: 1199px) {
  .filters_heading {
    padding: 0 16px;
  }
  .filters_heading.active {
    padding: 16px 16px 8px;
  }
}
@media (max-width: 991px) {
  .filters_heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 0 24px;
    background: #fafafa;
    border-radius: 8px;
  }
  .filters_heading.active {
    padding: 16px 24px 8px;
  }
}
@media (max-width: 991px) {
  .filters_heading hr {
    display: none;
  }
}
.filters_heading_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .filters_heading_top {
    margin-bottom: 8px;
  }
}
@media (max-width: 991px) {
  .filters_heading_top {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.filters_heading_top p {
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #525252;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  .filters_heading_top p {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .filters_heading_top p {
    display: none;
  }
}
.filters_heading_top a.reset_all_filters {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #654724;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (max-width: 1199px) {
  .filters_heading_top a.reset_all_filters {
    font-size: 12px;
  }
}
.filters_heading_top a.reset_all_filters:hover {
  color: #96c950 !important;
}
@media (max-width: 991px) {
  .filters_heading_top a.reset_all_filters {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #9B7836;
  }
  .filters_heading_top a.reset_all_filters:before {
    font-family: icomoon;
    content: "";
    background: url('/img/trash.svg') no-repeat center;
    width: 16px;
    height: 16px;
    font-size: 15px;
    text-align: center;
    color: #525252;
    margin-right: 6px;
    display: inline-block;
    position: relative;
    bottom: -1px;
  }
}
.filters_heading_bottom .active_filter {
  margin-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991px) {
  .filters_heading_bottom .active_filter {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.filters_heading_bottom .active_filter p {
  margin-bottom: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.filters_heading_bottom .active_filter .filter_name {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #2B1E0F;
  margin-right: 8px;
}
@media (max-width: 1199px) {
  .filters_heading_bottom .active_filter .filter_name {
    font-size: 12px;
    margin-right: 6px;
  }
}
@media (max-width: 991px) {
  .filters_heading_bottom .active_filter .filter_name {
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #9B7836;
  }
}
.filters_heading_bottom .active_filter .selected_option {
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #2B1E0F;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
}
@media (max-width: 1199px) {
  .filters_heading_bottom .active_filter .selected_option {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .filters_heading_bottom .active_filter .selected_option {
    font-weight: 500;
    font-size: 16px;
    position: relarive;
    bottom: -1px;
  }
}
.filters_heading_bottom .active_filter .remove_filter {
  width: 18px;
  height: 18px;
  position: relative;
  cursor: pointer;
}
@media (max-width: 1199px) {
  .filters_heading_bottom .active_filter .remove_filter {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 991px) {
  .filters_heading_bottom .active_filter .remove_filter {
    margin-right: 6px;
  }
}
.filters_heading_bottom .active_filter .remove_filter i {
  font-size: 11px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #525252;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
@media (max-width: 1199px) {
  .filters_heading_bottom .active_filter .remove_filter i {
    font-size: 9px;
  }
}
.filters_heading_bottom .active_filter .remove_filter:hover i {
  color: #1e8e20;
}
.filters_wrap {
  margin-top: 11px;
}
.filters_wrap .filter_menu_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  cursor: pointer;
}
@media (min-width: 992px) {
  .filters_wrap .filter_menu_header {
    border-bottom: 1px solid #c8cbcc;
    margin-bottom: 16px;
  }
}
@media (max-width: 991px) {
  .filters_wrap .filter_menu_header {
    padding: 24px;
    background: #fafafa;
    border-radius: 8px;
    border-bottom: 1px solid #fff;
  }
}
.filters_wrap .filter_menu_header h2 {
  font-family: 'Barlow', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #2B1E0F;
  position: relative;
}
@media (max-width: 991px) {
  .filters_wrap .filter_menu_header h2 {
    font-weight: 500;
    font-size: 16px;
    color: #000;
    padding-left: 22px;
  }
  .filters_wrap .filter_menu_header h2:before {
    content: "\E915";
    font-family: icomoon !important;
    speak: none;
    font-weight: 400;
    position: absolute;
    left: 3px;
    top: -1px;
    color: #654724;
    font-size: 11px;
  }
}
@media (max-width: 991px) {
  .filters_wrap .filter_menu_header.expanded h2:before {
    content: "\E914";
  }
}
.filters_wrap .collapse_filter {
  margin-left: 10px;
}
.filters_wrap .collapse_filter i {
  font-size: 6px;
  color: #9da9b9;
  position: relative;
  top: -3px;
}
@media (max-width: 991px) {
  .filters_wrap .collapse_filter {
    display: none;
  }
}
.filters_wrap a.clear_this_filter_header {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-align: right;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #C8B792;
  padding: 8px 0;
}

.filter_selected_color {
  color: #775628 !important;
}

@media (min-width: 992px) {
  .filters_wrap a.clear_this_filter_header {
    display: none;
  }
}
.filters_wrap
  a.clear_this_filter_header
  .count_active_filters_in_this_menu:before {
  content: " (";
}
.filters_wrap
  a.clear_this_filter_header
  .count_active_filters_in_this_menu:after {
  content: ")";
}
#filters_wrap .filter_menu_options {
  margin-bottom: 40px;
  overflow: hidden;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
#filters_wrap .filter_menu_options.collapsed {
  max-height: 0;
  margin-bottom: 0;
}
#filters_wrap_mobile .filter_menu_options {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
#filters_wrap_mobile .filter_menu_options.expanded {
  max-height: 999px;
  padding: 24px;
}
.iswari_checkbox_menu_wrap {
  overflow: hidden;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.iswari_checkbox_menu_wrap.expanded {
  max-height: 2000px !important;
}
.iswari_checkbox_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding-bottom: 10px;
}
.iswari_checkbox_menu span {
  font-family: 'Barlow';
  color: #A58545;
  letter-spacing: -0.02em;
  font-size: 13px;
}
@media (max-width: 1199px) {
  .iswari_checkbox_menu span {
    font-size: 12px;
  }
}
.iswari_checkbox_menu span.count:before {
  content: "(";
}
.iswari_checkbox_menu span.count:after {
  content: ")";
}
.iswari_checkbox_menu span a {
  color: #A58545 !important;
  letter-spacing: -0.02em;
  font-size: 14px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
  font-family: 'Barlow';
  font-weight: 500;
}
.iswari_checkbox_menu span a:hover {
  color: #1e8e20 !important;
}
@media (max-width: 991px) {
  .iswari_checkbox_menu span a.clear_this_filter {
    display: none;
  }
}
.iswari_checkbox_menu .the_checkbox_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 80%;
}
.iswari_checkbox_menu .the_checkbox_menu label {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.02em;
  color: #775628;
  width: calc(100% - 30px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.iswari_checkbox_menu .clickable_filter_element_all label {
  font-weight: 600;
  color: #2B1E0F;
}
@media (max-width: 1199px) {
  .iswari_checkbox_menu .the_checkbox_menu label {
    font-size: 12px;
  }
}
.iswari_checkbox_menu .the_checkbox_menu .pretty_checkbox {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 18px;
  height: 18px;
  color: #9da9b9;
  font-family: icomoon;
  margin-right: 8px;
  font-size: 18px;
  position: relative;
  right: -1px;
}
.iswari_checkbox_menu .the_checkbox_menu .pretty_checkbox:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: "\E940";
}
.iswari_checkbox_menu .the_checkbox_menu input[type="checkbox"] {
  display: none;
}
.iswari_checkbox_menu .the_checkbox_menu.active .pretty_checkbox,
.iswari_checkbox_menu .the_checkbox_menu.active label {
  color: #1e8e20;
}
.iswari_checkbox_menu .the_checkbox_menu.active .pretty_checkbox:before {
  content: "\E941";
}
.iswari_checkbox_menu_inner_wrap {
  overflow: hidden;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.iswari_checkbox_menu_inner_wrap.expanded {
  max-height: 1700px !important;
}
.iswari_button_grid_menu_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 5px;
  overflow: hidden;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.iswari_button_grid_menu_wrap.expanded {
  max-height: 1700px !important;
}
.iswari_button_grid_menu {
  width: calc(33.333% - 4px);
  margin: 0 4px 4px 0;
}
.iswari_button_grid_menu input[type="checkbox"] {
  display: none;
}
.iswari_button_grid_menu a {
  overflow: hidden;
  width: 100%;
  border: 1px solid #DDD5C0;
  border-radius: 2px;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #775628;
  padding: 10px;
  text-align: center;
  display: block;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  cursor: pointer;
}
@media (max-width: 1199px) {
  .iswari_button_grid_menu a {
    font-size: 12px;
  }
}
@media (min-width: 992px) {
  .iswari_button_grid_menu a:hover {
    color: #fff !important;
    border: 1px solid #1e8e20;
    background: #1e8e20;
  }
}
.iswari_button_grid_menu.active a,
.the_button_grid_menu.active a {
  color: #1e8e20 !important;
  border: 1px solid #1e8e20;
}
@media (min-width: 992px) {
  .the_button_grid_menu.active a:hover {
    color: #fff !important;
  }
}
.extreme_values_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 16px;
}
.extreme_values_wrap .extreme_button {
  width: calc(50% - 11px);
  letter-spacing: -0.02em;
  color: #9da9b9;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  padding: 10px;
  text-align: center;
  border: 1px solid #e3e9ed;
  border-radius: 2px;
}
.text_search_filter_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 4px;
  border: 1px solid #e3e9ed;
  margin-bottom: 14px;
  padding: 8px 0 8px 8px;
}
.text_search_filter_wrap,
.text_search_filter_wrap i {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.text_search_filter_wrap i {
  font-size: 14px;
  margin-right: 8px;
  color: #9da9b9;
}
.text_search_filter_wrap input[type="text"] {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #8a939f;
  border: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  text-transform: capitalize;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.text_search_filter_wrap input[type="text"]:focus {
  outline: none;
}
.text_search_filter_wrap input[type="text"]::-moz-focus-inner {
  border: 0;
}
.text_search_filter_wrap.focused {
  border: 1px solid #1e8e20;
}
.text_search_filter_wrap.focused input[type="text"] {
  color: #000;
}
.text_search_filter_wrap.focused i {
  color: #1e8e20;
}
.filter_view_more_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-left: 26px;
  cursor: pointer;
  position: relative;
}
.filter_view_more_button .filter_view_more_button_text_collapsed,
.filter_view_more_button .filter_view_more_button_text_expanded {
  letter-spacing: -0.02em;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  color: #525252;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.filter_view_more_button .count {
  color: #9da9b9;
  letter-spacing: -0.02em;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}
.filter_view_more_button .count:before {
  content: "(";
}
.filter_view_more_button .count:after {
  content: ")";
}
@media (max-width: 992px) {
  .filter_view_more_button .count {
    font-size: 12px;
  }
}
.filter_view_more_button:hover .filter_view_more_button_text_collapsed,
.filter_view_more_button:hover .filter_view_more_button_text_expanded {
  color: #1e8e20;
}
.filter_view_more_button .filter_view_more_button_text_expanded {
  display: none;
}
.filter_view_more_button:before {
  content: "";
  width: 100%;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#fff),
    to(hsla(0, 0%, 100%, 0.4))
  );
  background: linear-gradient(0deg, #fff, hsla(0, 0%, 100%, 0.4));
  position: absolute;
  left: 0;
}
.filter_view_more_button.expanded .filter_view_more_button_text_expanded {
  display: block;
}
.filter_view_more_button.expanded .filter_view_more_button_text_collapsed,
.filter_view_more_button.expanded:before {
  display: none;
}
.filter_menu_options.checkbox .filter_view_more_button:before,
.filter_menu_options.checkbox_with_search .filter_view_more_button:before {
  height: 54px;
  top: -54px;
}
.filter_menu_options.button_grid .filter_view_more_button:before {
  height: 35px;
  top: -35px;
}
.side_bar_category_menu {
  padding: 0;
  margin-bottom: 20px;
}
.side_bar_category_menu li {
  list-style: none;
}
.side_bar_category_menu li a {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #525252;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  line-height: 2.2;
  color: #2B1E0F;
}

.side_bar_category_menu .side_bar_category_menu_sub_menu li a {
  color: #654724;
  font-weight: 500;
}
.side_bar_category_menu li a.active,
.side_bar_category_menu li a:hover {
  color: #389C23;
}
.side_bar_category_menu .side_bar_category_menu_sub_menu {
  padding-left: 24px;
}
.shop_page_title {
  margin: 27px 0;
  font-family: 'GarageGothic-Bold', sans-serif;
  font-weight: 600;
  font-size: 30px;
  letter-spacing: -0.03em;
  color: #2B1E0F;
}
.shop_page_title_category {
  font-family: 'Barlow';
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  color: #2B1E0F;
  margin: 0 0 10px -10px;
}

@media (max-width: 991px) {
  .shop_page_title {
    font-size: 19px;
  }
}
.shop_page_title_mobile {
  font-family: garage-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #2B1E0F;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding: 8px 0 8px 16px;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .shop_page_title_mobile {
    display: none;
  }
}
.products_count {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: #9B7836;
  margin: 0;
}
.products_count_mobile {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  line-height: 100%;
  color: #A58545;
  display: none;
}

@media (max-width: 991px) {
  .products_count {
    padding-left: 20px;
    font-size: 10px;
    margin-bottom: 27px;
  }
}
@media (max-width: 575px) {
  .products_count {
    padding-left: 16px;
  }
  .products_count_mobile {
    display: inline;
    float: right;
  }
}
.shop_order_by_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 2px 30px;
  border: 1px solid #DDD5C0;
  border-radius: 40px;
  height: 44px;
}
.shop_order_by_wrap p {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: #775628;
  top: -1px;
  position: relative;
}
.shop_order_by_wrap .nice-select.nice_select {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: #2B1E0F;
  border: 0;
}
.filter_icons {
  margin-right: 14px;
  color: #5B3F18;
}
.load_more_button_wrap {
  display: block;
  margin: auto;
  text-align: center;
}
.load_more_button_wrap p {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  letter-spacing: -0.02em;
  color: #2B1E0F;
}
.load_more_button_wrap .load_more_button {
  display: inline-block;
  margin: auto;
  font-family: garage-gothic, sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #2B1E0F;
  padding: 10px 50px;
  border: 1px solid #DDD5C0;
  border-radius: 50px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
  text-transform: uppercase;
}
.load_more_button_wrap .load_more_button:hover {
  color: #fff !important;
  background: #1e8e20;
  border: 1px solid #1e8e20;
}
.add-read-more.show-less-content .second-section,
.add-read-more.show-less-content .read-less {
  display: none;
}

.add-read-more.show-more-content .read-more {
  display: none;
}

.add-read-more .read-more,
.add-read-more .read-less {
  font-family: 'Barlow';
  font-weight: 700;
  font-size: 15px;
  color: #684E33;
  cursor: pointer;
}
.mobile_filters_popup_toggle_buttons_wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .mobile_filters_popup_toggle_buttons_wrap {
    font-size: 19px;
    padding-left: 8px;
    padding-right: 8px;
  }
}
.mobile_filters_popup_toggle_buttons_wrap a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 38px;
  padding: 4px 16px;
  background: #FBF6EC;
  -webkit-box-shadow: 0 0 5px rgba(82, 82, 82, 0.08),
    0 10px 40px rgba(82, 82, 82, 0.1);
  box-shadow: 0 0 5px rgba(82, 82, 82, 0.08), 0 10px 40px rgba(82, 82, 82, 0.1);
  border-radius: 4px;
  width: calc(50% - 4px);
}
.mobile_filters_popup_toggle_buttons_wrap a span {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #775628;
  margin-right: 10px;
  text-transform: uppercase;
}
.mobile_filters_popup_toggle_buttons_wrap a i {
  color: #9B7836;
}
.mobile_filters_popup_toggle_buttons_wrap a.mobile_order_toggle i {
  font-size: 9px;
}
.mobile_filters_popup_toggle_buttons_wrap a.mobile_filter_toggle i {
  font-size: 13px;
}
#products_stage {
  padding: 0;
  margin-top: 21px;
}
@media (max-width: 991px) {
  #products_stage {
    padding: 0 15px;
  }
}
@media (max-width: 575px) {
  #products_stage {
    padding: 0 20px;
  }
}
#products_stage .product_wrap_2 {
  padding: 0 12px;
  margin: 0;
}
@media (max-width: 991px) {
  #products_stage .product_wrap_2 {
    padding: 0 7px;
  }
}
@media (max-width: 575px) {
  #products_stage .product_wrap_2 {
    padding: 0 4px;
  }
}
@media (max-width: 575px) {
  .shop_page_header {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.mobile_filter_popup {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  bottom: 0;
  left: 0;
  visibility: hidden;
  -webkit-transition: all 0 ease 0.2s;
  transition: all 0 ease 0.2s;
}
.mobile_filter_popup .mobile_filter_popup_background {
  background: transparent;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
}
.mobile_filter_popup .mobile_filter_popup_scrollable {
  overflow-y: scroll;
  width: 100%;
  height: 100%;
}
.mobile_filter_popup .mobile_filter_popup_inner_wrap {
  background: #fff;
  padding: 24px 0 100px;
  width: 100%;
  margin-top: 140px;
  min-height: calc(100% - 140px);
  -webkit-transform: translate3d(0, 100px, 0);
  transform: translate3d(0, 100px, 0);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-radius: 8px 8px 0 0;
  opacity: 0;
}
.mobile_filter_popup.active {
  visibility: visible;
}
.mobile_filter_popup.active .mobile_filter_popup_inner_wrap {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  opacity: 1;
}
.mobile_filter_popup.active .mobile_filter_popup_background {
  background: rgba(0, 0, 0, 0.5);
}
.mobile_filter_popup.active a.mobile_filter_popup_go_button {
  opacity: 1;
}
@media (min-width: 992px) {
  .mobile_filter_popup {
    display: none;
  }
}
.mobile_filter_popup .mobile_filter_popup_close_button {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 21px;
  right: 21px;
}
.mobile_filter_popup .mobile_filter_popup_close_button i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #8a939f;
  font-size: 12px;
}
.mobile_filter_popup .mobile_filter_popup_header {
  width: 100%;
  margin-bottom: 23px;
  padding: 0 16px;
}
.mobile_filter_popup .mobile_filter_popup_header .mobile_filter_popup_title {
  font-family: garage-gothic, sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #2B1E0F;
  text-align: center;
}
.mobile_filter_popup .mobile_filter_popup_header .mobile_filter_popup_subtitle {
  text-align: center;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #775628;
}
.mobile_filter_popup a.mobile_filter_popup_go_button {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #79A13D;
  border: 1px solid rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  text-align: center;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  text-shadow: 0px 1px 3px rgba(82, 82, 82, 0.2);
  padding: 18px;
  opacity: 0;
}
.mobile_order_popup {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  bottom: 0;
  left: 0;
  visibility: hidden;
  -webkit-transition: all 0 ease 0.2s;
  transition: all 0 ease 0.2s;
}
.mobile_order_popup .mobile_order_popup_background {
  background: transparent;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
}
.mobile_order_popup .mobile_order_popup_scrollable {
  overflow-y: scroll;
  width: 100%;
  height: 100%;
}
.mobile_order_popup .mobile_order_popup_inner_wrap {
  background: #fff;
  padding: 24px 0 100px;
  width: 100%;
  margin-top: 140px;
  -webkit-transform: translate3d(0, 100px, 0);
  transform: translate3d(0, 100px, 0);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-radius: 8px 8px 0 0;
  min-height: calc(100% - 140px);
  opacity: 0;
}
.mobile_order_popup.active {
  visibility: visible;
}
.mobile_order_popup.active .mobile_order_popup_background {
  background: rgba(0, 0, 0, 0.5);
}
.mobile_order_popup.active .mobile_order_popup_inner_wrap {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  opacity: 1;
}
.mobile_order_popup.active a.mobile_order_popup_go_button {
  opacity: 1;
}
.mobile_order_popup .mobile_order_popup_close_button {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 21px;
  right: 21px;
}
.mobile_order_popup .mobile_order_popup_close_button i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #8a939f;
  font-size: 12px;
}
.mobile_order_popup .mobile_order_popup_header {
  width: 100%;
  margin-bottom: 40px;
  padding: 0 16px;
}
.mobile_order_popup .mobile_order_popup_header .mobile_order_popup_title {
  font-family: garage-gothic, sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #2B1E0F;
  text-align: center;
}
.mobile_order_popup .mobile_order_popup_content {
  padding: 0 16px;
}
.mobile_order_popup .mobile_order_popup_content a {
  display: block;
  padding: 12px 24px;
  border-radius: 48px;
  color: #96896E;
  margin-bottom: 8px;
  font-weight: 500;
  font-family: 'Barlow', sans-serif;
  letter-spacing: -0.05em;
  font-size: 14px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.mobile_order_popup .mobile_order_popup_content a span {
  font-weight: 400;
  color: #5B3F18;
  margin-right: 13px;
  font-size: 16px;
  position: relative;
  bottom: -2px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.mobile_order_popup .mobile_order_popup_content a.active {
  background: #F5EAD3;
  color: #5B3F18;
}
.mobile_order_popup .mobile_order_popup_content a.active span {
  color: #5B3F18;
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
}
.mobile_order_popup a.mobile_order_popup_go_button {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #96c950;
  border: 1px solid rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  border-radius: 16px 16px 0 0;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 1px 3px rgba(82, 82, 82, 0.2);
  padding: 18px;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.mobile_caption {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: #B79A62;
  padding-left: 22px;
}
@media (min-width: 992px) {
  .mobile_caption {
    display: none;
  }
}
.mobile_breadcrumbs {
  padding-top: 22px;
  padding-left: 31px;
  margin: 0;
}
@media (min-width: 992px) {
  .mobile_breadcrumbs {
    display: none;
  }
}
@media (max-width: 991px) {
  .mobile_breadcrumbs {
    padding-left: 20px;
  }
}
@media (max-width: 575px) {
  .mobile_breadcrumbs {
    padding-left: 16px;
    padding-right: 16px;
  }
  .products_count {
    display: none;
  }
}
.mobile_breadcrumbs,
.mobile_breadcrumbs a {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: -0.01em;
  color: #A58545;
}
.shop_order_by_wrap .nice-select.nice_select ul.list {
  left: auto !important;
  right: 0 !important;
  color: #96896E;
}
.product-page-discount-badge {
  text-align: center;
  line-height: 1.2;
  color: #d70000;
  border: 2px dashed #d70000;
  font-weight: 700;
  padding: 8px;
  background: #fce8e8;
  text-transform: uppercase;
}
.app_supervegan .product-card-2:hover {
  border: 2px solid #ffb020;
}
.opportunities_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  padding: 0;
}
@media (min-width: 992px) {
  .opportunities_container {
    padding-top: 14px;
  }
}
.opportunities_body {
  margin: 0;
  padding: 0;
}
.opportunities_grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  padding: 0;
}
@media (max-width: 991px) {
  .opportunities_grid {
    margin: 0;
    margin-top: 15px;
  }
}
.opportunities_grid .product_wrap_2 {
  padding: 0 12px;
  margin: 0;
}
@media (max-width: 991px) {
  .opportunities_grid .product_wrap_2 {
    padding: 0 7px;
  }
}
@media (max-width: 575px) {
  .opportunities_grid .product_wrap_2 {
    padding: 0 4px;
  }
}
.opps_page_title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: #525252;
}
@media (max-width: 991px) {
  .opps_page_title {
    font-size: 19px;
  }
}
.opp-card-wrapper {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 14px;
  width: 100%;
}
#banner_inner_content {
  -webkit-transition: opacity 1s ease-out;
  transition: opacity 1s ease-out;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-family: DM Sans !important;
  font-size: 14px !important;
  letter-spacing: -0.03em;
}
#banner_inner_content > p {
  font-weight: 500;
  margin: 0;
  margin-bottom: 8px;
}
#banner_inner_content > div > p {
  font-weight: 400;
  margin: 0;
  margin-bottom: 8px;
}
#banner_inner_content.is-visible {
  opacity: 1;
  height: auto;
  max-height: 500px;
}
.produts_list_header {
  margin: 0;
  padding: 0;
}
@media (min-width: 992px) {
  .produts_list_header {
    margin-top: 22px;
  }
}
.header_banner {
  margin: 0;
  border-radius: 8px;
  padding: 24px 32px;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  letter-spacing: -0.03em;
}
@media (max-width: 575px) {
  .header_banner {
    padding: 16px 24px;
    margin: 0;
    border-radius: 0;
  }
}
.header_banner > p.title {
  color: #000;
  margin: 0;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 22px;
}
.header_banner.category > p.title {
  font-family: garage-gothic, sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 90%;
  color: #2B1E0F;
}
.header_banner > p.subtitle {
  color: #525252;
  margin: 0;
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 16px;
}
.header_banner > p.expand-colapse {
  cursor: pointer;
  color: #525252;
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}
.header_banner > p.add-read-more {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: #684E33;
}
.header_banner.category {
  background-color: #FBF6EC;
}
.header_banner.opportunity {
  background: rgba(150, 201, 80, 0.15);
}
.header_banner.campaign {
  background: #f8f5f5;
}
.opportunities_count {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: #9da9b9;
  margin: 28px 0;
}
@media (max-width: 991px) {
  .opportunities_count {
    padding-left: 20px;
    font-size: 10px;
    margin: 0;
  }
}
@media (max-width: 575px) {
  .opportunities_count {
    padding-left: 16px;
  }
}
@media (max-width: 991px) {
  .opportunities_count.desktop {
    display: none;
  }
}
@media (min-width: 992px) {
  .opportunities_count.mobile {
    display: none;
  }
}
.buyopportunity {
  padding: 0;
  background: #fff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}
.buyopportunity:hover .opps_buy_button {
  -webkit-box-shadow: 0 0 1px 0 #000 4%;
  box-shadow: 0 0 1px 0 4% #000;
  -webkit-box-shadow: 0 2px 6px 0 #7db036 12%;
  box-shadow: 0 2px 6px 0 12% #7db036;
  -webkit-box-shadow: 0 16px 24px 0 #7db036 20%;
  box-shadow: 0 16px 24px 0 20% #7db036;
  border: 15% solid #000;
  background-color: #7db036;
}
.buyopportunity:hover .opps_buy_button:before {
  visibility: visible;
  color: #fff;
  width: 16px;
  margin-right: 10px;
}
@media (max-width: 575px) {
  .buyopportunity:hover .opps_buy_button:before {
    visibility: hidden;
    color: transparent;
    width: 0;
    margin-right: 0;
  }
}
.opps_product_title {
  color: #000;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  letter-spacing: -0.03em;
  font-weight: 700;
  font-size: 16px;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}
@media (max-width: 575px) {
  .opps_product_title {
    margin-top: 7px;
    font-size: 13px;
  }
}
.opps_product_weight {
  color: #9da9b9;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  letter-spacing: -0.03em;
  font-weight: 500;
  font-size: 14px;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}
@media (max-width: 575px) {
  .opps_product_weight {
    margin-top: 7px;
    font-size: 10px;
  }
}
@media (max-width: 575px) {
  .opp_price_container {
    margin-top: 7px;
  }
}
.opp_current_price {
  color: #000;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  letter-spacing: -0.03em;
  font-weight: 400;
  font-size: 20px;
}
@media (max-width: 575px) {
  .opp_current_price {
    font-size: 15px;
  }
}
.opp_old_price {
  color: #9da989;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  letter-spacing: -0.03em;
  font-weight: 400;
  font-size: 18px;
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
}
@media (max-width: 575px) {
  .opp_old_price {
    font-size: 15px;
  }
}
.opp_price_difference {
  color: #c03;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  letter-spacing: -0.03em;
  font-weight: 400;
  font-size: 12px;
}
.opps_buy_button {
  background-color: #96c950;
  border: 1px solid rgba(0, 0, 0, 0.05);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  border-radius: 50px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 51px;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}
.opps_buy_button:before {
  font-family: icomoon;
  content: "\E916";
  color: transparent;
  width: 0;
  height: 16px;
  font-size: 15px;
  text-align: center;
  bottom: 6px;
  position: relative;
  margin-right: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media (max-width: 575px) {
  .opps_buy_button {
    margin-top: 7px;
    height: 39px;
  }
}
.opps_buy_button > span {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 1px 3px rgba(82, 82, 82, 0.2);
}
@media (max-width: 575px) {
  .opps_buy_button > span {
    font-size: 12px;
  }
}
.opp_stock > p {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.03em;
  color: #9da9b9;
}
@media (max-width: 575px) {
  .opp_stock > p {
    padding-left: 13px;
    font-size: 11px;
  }
}
#expires_in {
  color: #000;
  background: rgba(82, 82, 82, 0.25);
  border-radius: 4px;
  padding: 1px 6px;
  font-family: monospace;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.04em;
}
.campaign > p.title {
  font-size: 20px;
  letter-spacing: -0.04em;
  margin: 0;
}
.campaign > .expires {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.03em;
  color: #525252;
}
.campaign_conditions {
  background: rgba(0, 0, 0, 0.05);
  padding: 8px 16px;
  border-radius: 4px;
  margin: 8px 0;
}
.expand-colapse.campaign,
.voucher_code {
  padding-top: 4px;
}
.voucher_code {
  color: #525252;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: -0.03em;
  margin: 0;
}
.voucher_code > .code {
  font-family: monospace;
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}
.filters_container {
  padding: 0;
}
.superfood {
  overflow: hidden;
  background: #fcfeff url("/img/superfood/bg.jpg") no-repeat top;
  background-size: 175% auto;
}
@media (min-width: 576px) {
  .superfood {
    background-size: 125% auto;
  }
}
@media (min-width: 768px) {
  .superfood {
    background-size: 110% auto;
  }
}
@media (min-width: 1200px) {
  .superfood {
    background-size: 100% auto;
  }
}
.superfood .text-uppercase {
  text-transform: uppercase;
}
.superfood .text-semi-bold {
  font-weight: 600;
}
.superfood .text-viking-blue {
  color: #39b8b3;
}
.superfood .text-dark-tangerine {
  color: #ffb520;
}
.superfood .text-superfood {
  color: #8ec050;
}
.superfood .btn {
  display: block;
  margin-left: 0;
  margin-right: 0;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.03em;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .superfood .btn {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.02em;
    padding: 0 22px;
  }
}
@media (min-width: 768px) {
  .superfood .mobile-visibility {
    display: none;
  }
}
.superfood .desktop-visibility {
  display: none;
}
@media (min-width: 768px) {
  .superfood .desktop-visibility {
    display: inline-block;
  }
}
.superfood p {
  font-size: 14px;
  line-height: 25px;
  letter-spacing: -0.02em;
  margin: 0 0 2rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .superfood p {
    font-size: 16px;
    font-weight: 400;
  }
}
.superfood .h2,
.superfood h2 {
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .superfood .h2,
  .superfood h2 {
    font-size: 34px;
    line-height: 31px;
  }
}
.superfood .h4,
.superfood h4 {
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .superfood .h4,
  .superfood h4 {
    font-size: 20px;
    line-height: 30px;
  }
}
.superfood .title {
  font-size: 21px;
  line-height: 120%;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .superfood .title {
    font-size: 32px;
  }
}
.superfood .sub-title {
  font-size: 17px;
  line-height: 140%;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .superfood .sub-title {
    font-size: 24px;
  }
}
.superfood .call-to-action {
  padding-top: 10.5rem;
}
@media (min-width: 768px) {
  .superfood .call-to-action {
    padding-top: 18rem;
  }
}
@media (min-width: 1200px) {
  .superfood .call-to-action {
    padding-top: 22rem;
  }
}
.superfood .call-to-action .logo {
  margin-bottom: 2rem;
  max-width: 120px;
}
@media (min-width: 768px) {
  .superfood .call-to-action .logo {
    max-width: 100%;
  }
}
.superfood .call-to-action .page {
  font-weight: 900;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: -0.03em;
}
@media (min-width: 768px) {
  .superfood .call-to-action .page {
    font-size: 90px;
  }
}
.superfood .call-to-action .text,
.superfood .should .text,
.superfood .what .text {
  padding: 0 5px;
}
@media (min-width: 768px) {
  .superfood .call-to-action .text,
  .superfood .should .text,
  .superfood .what .text {
    padding: 0;
  }
}
.superfood .what p {
  font-size: 16px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .superfood .call-to-action p,
  .superfood .do p,
  .superfood .food p,
  .superfood .what p,
  .superfood .why p {
    line-height: 170%;
    font-size: 17px;
  }
}
.superfood .what {
  margin-top: 6rem;
  padding-bottom: 3.5rem;
  background: #f7f8fb;
}
@media (min-width: 768px) {
  .superfood .what {
    margin-top: 14.5rem;
    margin-bottom: 6.25rem;
    padding-bottom: 7.5rem;
  }
}
.superfood .what .products-div {
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .superfood .what .products-div {
    padding-bottom: 17rem;
  }
}
.superfood .what .products {
  position: absolute;
  top: -4rem;
  margin: auto;
  left: -1rem;
  right: 0;
  max-width: 110%;
}
@media (min-width: 768px) {
  .superfood .what .products {
    top: -10rem;
    max-width: 100%;
    left: 0;
  }
}
.superfood .what .title {
  padding-top: 5rem;
}
@media (min-width: 768px) {
  .superfood .what .title {
    text-align: center;
    font-weight: 700;
  }
}
.superfood .what .sub-title {
  font-weight: 500;
  line-height: 156%;
}
@media (min-width: 768px) {
  .superfood .what .sub-title {
    font-weight: 700;
    font-size: 17px;
    line-height: 140%;
  }
}
.superfood .what .logos {
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .superfood .what .logos {
    margin-top: 3rem;
  }
}
.superfood .why {
  margin-bottom: 3.75rem;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  .superfood .why {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.superfood .why .text {
  padding: 2.5rem 1.75rem 1rem;
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  margin: -19.5rem 18px 0;
}
@media (min-width: 768px) {
  .superfood .why .text {
    padding: 5rem 5rem 3rem;
    margin: 0 0 0 -33%;
  }
}
.superfood .should {
  margin-bottom: 1.5rem;
}
.superfood .should [class^="col-"]:first-child {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.superfood .should [class^="col-"]:last-child {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
@media (min-width: 768px) {
  .superfood .should {
    margin-bottom: 0;
  }
  .superfood .should [class^="col-"]:first-child {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .superfood .should [class^="col-"]:last-child {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
@media (min-width: 768px) {
  .superfood .should img {
    margin-left: 8%;
  }
}
.superfood .should .sub-title {
  margin-bottom: 1.75rem;
}
@media (min-width: 768px) {
  .superfood .should .sub-title {
    margin-bottom: 3rem;
  }
}
@media (min-width: 768px) {
  .superfood .should .text {
    padding: 3rem;
  }
}
.superfood .should .text p {
  font-weight: 500;
}
.superfood .how {
  background: #f7f8fa;
  padding: 2rem 0 2.5rem;
}
@media (min-width: 768px) {
  .superfood .how {
    margin-bottom: 6rem;
    padding: 0 0 0.5rem;
  }
}
.superfood .how .text {
  padding: 1rem 1rem 0;
}
.superfood .how .text p:not(:first-child) {
  font-size: 16px;
}
@media (min-width: 768px) {
  .superfood .how .text {
    padding: 3rem;
  }
}
.superfood .how img {
  -webkit-transform: scale(1.32);
  transform: scale(1.32);
}
@media (min-width: 768px) {
  .superfood .how img {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.superfood .how .mobile-visibility {
  margin-top: 3rem;
}
.superfood .food {
  background: rgba(255, 176, 32, 0.2);
  z-index: 0;
  margin-top: 23rem;
}
@media (min-width: 768px) {
  .superfood .food {
    margin-top: 0;
    padding-top: 3.75rem;
    margin-bottom: 2.5rem;
    background: none;
  }
}
.superfood .food img {
  position: absolute;
  top: -21rem;
  left: -0.2rem;
  z-index: 1;
}
@media (min-width: 768px) {
  .superfood .food img {
    min-width: 670px;
    top: -15%;
    left: -8%;
  }
}
@media (min-width: 768px) {
  .superfood .food .bg {
    border-radius: 10px;
    margin-left: 1rem;
    background: rgba(255, 176, 32, 0.2);
    z-index: 0;
  }
}
.superfood .food .title {
  margin-bottom: 1.75rem;
}
@media (min-width: 768px) {
  .superfood .food .title {
    margin-bottom: 2rem;
  }
}
.superfood .food .text {
  padding: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .superfood .food .text {
    padding: 3.75rem 3rem 3.75rem 7.5rem;
    margin-top: 0;
  }
}
.superfood .do {
  background: rgba(150, 201, 80, 0.2);
}
@media (min-width: 768px) {
  .superfood .do {
    background: none;
    margin-bottom: 6.25rem;
  }
}
.superfood .do .text {
  background: none;
  padding: 4rem 1rem 2rem;
}
@media (min-width: 768px) {
  .superfood .do .text {
    background: rgba(150, 201, 80, 0.2);
    padding: 4rem 3rem 3rem;
    border-radius: 10px;
  }
}
@media (min-width: 768px) {
  .superfood .do .text p {
    margin: 0 0 1rem;
  }
}
.superfood .do .title,
.superfood .food .title {
  color: #000;
  font-size: 17px;
  line-height: 140%;
}
@media (min-width: 768px) {
  .superfood .do .title,
  .superfood .food .title {
    font-size: 20px;
  }
}
.superfood .motivation {
  min-height: 650px;
  background: url("/img/superfood/motivation_bg.png") no-repeat top;
  background-size: 260% auto;
}
@media (min-width: 768px) {
  .superfood .motivation {
    min-height: 665px;
    background-size: 100% auto;
  }
}
.superfood .motivation .text {
  padding: 2.5rem 1.75rem;
  position: absolute;
  left: 3%;
  right: 3%;
  top: 14.5rem;
  background: #fff;
  -webkit-box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.05);
  box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}
@media (min-width: 768px) {
  .superfood .motivation .text {
    padding: 4rem 3rem;
    position: absolute;
    left: 50%;
    right: 6%;
    top: 10rem;
  }
}
.superfood .motivation .text > .title {
  font-size: 21px;
  line-height: 120%;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .superfood .motivation .text > .title {
    font-size: 34px;
  }
}
.superfood .motivation .text h4 {
  margin-bottom: 2rem;
  line-height: 25px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .superfood .motivation .text h4 {
    line-height: 30px;
    font-weight: 600;
  }
}
.superfood .motivation .text h4 .tags li {
  display: inline;
}
.superfood .motivation .text h4 .tags li:nth-child(2):after {
  content: "\A";
  white-space: pre;
}
@media (min-width: 768px) {
  .superfood .motivation .text h4 .tags li {
    display: inline-block;
  }
  .superfood .motivation .text h4 .tags li:after,
  .superfood .motivation .text h4 .tags li:nth-child(2):after {
    content: "\2022";
    margin-left: 0.5rem;
  }
  .superfood .motivation .text h4 .tags li:last-child:after {
    content: "";
    margin-left: 0;
  }
}
@font-face {
  font-family: rusticoregular;
  src: url("/fonts/rustico-regularlatin-webfont.woff2") format("woff2"),
    url("/fonts/rustico-regularlatin-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
.futura {
  font-family: futura-pt, sans-serif;
  font-weight: 500;
}
.futura_demi {
  font-style: normal;
}
.futura_demi,
.futura_demi_italic {
  font-family: futura-pt, sans-serif;
  font-weight: 600;
}
.futura_demi_italic {
  font-style: italic;
}
.futura_medium {
  font-style: normal;
}
.futura_medium,
.futura_medium_italic {
  font-family: futura-pt, sans-serif;
  font-weight: 500;
}
.futura_medium_italic {
  font-style: italic;
}
.futura_heavy {
  font-style: normal;
}
.futura_heavy,
.futura_heavy_italic {
  font-family: futura-pt, sans-serif;
  font-weight: 700;
}
.futura_heavy_italic {
  font-style: italic;
}
.futura_bold {
  font-style: normal;
}
.futura_bold,
.futura_bold_italic {
  font-family: futura-pt-bold, sans-serif;
  font-weight: 700;
}
.futura_bold_italic {
  font-style: italic;
}
.futura_cond {
  font-style: normal;
}
.futura_cond,
.futura_cond_italic {
  font-family: futura-pt-condensed, sans-serif;
  font-weight: 400;
}
.futura_cond_italic {
  font-style: italic;
}
.futura_cond_medium {
  font-style: normal;
}
.futura_cond_medium,
.futura_cond_medium_italic {
  font-family: futura-pt-condensed, sans-serif;
  font-weight: 500;
}
.futura_cond_medium_italic {
  font-style: italic;
}
.futura_cond_bold {
  font-style: normal;
}
.futura_cond_bold,
.futura_cond_bold_italic {
  font-family: futura-pt-condensed, sans-serif;
  font-weight: 700;
}
.futura_cond_bold_italic {
  font-style: italic;
}
.futura_book {
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.rustico {
  font-family: rusticoregular;
}
.app_supervegan .white_color {
  color: #fff;
}
.app_supervegan .black_color {
  color: #000;
}
.app_supervegan .dark_gray_color {
  color: #433225;
}
.app_supervegan .dark_gray_2_color {
  color: #525252;
}
.app_supervegan .dark_gray_3_color {
  color: #676464;
}
.app_supervegan .gray_color {
  color: #9da9b9;
}
.app_supervegan .emperor_gray_color {
  color: #525252;
}
.app_supervegan .light_gray_color {
  color: #d0d5dd;
}
.app_supervegan .yellow_color {
  color: #fcd404;
}
.app_supervegan .yellow_2_color {
  color: #e5a218;
}
.app_supervegan .toasty_yellow_color {
  color: #ffb020;
}
.app_supervegan .orange_color {
  color: #d12d00;
}
.app_supervegan .brown_color {
  color: #e1dcbb;
}
.app_supervegan .dark_brown_color {
  color: #492911;
}
.app_supervegan .medium_brown_color {
  color: #6a5748;
}
.app_supervegan .green_color {
  color: #1e8e20;
}
.app_supervegan .light_green_color {
  color: #96c950;
}
.app_supervegan .red_color {
  color: #8f2027;
}
.app_supervegan .opacity_text {
  opacity: 0.7;
}
.app_supervegan .window_height {
  height: calc(100vh - 40px);
  min-height: 700px;
}
@media (max-width: 1070px) {
  .app_supervegan .window_height {
    height: 100vh;
  }
}
@media (max-width: 768px) {
  .app_supervegan .window_height {
    min-height: 550px;
  }
}
@media (max-width: 440px) {
  .app_supervegan .window_height {
    min-height: 490px;
  }
}
.app_supervegan .max_width_1440 {
  max-width: 1440px;
}
.app_supervegan .max_width_1300 {
  max-width: 1310px;
}
.app_supervegan .max_width_1260 {
  max-width: 1260px;
}
.app_supervegan .max_width_1240 {
  max-width: 1240px;
}
.app_supervegan .max_width_1190 {
  max-width: 1190px;
}
.app_supervegan .max_width_1135 {
  max-width: 1135px;
}
.app_supervegan .max_width_1000 {
  max-width: 1070px;
}
.app_supervegan .max_width_780 {
  max-width: 780px;
}
.app_supervegan .max_width_714 {
  max-width: 714px;
}
.app_supervegan .max_width_565 {
  max-width: 565px;
}
.app_supervegan .neverbreak_text {
  space: nowrap;
}
@media (max-width: 991px) {
  .app_supervegan .app_supervegan .order-md-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .app_supervegan .app_supervegan .order-md-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .app_supervegan .app_supervegan .order-md-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .app_supervegan .app_supervegan .order-md-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .app_supervegan .app_supervegan .order-md-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .app_supervegan .app_supervegan .order-md-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .app_supervegan .app_supervegan .order-md-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .app_supervegan .app_supervegan .order-md-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .app_supervegan .app_supervegan .order-md-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .app_supervegan .app_supervegan .order-md-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .app_supervegan .app_supervegan .order-md-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .app_supervegan .app_supervegan .order-md-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .app_supervegan .app_supervegan .order-md-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
}
@media (max-width: 767px) {
  .app_supervegan .app_supervegan .order-sm-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .app_supervegan .app_supervegan .order-sm-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .app_supervegan .app_supervegan .order-sm-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .app_supervegan .app_supervegan .order-sm-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .app_supervegan .app_supervegan .order-sm-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .app_supervegan .app_supervegan .order-sm-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .app_supervegan .app_supervegan .order-sm-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .app_supervegan .app_supervegan .order-sm-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .app_supervegan .app_supervegan .order-sm-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .app_supervegan .app_supervegan .order-sm-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .app_supervegan .app_supervegan .order-sm-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .app_supervegan .app_supervegan .order-sm-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .app_supervegan .app_supervegan .order-sm-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
}
.app_supervegan .supervegan_orange_button {
  line-height: 1.2222222222;
  display: inline-block;
  color: #fff;
  background: #ff7a00;
  letter-spacing: -0.02em;
  border: 1px solid #ff7a00;
  -webkit-box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  border-radius: 50px;
  padding: 12px 32px;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  font-family: futura-pt, sans-serif;
  font-weight: 600;
  font-style: normal;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.app_supervegan .supervegan_orange_button:hover {
  color: #ff7a00;
  background: #fff;
  border: 1px solid #fff;
}
@media (max-width: 767px) {
  .app_supervegan .supervegan_orange_button {
    padding: 12px 32px;
  }
}
.app_supervegan .supervegan_main {
  width: 100%;
  overflow: hidden;
}
.app_supervegan .underlined_title {
  letter-spacing: -0.02em;
  text-transform: uppercase;
  display: block;
  position: relative;
  z-index: 5;
  margin-bottom: 0;
  line-height: 0.8;
}
.app_supervegan .underlined_title div {
  display: block;
}
.app_supervegan .underlined_title div:last-child {
  display: inline-block;
  position: relative;
}
.app_supervegan .underlined_title div:last-child:before {
  width: 108%;
  position: absolute;
  bottom: -2px;
  left: -4%;
  padding-bottom: 14px;
  content: "";
  z-index: -1;
  background-size: 100% 100%;
  background-position: 50%;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .app_supervegan .underlined_title div:last-child:before {
    padding-bottom: 10px;
    bottom: -2px;
  }
}
.app_supervegan
  .underlined_title.underlined_title_light_green
  div:last-child:before {
  background-image: url(/img/supervegan/underlined_title_light_green.svg);
}
.app_supervegan
  .underlined_title.underlined_title_salmon
  div:last-child:before {
  background-image: url(/img/supervegan/underlined_title_salmon.svg);
}
.app_supervegan .underlined_title.underlined_title_red div:last-child:before {
  background-image: url(/img/supervegan/underlined_title_red.svg);
}
.app_supervegan
  .underlined_title.underlined_title_yellow
  div:last-child:before {
  background-image: url(/img/supervegan/underlined_title_yellow.svg);
}
.app_supervegan .underlined_title.underlined_title_pink div:last-child:before {
  background-image: url(/img/supervegan/underlined_title_pink.svg);
}
.app_supervegan
  .underlined_title.underlined_title_orange
  div:last-child:before {
  background-image: url(/img/supervegan/underlined_title_orange.svg);
}
.app_supervegan .underlined_title.underlined_title_green div:last-child:before {
  background-image: url(/img/supervegan/underlined_title_green.svg);
}
.app_supervegan .underlined_title_small {
  letter-spacing: -0.02em;
  text-transform: uppercase;
  display: block;
  position: relative;
  z-index: 5;
  margin-bottom: 0;
  line-height: 1.15;
}
.app_supervegan .underlined_title_small div {
  display: block;
}
.app_supervegan .underlined_title_small div:last-child {
  display: inline-block;
  position: relative;
}
.app_supervegan .underlined_title_small div:last-child:before {
  width: 108%;
  position: absolute;
  left: -4%;
  content: "";
  z-index: -1;
  background-size: 100% 100%;
  background-position: 50%;
  background-repeat: no-repeat;
  padding-bottom: 10px;
  bottom: 3px;
}
@media (max-width: 767px) {
  .app_supervegan .underlined_title_small div:last-child:before {
    padding-bottom: 8px;
    bottom: 4px;
  }
}
.app_supervegan
  .underlined_title_small.underlined_title_light_green
  div:last-child:before {
  background-image: url(/img/supervegan/underlined_title_light_green.svg);
}
.app_supervegan
  .underlined_title_small.underlined_title_salmon
  div:last-child:before {
  background-image: url(/img/supervegan/underlined_title_salmon.svg);
}
.app_supervegan
  .underlined_title_small.underlined_title_red
  div:last-child:before {
  background-image: url(/img/supervegan/underlined_title_red.svg);
}
.app_supervegan
  .underlined_title_small.underlined_title_yellow
  div:last-child:before {
  background-image: url(/img/supervegan/underlined_title_yellow.svg);
}
.app_supervegan
  .underlined_title_small.underlined_title_pink
  div:last-child:before {
  background-image: url(/img/supervegan/underlined_title_pink.svg);
}
.app_supervegan
  .underlined_title_small.underlined_title_orange
  div:last-child:before {
  background-image: url(/img/supervegan/underlined_title_orange.svg);
}
.app_supervegan
  .underlined_title_small.underlined_title_green
  div:last-child:before {
  background-image: url(/img/supervegan/underlined_title_green.svg);
}
.app_supervegan .thin_underline {
  letter-spacing: -0.01em;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  z-index: 5;
  margin-bottom: 0;
  line-height: 0.9;
}
.app_supervegan .thin_underline:after {
  width: 112%;
  position: absolute;
  bottom: 5px;
  left: -6%;
  padding-bottom: 9px;
  content: "";
  z-index: -1;
  background-size: 100% 100%;
  background-position: 50%;
  background-repeat: no-repeat;
}
.app_supervegan .thin_underline.thin_underline_salmon:after {
  background-image: url(/img/supervegan/thin_underline_salmon.svg);
}
.app_supervegan .rating_stars {
  position: relative;
}
.app_supervegan .rating_stars i:last-child {
  margin-right: 0;
}
.app_supervegan .rating_stars .rating_base i {
  color: #969696;
}
.app_supervegan .rating_stars .rating_filled {
  position: absolute;
  top: 0;
  overflow: hidden;
}
.app_supervegan .rating_stars .rating_filled i {
  color: #ffb020;
}
.app_supervegan .rating_stars.rating_stars_size_1 {
  width: 92px;
  height: 19px;
}
.app_supervegan .rating_stars.rating_stars_size_1 i {
  margin-right: 1.9px;
  font-size: 13px;
}
.app_supervegan
  .rating_stars.rating_stars_size_1
  .rating_filled
  .ratting_filled_inner_wrap {
  width: 92px;
}
.app_supervegan .rating_stars.rating_stars_size_2 {
  width: 120px;
  height: 20px;
}
.app_supervegan .rating_stars.rating_stars_size_2 i {
  margin-right: 1.9px;
  font-size: 18px;
}
.app_supervegan
  .rating_stars.rating_stars_size_2
  .rating_filled
  .ratting_filled_inner_wrap {
  width: 120px;
}
.app_supervegan .resume {
  background: #000 url("/img/supervegan/bg_supervegan_resume.png") no-repeat 50% /
    cover;
}
@media (min-width: 768px) {
  .app_supervegan .resume {
    min-height: 100vh;
    padding-top: 85px;
  }
}
@media (max-width: 767px) {
  .app_supervegan .resume .resume_col_2 {
    background: hsla(0, 0%, 100%, 0.05);
    border-radius: 16px;
  }
}
.app_supervegan .resume .product-gallery {
  border: 0;
  padding: 20px 16px 40px;
  width: 100%;
  max-width: 652px;
  margin: auto;
  display: block;
}
@media (max-width: 767px) {
  .app_supervegan .resume .product-gallery {
    margin-top: 30px;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 12px;
  }
}
.app_supervegan .resume .product-gallery .supervegan-product-discount-badge {
  line-height: 1;
  letter-spacing: -0.03em;
  display: inline;
  position: absolute;
  top: 4.5%;
  right: 6%;
  padding: 10px;
  background: transparent
    url(/img/supervegan/supervegan-product-discount-badge.svg) no-repeat 50%/100%
    100%;
  z-index: 10;
}
.app_supervegan
  .resume
  .product-gallery
  .supervegan-product-discount-badge
  span {
  display: block;
  text-align: right;
}
.app_supervegan
  .resume
  .product-gallery
  .supervegan-product-discount-badge
  span:first-child {
  font-size: 20px;
}
.app_supervegan
  .resume
  .product-gallery
  .supervegan-product-discount-badge
  span:nth-child(2) {
  font-size: 23px;
}
@media (max-width: 767px) {
  .app_supervegan .resume .product-gallery .supervegan-product-discount-badge {
    display: none;
  }
}
.app_supervegan .resume .product-gallery .product-carousel {
  position: relative;
  z-index: 1;
}
.app_supervegan .resume .product-gallery .product-carousel:after {
  width: 102px;
  height: 102px;
  content: "";
  position: absolute;
  bottom: 11%;
  right: 20%;
  background: url("/img/supervegan/shake_and_drink.png") no-repeat 50% / contain;
  opacity: 0;
}
@media (min-width: 768px) {
  .app_supervegan .resume .product-gallery .product-carousel:after {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
}
@media (max-width: 460px) {
  .app_supervegan .resume .product-gallery .product-carousel:after {
    right: 12%;
  }
}
.app_supervegan .resume .product-gallery .product-thumbnails {
  margin-top: 0;
  width: 100%;
  position: relative;
  z-index: 10;
}
.app_supervegan .resume .product-gallery .product-thumbnails li {
  background: #fff;
  opacity: 0.4;
  border-radius: 100%;
  overflow: hidden;
  margin: 0 7.5px;
}
.app_supervegan .resume .product-gallery .product-thumbnails li.active {
  opacity: 1;
}
@media (max-width: 767px) {
  .app_supervegan .resume .product-gallery .product-thumbnails li {
    margin: 0 10px;
  }
}
.app_supervegan .resume .product-gallery .product-thumbnails li a {
  width: 40px;
  height: 40px;
  border: 0;
}
@media (max-width: 767px) {
  .app_supervegan .resume .product-gallery .product-thumbnails li a {
    width: 36px;
    height: 36px;
  }
}
.app_supervegan .resume .product-gallery .owl-item div {
  text-align: center;
}
.app_supervegan .resume .product-gallery .owl-item div img {
  display: inline-block;
  width: 100%;
}
.app_supervegan .resume .yellow_sublitle {
  line-height: 110%;
  letter-spacing: -0.02em;
  color: #e5a218;
  text-transform: uppercase;
}
.app_supervegan .resume .supervegan_share_menu_toggle {
  color: #a9a1a1;
  cursor: pointer;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  bottom: -0.02em;
}
.app_supervegan .resume .supervegan_share_menu_toggle:hover {
  color: #fff;
}
.app_supervegan .resume .supervegan_name_and_cat {
  text-transform: uppercase;
}
.app_supervegan .resume .flavour,
.app_supervegan .resume .supervegan_name_and_cat {
  line-height: 90%;
  letter-spacing: -0.03em;
  color: #eee5b6;
}
.app_supervegan .resume .rating_numbers {
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #9da9b9;
}
.app_supervegan .resume .product_description_wrap {
  max-width: 570px;
}
.app_supervegan .resume .product_description_wrap,
.app_supervegan .resume .product_description_wrap a,
.app_supervegan .resume .product_description_wrap p {
  line-height: 120%;
  letter-spacing: -0.01em;
  font-family: futura-pt, sans-serif;
  color: #adadad;
}
.app_supervegan .resume .product_description_wrap a {
  font-weight: 600;
  text-decoration: underline;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.app_supervegan .resume .product_description_wrap a:hover {
  color: #e5a218;
}
.app_supervegan .resume .product_weight .form-control {
  display: none;
}
.app_supervegan .resume .product_weight_buttons button {
  background: rgba(32, 34, 36, 0.1);
  border: 2px solid #c9ae50;
  border-radius: 2px;
  letter-spacing: -0.02em;
  font-family: futura-pt-bold, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  padding: 0 20px;
  height: 37px;
  margin-right: 12px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.app_supervegan .resume .product_weight_buttons button.active,
.app_supervegan .resume .product_weight_buttons button:hover {
  background: #c9ae50;
  color: #000;
}
.app_supervegan .resume .product_weight_buttons button.active {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.04),
    0 2px 6px rgba(201, 174, 80, 0.12), 0 10px 20px rgba(201, 174, 80, 0.18);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(201, 174, 80, 0.12),
    0 10px 20px rgba(201, 174, 80, 0.18);
}
.app_supervegan .resume .min_info p {
  letter-spacing: -0.02em;
  color: #b6d6ee;
  line-height: 1.2;
  opacity: 0.6;
}
@media (max-width: 768px) {
  .app_supervegan .resume .supervegan_price,
  .app_supervegan .resume .supervegan_price_wrap {
    width: 100%;
  }
}
.app_supervegan .resume .supervegan_price #price {
  font-weight: 700 !important;
}
.app_supervegan .resume .supervegan_price span {
  letter-spacing: -0.02em;
}
.app_supervegan .resume .supervegan_price span.price_red_background {
  background: transparent url(/img/supervegan/price_red_background.svg)
    no-repeat 50%/100% 100%;
  padding: 0 10px;
}
.app_supervegan .resume .supervegan_price .text-muted {
  font-size: 24px;
  color: #8a939f;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .app_supervegan .resume .ammount_input_wrap {
    width: 50%;
  }
}
.app_supervegan .resume .supervegan_add_to_cart {
  color: #000;
  background: #fdb917;
  border: 1px solid hsla(0, 0%, 100%, 0.05);
  border-radius: 50px;
  height: 49px;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .app_supervegan
    .resume
    .supervegan_add_to_cart_button_wrap
    .the_add_to_cart_button_wrap {
    width: 100%;
  }
}
.app_supervegan .resume .supervegan_add_to_cart_button_wrap .btn.btn-success {
  color: #000;
  border-radius: 100px;
  background: #fdb917;
  border: 1px solid hsla(0, 0%, 100%, 0.05);
  height: 48px;
  padding: 0 32px;
  font-family: futura-pt, sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: none;
  letter-spacing: -0.029em;
  transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  margin-right: 0 !important;
}
.app_supervegan
  .resume
  .supervegan_add_to_cart_button_wrap
  .btn.btn-success:hover {
  background: #fff;
  border: 1px solid #fff;
}
@media (max-width: 767px) {
  .app_supervegan .resume .supervegan_add_to_cart_button_wrap .btn.btn-success {
    width: 100%;
    margin-right: 0;
  }
}
.app_supervegan .resume .supervegan_ammount_warp {
  position: relative;
  width: 90px;
}
.app_supervegan .resume .supervegan_ammount_input {
  height: 40px;
  padding: 0 32px;
  line-height: 40px;
  font-family: futura-pt, sans-serif;
  background: transparent;
  color: #9da9b9;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.02em;
  width: 88px;
  border: 2px solid rgba(157, 169, 185, 0.4);
  border-radius: 204px;
  text-align: center;
}
.app_supervegan
  .resume
  .supervegan_ammount_input.supervegan_ammount_input_mobile {
  line-height: 36px;
}
.app_supervegan .resume .decrease,
.app_supervegan .resume .increase {
  font-size: 0;
  padding: 18px;
  position: absolute;
  top: calc(50% - 18px);
  cursor: pointer;
}
.app_supervegan .resume .decrease:before,
.app_supervegan .resume .increase:before {
  width: 7px;
  height: 2px;
  border-radius: 20px;
  background: #9da9b9;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  content: "";
}
.app_supervegan .resume .decrease:after,
.app_supervegan .resume .increase:after {
  width: 2px;
  height: 7px;
  border-radius: 20px;
  background: #9da9b9;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  content: "";
}
.app_supervegan .resume .increase {
  right: 0;
}
.app_supervegan .resume .decrease {
  left: 0;
}
.app_supervegan .resume .decrease:after {
  display: none;
}
.app_supervegan .product_summary {
  background: #323234 url(/img/supervegan/summary_bg.png) no-repeat 50% / cover;
}
.app_supervegan .product_summary .summary_illustration {
  min-height: 350px;
}
@media (max-width: 767px) {
  .app_supervegan .product_summary .summary_illustration {
    height: 350px;
  }
}
.app_supervegan
  .product_summary
  .summary_illustration
  .product_summary_picture_wrap {
  height: 100%;
}
.app_supervegan
  .product_summary
  .summary_illustration
  .product_summary_picture_wrap
  .product_summary_picture {
  width: 100%;
  height: 100%;
  background-position: 50%;
  background-size: cover;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.04),
    0 16px 24px rgba(0, 0, 0, 0.04), 0 24px 32px rgba(0, 0, 0, 0.04);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.04),
    0 16px 24px rgba(0, 0, 0, 0.04), 0 24px 32px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
}
.app_supervegan .product_summary .summary_illustration h3 {
  line-height: 100%;
  text-shadow: 0 1.57734px 2.21381px rgba(0, 0, 0, 0.0815322),
    0 3.79056px 5.32008px rgba(0, 0, 0, 0.117129),
    0 7.13728px 10.0172px rgba(0, 0, 0, 0.145),
    0 12.7317px 17.869px rgba(0, 0, 0, 0.172871),
    0 23.8132px 33.4221px rgba(0, 0, 0, 0.208468),
    0 57px 80px rgba(0, 0, 0, 0.29);
  position: absolute;
  top: 13%;
  left: 0;
}
@media (max-width: 767px) {
  .app_supervegan .product_summary .summary_illustration h3 {
    left: 9px;
  }
}
.app_supervegan .product_summary .summary_illustration p {
  position: absolute;
  left: 0;
  bottom: 13%;
  line-height: 90%;
}
@media (max-width: 767px) {
  .app_supervegan .product_summary .summary_illustration p {
    left: 9px;
  }
}
.app_supervegan .product_summary .summary_text_wrap p {
  color: #e1dcbb;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
}
.app_supervegan .product_summary .summary_text_wrap .upper_text {
  line-height: 120%;
  letter-spacing: -0.03em;
}
.app_supervegan .product_summary .summary_text_wrap .lower_text {
  letter-spacing: -0.01em;
}
.app_supervegan .product_summary .summary_text_wrap .lower_small_text {
  line-height: 153.72%;
  letter-spacing: -0.01em;
}
.app_supervegan .product_summary .summary_text_wrap img.summary_label_2 {
  width: 100%;
  max-width: 380px;
}
.app_supervegan .product_summary_2 {
  background: #323234 url(/img/supervegan/product_summary_2_bg.png) no-repeat
    50% / cover;
}
.app_supervegan .product_summary_2 .product_summary_2_icons_wrap p {
  line-height: 170.66%;
  letter-spacing: -0.02em;
}
.app_supervegan .product_summary_2 .product_summary_2_icons_wrap i {
  width: 100%;
}
.app_supervegan .product_summary_2 .icon_wrap {
  width: 41.24px;
  height: 35px;
}
.app_supervegan .product_summary_2 .description_balloon {
  background: #fff;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.04),
    0 10px 20px rgba(0, 0, 0, 0.04);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.04),
    0 10px 20px rgba(0, 0, 0, 0.04);
  border-radius: 4px;
}
@media (max-width: 767px) {
  .app_supervegan .product_summary_2 .description_balloon {
    max-width: 400px;
  }
}
.app_supervegan .product_summary_2 .description_balloon .lower_text,
.app_supervegan .product_summary_2 .description_balloon .upper_text {
  line-height: 21px;
  letter-spacing: -0.02em;
}
.app_supervegan .product_summary_2 .supervegan_summary_2_picture {
  width: 100%;
}
@media (max-width: 767px) {
  .app_supervegan .product_summary_2 .supervegan_summary_2_picture {
    max-width: 411px;
  }
}
.app_supervegan .product_summary_2 .product_summary_2_carousel_header h3 {
  line-height: 80%;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .app_supervegan .product_summary_2 .product_summary_2_carousel_header h3 {
    width: 100%;
    text-align: left;
  }
}
.app_supervegan .product_summary_2 .product_summary_2_carousel_header p {
  line-height: 21px;
  letter-spacing: -0.02em;
}
.app_supervegan .product_summary_2 .product_summary_2_carousel_header p a {
  text-decoration: none;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.app_supervegan
  .product_summary_2
  .product_summary_2_carousel_header
  p
  a:hover {
  color: #fff;
}
@media (max-width: 767px) {
  .app_supervegan .product_summary_2 .product_summary_2_carousel_header p {
    width: 100%;
    text-align: left;
  }
}
.app_supervegan .product_summary_2 .product_features_highlight_image {
  max-width: 535px;
}
.app_supervegan .product_summary_2 .product_features_highlight_wrap {
  width: 100%;
  max-width: 472px;
}
@media (max-width: 767px) {
  .app_supervegan .product_summary_2 .product_features_highlight_wrap {
    width: 90%;
    max-width: 440px;
  }
}
.app_supervegan
  .product_summary_2
  .product_features_highlight_wrap
  .product_features_highlight_inner_wrap {
  width: 100%;
  padding-bottom: 18.8087774295%;
  position: relative;
}
.app_supervegan
  .product_summary_2
  .product_features_highlight_wrap
  .product_features_highlight_inner_wrap
  .product_features_highlight_content_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 14px;
  padding-bottom: 14px;
}
@media (max-width: 767px) {
  .app_supervegan
    .product_summary_2
    .product_features_highlight_wrap
    .product_features_highlight_inner_wrap
    .product_features_highlight_content_wrap {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.app_supervegan
  .product_summary_2
  .product_features_highlight_wrap
  .product_features_highlight_inner_wrap
  .product_features_highlight_content_wrap
  div {
  z-index: 10;
  border-right: 1px solid #ffd93f;
}
.app_supervegan
  .product_summary_2
  .product_features_highlight_wrap
  .product_features_highlight_inner_wrap
  .product_features_highlight_content_wrap
  div:last-child {
  border-right: 0;
}
.app_supervegan
  .product_summary_2
  .product_features_highlight_wrap
  .product_features_highlight_inner_wrap
  .product_features_highlight_content_wrap
  div
  p {
  text-align: center;
}
.app_supervegan
  .product_summary_2
  .product_features_highlight_wrap
  .product_features_highlight_inner_wrap
  .product_features_highlight_content_wrap
  div
  .product_features_highlight_big {
  line-height: 0.9;
}
.app_supervegan
  .product_summary_2
  .product_features_highlight_wrap
  .product_features_highlight_inner_wrap
  .product_features_highlight_content_wrap
  div
  .product_features_highlight_small {
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.app_supervegan
  .product_summary_2
  .product_features_highlight_wrap
  .product_features_highlight_inner_wrap
  .product_features_highlight_content_wrap
  div
  .product_features_highlight_medium {
  line-height: 0.9;
}
.app_supervegan .product_summary_2 .product_features_highlight_wrap:after {
  content: "";
  position: absolute;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%;
  top: -10%;
  width: 112%;
  padding-bottom: 32%;
  background: transparent url(/img/supervegan/product_features_highlight_bg.svg)
    no-repeat 50% / contain;
  z-index: 0;
}
.app_supervegan .ingredients_wrap {
  background: #fff url(/img/supervegan/ingredients_bg.png) no-repeat 50% / cover;
}
.app_supervegan .ingredients_wrap .ingredientes_title {
  line-height: 80%;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
  display: table-cell;
}
.app_supervegan .ingredients_wrap .ingredientes_title:after {
  width: 130%;
  padding-bottom: 6.4%;
  left: -14%;
  top: 70%;
  content: "";
  background: transparent url(/img/supervegan/underline.svg) no-repeat 50%/100%
    100%;
  position: absolute;
  z-index: -1;
}
.app_supervegan .ingredients_wrap .ingredientes_claim {
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.app_supervegan .ingredients_wrap .ingredient_name {
  font-weight: 600;
  font-family: futura-pt, sans-serif;
  letter-spacing: -0.02em;
  line-height: 110%;
}
@media (min-width: 768px) {
  .app_supervegan .ingredients_wrap .ingredient_name {
    font-style: italic;
    color: #433225;
  }
}
@media (max-width: 767px) {
  .app_supervegan .ingredients_wrap .ingredient_name {
    color: #1e8e20;
  }
}
.app_supervegan .ingredients_wrap .ingredient_description {
  line-height: 155%;
  letter-spacing: -0.02em;
  overflow: hidden;
  display: block;
  height: auto !important;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.app_supervegan .ingredients_wrap .ingredient_description.show {
  max-height: 999px !important;
}
.app_supervegan .ingredients_wrap .ingredients_read_more_button {
  letter-spacing: -0.02em;
}
.app_supervegan
  .ingredients_wrap
  .ingredients_read_more_button
  span
  span:first-child {
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  margin-right: 13px;
}
.app_supervegan
  .ingredients_wrap
  .ingredients_read_more_button
  span
  span:nth-child(2) {
  font-size: 24px;
  bottom: -2px;
  position: relative;
}
.app_supervegan
  .ingredients_wrap
  .ingredients_read_more_button
  .show_when_collapsed {
  display: none;
}
.app_supervegan
  .ingredients_wrap
  .ingredients_read_more_button.collapsed
  .show_when_collapsed,
.app_supervegan
  .ingredients_wrap
  .ingredients_read_more_button
  .show_when_expanded {
  display: block;
}
.app_supervegan
  .ingredients_wrap
  .ingredients_read_more_button.collapsed
  .show_when_expanded {
  display: none;
}
.app_supervegan .nutritrion_facts {
  background: transparent url(/img/supervegan/nutritrion_facts_bg.png) no-repeat
    50% / cover;
}
.app_supervegan .nutritrion_facts .nutritrion_facts_title {
  letter-spacing: -0.01em;
  text-transform: uppercase;
  z-index: 1;
}
@media (max-width: 767px) {
  .app_supervegan .nutritrion_facts .nutritrion_table_wrap {
    overflow-x: scroll;
  }
}
.app_supervegan
  .nutritrion_facts
  .nutritrion_table_wrap
  .nutritrion_table_illustration_wrap
  img {
  width: 150%;
  max-width: 150%;
}
.app_supervegan .nutritrion_facts .nutritrion_table_wrap:before {
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.04),
    0 2px 6px rgba(234, 230, 255, 0.12), 0 16px 24px rgba(234, 230, 255, 0.2);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(234, 230, 255, 0.12),
    0 16px 24px rgba(234, 230, 255, 0.2);
  border-radius: 8px;
  position: absolute;
  background: hsla(0, 0%, 100%, 0.6);
}
@media (min-width: 768px) {
  .app_supervegan .nutritrion_facts .nutritrion_table_wrap:before {
    width: 82%;
    height: calc(100% + 100px);
    top: -50px;
    content: "";
    right: 0;
  }
}
@media (max-width: 767px) {
  .app_supervegan .nutritrion_facts .nutritrion_table_wrap:before {
    width: 100%;
    height: 100%;
    content: "";
    top: 0;
    left: 0;
  }
}
.app_supervegan .nutritrion_facts .nutritrion_table_wrap .nutritrion_table {
  width: 100%;
  mix-blend-mode: darken;
  max-width: 500px;
}
.app_supervegan
  .nutritrion_facts
  .nutritrion_table_wrap
  .nutritrion_table_wrap_col {
  overflow: -moz-scrollbars-none;
  -ms-overflow-style: none;
  overflow-x: scroll;
  overflow-y: hidden;
}
.app_supervegan
  .nutritrion_facts
  .nutritrion_table_wrap
  .nutritrion_table_wrap_col::-webkit-scrollbar {
  display: none;
}
.app_supervegan .product_summary_3 {
  background: #fff url(/img/supervegan/ingredients_bg.png) no-repeat 50% / cover;
}
@media (min-width: 768px) {
  .app_supervegan .product_summary_3 .product_summary_3_left_column_wrap {
    min-height: 280px;
  }
}
@media (max-width: 767px) {
  .app_supervegan .product_summary_3 .product_summary_3_title_img {
    max-width: 341px;
  }
}
@media (max-width: 370px) {
  .app_supervegan .product_summary_3 .product_summary_3_title_img {
    width: calc(100% + 60px);
    margin-left: -24px !important;
    max-width: 9999999px;
  }
}
.app_supervegan .product_summary_3 .product_summary_3_title {
  margin-bottom: 40px;
  text-align: left;
}
@media (max-width: 767px) {
  .app_supervegan .product_summary_3 .product_summary_3_title {
    margin-bottom: 30px;
    text-align: center;
  }
}
.app_supervegan .product_summary_3 .product_summary_3_title p {
  padding: 0 24px;
  display: inline-block;
  white-space: nowrap;
}
.app_supervegan .product_summary_3 .product_summary_3_title p:first-child {
  font-size: calc(24px + 2 * ((100vw - 350px) / 1090));
  background: transparent url("/img/supervegan/product_summary_3_title_bg.svg")
    no-repeat 50%/100% 100%;
  color: #fff;
  max-width: 340px;
  min-height: 20px;
  line-height: 1;
  line-height: 1.4;
  margin-bottom: 3px;
}
@media (min-width: 1440px) {
  .app_supervegan .product_summary_3 .product_summary_3_title p:first-child {
    font-size: 26px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .product_summary_3 .product_summary_3_title p:first-child {
    font-size: 24px;
  }
}
.app_supervegan .product_summary_3 .product_summary_3_title p:first-child span {
  position: relative;
  bottom: -3px;
}
.app_supervegan .product_summary_3 .product_summary_3_title p:last-child {
  font-size: calc(30px + 7 * ((100vw - 350px) / 1090));
  color: #8b222c;
  line-height: 1;
}
@media (min-width: 1440px) {
  .app_supervegan .product_summary_3 .product_summary_3_title p:last-child {
    font-size: 37px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .product_summary_3 .product_summary_3_title p:last-child {
    font-size: 30px;
  }
}
.app_supervegan .product_summary_3 .product_summary_3_list {
  letter-spacing: -0.025em;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .app_supervegan .product_summary_3 .product_summary_3_list {
    padding-left: 7%;
  }
}
@media (max-width: 767px) {
  .app_supervegan .product_summary_3 .product_summary_3_list {
    padding-left: 0;
    max-width: 400px;
    display: block;
    margin: auto;
  }
}
.app_supervegan .product_summary_3 .product_summary_3_list li {
  list-style: none;
  padding-bottom: 5%;
}
.app_supervegan .product_summary_3 .product_summary_3_list a {
  text-decoration: none;
  text-decoration: underline;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.app_supervegan .product_summary_3 .product_summary_3_list a:hover {
  color: #96c950;
}
.app_supervegan
  .product_summary_3
  .product_summary_3_illustration_wrap
  .product_summary_3_illustration_inner_wrap {
  width: calc(100% - 30px);
  height: 0;
  padding-bottom: 72.6480836237%;
  position: absolute;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.app_supervegan .product_summary_3 .product_summary_3_illustration_wrap img {
  position: absolute;
}
.app_supervegan
  .product_summary_3
  .product_summary_3_illustration_wrap
  img:first-child {
  width: 72.9965156794%;
  right: 0;
  top: 0;
  -webkit-box-shadow: 0 8.46335px 4.19699px rgba(0, 0, 0, 0.0282725),
    0 9.74152px 14.0968px rgba(0, 0, 0, 0.0417275),
    0 13.7199px 63.1116px rgba(0, 0, 0, 0.07);
  box-shadow: 0 8.46335px 4.19699px rgba(0, 0, 0, 0.0282725),
    0 9.74152px 14.0968px rgba(0, 0, 0, 0.0417275),
    0 13.7199px 63.1116px rgba(0, 0, 0, 0.07);
  border-radius: 9.14661px;
}
.app_supervegan
  .product_summary_3
  .product_summary_3_illustration_wrap
  img:nth-child(2) {
  width: 40.0696864111%;
  left: 0;
  bottom: 0;
  -webkit-box-shadow: 0 8.46335px 4.19699px rgba(0, 0, 0, 0.04),
    0 9.74152px 14.0968px rgba(0, 0, 0, 0.04),
    0 13.7199px 63.1116px rgba(0, 0, 0, 0.08);
  box-shadow: 0 8.46335px 4.19699px rgba(0, 0, 0, 0.04),
    0 9.74152px 14.0968px rgba(0, 0, 0, 0.04),
    0 13.7199px 63.1116px rgba(0, 0, 0, 0.08);
  border-radius: 9.14661px;
}
.app_supervegan .product_faqs {
  background: #fff;
}
.app_supervegan .product_faqs .faqs_title {
  z-index: 1;
}
.app_supervegan .product_faqs .faqs_title.faqs_title_1 {
  margin-top: 80px;
}
.app_supervegan .product_faqs .faqs_claim {
  letter-spacing: -0.02em;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .app_supervegan .product_faqs .faqs_claim {
    padding-left: 40px;
  }
}
@media (max-width: 767px) {
  .app_supervegan .product_faqs .faqs_claim {
    text-align: center;
    max-width: 400px;
  }
}
.app_supervegan .product_faqs .faqs_list {
  padding-left: 0;
}
@media (max-width: 767px) {
  .app_supervegan .product_faqs .faqs_list {
    max-width: 400px;
    display: block;
    margin: auto;
  }
}
.app_supervegan .product_faqs .faqs_list li {
  list-style: none;
  margin-bottom: 30px;
}
.app_supervegan .product_faqs .faqs_list li .faq_question {
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .app_supervegan .product_faqs .faqs_list li .faq_question {
    padding-left: 40px;
  }
}
@media (max-width: 767px) {
  .app_supervegan .product_faqs .faqs_list li .faq_question {
    padding-right: 40px;
  }
}
.app_supervegan .product_faqs .faqs_list li .faq_question:before {
  content: "\E914";
  font-family: icomoon !important;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  color: #000;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .app_supervegan .product_faqs .faqs_list li .faq_question:before {
    left: 0;
  }
}
@media (max-width: 767px) {
  .app_supervegan .product_faqs .faqs_list li .faq_question:before {
    right: 0;
  }
}
.app_supervegan .product_faqs .faqs_list li .faq_question.collapsed:before {
  content: "\E915";
}
.app_supervegan .product_faqs .faqs_list li .faq_answer {
  line-height: 145%;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .app_supervegan .product_faqs .faqs_list li .faq_answer {
    padding-left: 40px;
  }
}
.app_supervegan .recipes {
  background: #000 url(/img/supervegan/recipes_bg.png) no-repeat 50% / cover;
}
@media (max-width: 767px) {
  .app_supervegan .recipes {
    border-radius: 16px;
  }
}
.app_supervegan .recipes .recipes_title {
  line-height: 1;
}
.app_supervegan .recipes .recipes_title .recipes_title_big_font {
  letter-spacing: -0.01em;
  text-transform: uppercase;
  z-index: 1;
}
.app_supervegan .recipes .recipes_title .recipes_title_big_font:after {
  width: 121%;
  padding-bottom: 11%;
  left: -9%;
  top: 70%;
  content: "";
  background: transparent url(/img/supervegan/underline_orange.svg) no-repeat
    50%/100% 100%;
  position: absolute;
  z-index: -1;
}
.app_supervegan .recipes .recipes_title .recipes_title_small_font {
  opacity: 0.5;
  letter-spacing: -0.02em;
}
.app_supervegan .recipes a.view_more_recipes {
  text-transform: uppercase;
  color: #8a939f;
  letter-spacing: -0.02em;
  border: 1px solid #8a939f;
  -webkit-box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  border-radius: 50px;
  padding: 8px 34px;
  transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
}
.app_supervegan .recipes a.view_more_recipes:hover {
  color: #000;
  background: #fff;
  border: 1px solid #fff;
}
.app_supervegan .recipes .recipes_wrap {
  position: relative;
}
.app_supervegan .recipes .the_recipe {
  position: relative;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  display: block;
  overflow: hidden;
  cursor: pointer;
}
@media (min-width: 768px) {
  .app_supervegan .recipes .the_recipe {
    width: 33.333%;
    padding-bottom: 20%;
  }
  .app_supervegan .recipes .the_recipe:first-child {
    position: relative;
    width: 66.666%;
    padding-bottom: 40%;
  }
  .app_supervegan .recipes .the_recipe:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
  }
  .app_supervegan .recipes .the_recipe:nth-child(3) {
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
@media (max-width: 767px) {
  .app_supervegan .recipes .the_recipe {
    width: 100%;
    padding-bottom: 44.0251572327%;
    margin-bottom: 12px;
    border-radius: 4px;
    display: block;
  }
}
.app_supervegan .recipes .the_recipe .the_recipe_picture {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background-position: 50%;
  background-size: cover;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
}
.app_supervegan .recipes .the_recipe .the_recipe_caption {
  padding: 18px;
  background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(transparent),
      to(rgba(0, 0, 0, 0.6))
    ),
    -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2)));
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.6)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  opacity: 1;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.app_supervegan .recipes .the_recipe:hover .the_recipe_picture {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}
@media (min-width: 768px) {
  .app_supervegan .recipes .the_recipe:hover .the_recipe_caption {
    opacity: 0;
  }
}
.app_supervegan .recipes .the_recipe_caption {
  position: absolute;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  top: -2px;
  left: -2px;
  z-index: 100;
}
.app_supervegan .reviews .supervegan_comment_statistic_wrap {
  border: 1px solid #969696;
  border-radius: 4px;
}
.app_supervegan .reviews .average_rating_int {
  text-shadow: 0 1px 3px rgba(82, 82, 82, 0.2);
  background: #ffb020;
  border-radius: 3px;
  width: 35px;
  text-align: center;
}
@media (min-width: 768px) {
  .app_supervegan .reviews .supervegan_comment_statistic_first_column {
    border-right: 1px solid #969696;
  }
}
.app_supervegan .reviews .number_of_comments {
  letter-spacing: -0.02em;
}
.app_supervegan .reviews .average_star_wrap {
  height: 20px;
}
.app_supervegan .reviews .average_star_wrap .progress_bar {
  width: calc(100% - 60px);
  height: 4px;
  background: #e6e7eb;
  border-radius: 40px;
  margin: 0 10px;
}
.app_supervegan .reviews .average_star_wrap .progress_bar div {
  height: 100%;
  background: #ffb020;
  position: relative;
  border-radius: 60px;
}
.app_supervegan .reviews .average_star_wrap .average_star_percentage {
  width: 40px;
}
.app_supervegan .reviews .average_star_wrap .average_star_number {
  width: 12px;
}
.app_supervegan .reviews .reviews_title {
  line-height: 1;
}
.app_supervegan .reviews .reviews_title .reviews_title_big_font {
  letter-spacing: -0.01em;
  text-transform: uppercase;
  z-index: 1;
}
.app_supervegan .reviews .reviews_title .reviews_title_big_font:after {
  width: 119%;
  padding-bottom: 9%;
  left: -9%;
  top: 70%;
  content: "";
  background: transparent url(/img/supervegan/underline_green.svg) no-repeat 50%/100%
    100%;
  position: absolute;
  z-index: -1;
}
.app_supervegan .reviews .reviews_title .reviews_title_small_font {
  opacity: 0.5;
  letter-spacing: -0.02em;
}
.app_supervegan .reviews .write_a_review_button {
  font-weight: 500;
  letter-spacing: -0.03em;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.app_supervegan .reviews .write_a_review_button:hover {
  color: #96c950;
}
.app_supervegan .reviews .view_more_reviews {
  text-transform: uppercase;
  color: #8a939f;
  letter-spacing: -0.02em;
  border: 1px solid #8a939f;
  border-radius: 50px;
  padding: 8px 34px;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.app_supervegan .reviews .view_more_reviews:hover {
  color: #fff;
  background: #000;
  border: 1px solid #000;
}
@media (max-width: 767px) {
  .app_supervegan .reviews .view_more_reviews {
    border: 2px solid #ffb520;
    font-weight: 600;
    text-transform: capitalize;
    color: #525252;
    width: 100%;
    max-width: 270px;
  }
}
.app_supervegan .reviews .view_more_reviews .show_when_expanded {
  display: block;
}
.app_supervegan
  .reviews
  .view_more_reviews.accordeon_closed
  .show_when_expanded,
.app_supervegan .reviews .view_more_reviews .show_when_collapsed {
  display: none;
}
.app_supervegan
  .reviews
  .view_more_reviews.accordeon_closed
  .show_when_collapsed {
  display: block;
}
.app_supervegan .reviews .supervegan_comments_wrap {
  overflow: hidden;
  display: block;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: auto;
}
.app_supervegan .reviews .supervegan_comments_wrap .no_comments_yet {
  max-height: 0 !important;
}
.app_supervegan .reviews .supervegan_comment_wrap {
  border: 1px solid #c6e39d;
  border-radius: 4px;
  background: rgba(150, 201, 80, 0.02);
}
.app_supervegan .reviews .supervegan_comment_wrap.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media (min-width: 768px) {
  .app_supervegan
    .reviews
    .supervegan_comment_wrap
    .supervegan_comment_column:first-child {
    border-right: 1px solid #c6e39d;
  }
}
@media (max-width: 767px) {
  .app_supervegan
    .reviews
    .supervegan_comment_wrap
    .supervegan_comment_column:first-child {
    background: rgba(227, 233, 237, 0.6);
  }
}
.app_supervegan .reviews .supervegan-comment-author {
  letter-spacing: -0.03em;
}
.app_supervegan .reviews .rating-stars .icomoon-star {
  color: #8a939f;
}
.app_supervegan .reviews .rating-stars .icomoon-star-filled {
  color: #ffb020;
}
.app_supervegan .reviews .supervegan-comment-title {
  letter-spacing: -0.03em;
}
.app_supervegan .reviews .supervegan-comment-text {
  line-height: 1.7;
}
@media (max-width: 767px) {
  .app_supervegan .reviews .supervegan-comment-text {
    line-height: 149.76%;
  }
}
.app_supervegan .reviews .supervegan_comment_date {
  line-height: 1;
}
.app_supervegan .reviews .average_rating_recomendations_number {
  text-shadow: 0 1px 3px rgba(82, 82, 82, 0.2);
  background: #1e8e20;
  border-radius: 3px;
  min-width: 44px;
  text-align: center;
}
.app_supervegan .reviews .average_rating_recomendations_text {
  letter-spacing: -0.02em;
}
.app_supervegan .reviews .average_ratings_category_bar {
  background: #fff;
  border: 1px solid #9da9b9;
  height: 7px;
  border-radius: 10px;
}
.app_supervegan .reviews .average_ratings_category_bar div {
  border: 1px solid #9da9b9;
  width: 50%;
  height: 100%;
}
.app_supervegan .reviews .average_ratings_category_bar span {
  background: #e3e9ed;
  mix-blend-mode: darken;
  height: 6px;
  position: absolute;
  top: 0;
  left: 0;
}
.app_supervegan .reviews .average_ratings_category_bar span span {
  background: #525252;
  border-radius: 10px;
  width: 11px;
  height: 11px;
  background-blend-mode: none;
  display: block;
  right: -5.5px;
  top: -2px;
  left: unset;
}
.app_supervegan .reviews .review_picture_thumbnail_wrap {
  width: calc(33.333% - 5px);
  margin-right: 5px;
  margin-bottom: 5px;
}
.app_supervegan .reviews .review_picture_thumbnail {
  width: 100%;
  padding-bottom: 100%;
  border-radius: 4px;
  border: 1px solid #ccc;
  display: block;
  background-position: 50%;
  background-size: cover;
}
.app_supervegan .reviews .average_ratings_categories_text {
  width: 135px;
  line-height: 1;
  font-size: 14px;
}
.app_supervegan .reviews .average_ratings_categories_text_small {
  font-size: 13px;
  letter-spacing: -0.02em;
}
.app_supervegan .reviews .review_picture_thumbnails_wrap {
  margin-left: 17px;
  margin-bottom: -5px;
}
.app_supervegan .more_info {
  background: #000 url(/img/supervegan/more_info_bg.png) no-repeat 50% / cover;
}
.app_supervegan .more_info.more_info_with_bottom_transition {
  padding-bottom: 8.6805555556%;
  position: relative;
}
@media (max-width: 767px) {
  .app_supervegan .more_info.more_info_with_bottom_transition {
    padding-bottom: calc(8.6805555556% + 48px);
  }
}
.app_supervegan .more_info.more_info_with_bottom_transition:after {
  background: transparent url(/img/supervegan/home_section_2_after.svg)
    no-repeat bottom/100%;
  content: "";
  position: absolute;
  left: -1px;
  bottom: -1px;
  width: calc(100% + 2px);
  height: 0;
  padding-bottom: calc(8.6805555556% + 2px);
}
.app_supervegan .more_info .more_info_title {
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .app_supervegan .more_info .more_info_title {
    text-transform: none;
    color: #ffb020;
    letter-spacing: -0.02em;
    font-weight: 700;
    font-style: normal;
    font-family: futura-pt, sans-serif;
  }
}
.app_supervegan .more_info .more_info_caption {
  line-height: 1.2;
}
.app_supervegan .more_info .view_articles_button {
  line-height: 19px;
  padding: 10px 24px;
  color: #424b5a;
  border: 2px solid #424b5a;
  border-radius: 4px;
  transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
}
.app_supervegan .more_info .view_articles_button:hover {
  background: #000;
  border: 2px solid #000;
  color: #fff;
}
.app_supervegan .more_info .article_illustration {
  padding-bottom: 68.7679083095%;
  height: 0;
  border-radius: 4px;
  background-position: 50%;
  background-size: cover;
  transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
}
.app_supervegan .more_info .article_illustration .article_cat {
  top: 9px;
  right: 9px;
  background: #fff;
  padding: 2px 5px;
  border-radius: 3px;
  text-transform: uppercase;
}
.app_supervegan .more_info .article_wrap:hover .article_illustration {
  opacity: 0.6;
}
.app_supervegan .more_info .article_title {
  line-height: 1.2;
}
.app_supervegan .more_info .article_excerpt {
  line-height: 1.3;
}
@media (max-width: 575px) {
  .app_supervegan .more_info .more_info_carousel .owl-stage {
    left: -16px;
  }
}
.app_supervegan .more_info .more_info_carousel .owl-stage-outer {
  overflow: visible;
}
@media (min-width: 768px) {
  .app_supervegan .more_info .more_info_carousel .owl-nav {
    display: none;
  }
}
@media (max-width: 576px) {
  .app_supervegan .more_info .more_info_carousel .owl-nav {
    display: block;
  }
}
.app_supervegan .more_info .more_info_carousel .owl-nav .owl-next,
.app_supervegan .more_info .more_info_carousel .owl-nav .owl-prev {
  top: 0;
  font-size: 0;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 100px;
  opacity: 1;
  margin-top: 0;
}
@media (max-width: 767px) {
  .app_supervegan .more_info .more_info_carousel .owl-nav .owl-next,
  .app_supervegan .more_info .more_info_carousel .owl-nav .owl-prev {
    top: 85px;
    width: 20px;
    height: 20px;
  }
}
.app_supervegan .more_info .more_info_carousel .owl-nav .owl-next:after,
.app_supervegan .more_info .more_info_carousel .owl-nav .owl-prev:after {
  font-family: icomoon !important;
  color: #000;
  top: 2px;
  font-size: 12px;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .app_supervegan .more_info .more_info_carousel .owl-nav .owl-next:after,
  .app_supervegan .more_info .more_info_carousel .owl-nav .owl-prev:after {
    top: 52%;
    font-size: 6px;
  }
}
@media (min-width: 768px) {
  .app_supervegan .more_info .more_info_carousel .owl-nav .owl-prev {
    left: 56px;
  }
}
@media (max-width: 767px) {
  .app_supervegan .more_info .more_info_carousel .owl-nav .owl-prev {
    left: 8px;
  }
}
.app_supervegan .more_info .more_info_carousel .owl-nav .owl-prev:after {
  content: "\E90B";
  left: 48%;
}
.app_supervegan .more_info .more_info_carousel .owl-nav .owl-next {
  right: 64px;
}
@media (max-width: 1200px) {
  .app_supervegan .more_info .more_info_carousel .owl-nav .owl-next {
    right: 25px;
  }
}
@media (max-width: 767px) {
  .app_supervegan .more_info .more_info_carousel .owl-nav .owl-next {
    right: 8px;
  }
}
.app_supervegan .more_info .more_info_carousel .owl-nav .owl-next:after {
  content: "\E905";
  left: 52%;
}
.app_supervegan .more_info .more_info_carousel .owl-dot {
  width: 13px;
  height: 13px;
  background: #e3e9ed;
  opacity: 0.8;
  border: 2px solid #1a1b1c;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  position: relative;
}
.app_supervegan .more_info .more_info_carousel .owl-dot.active {
  background: transparent;
  border: 2px solid #ff8c09;
}
.app_supervegan .more_info a.view_more_info {
  color: #fff;
  background: #ff7a00;
  letter-spacing: -0.02em;
  border: 1px solid #ff7a00;
  -webkit-box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  border-radius: 50px;
  padding: 8px 34px;
  transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
}
.app_supervegan .more_info a.view_more_info:hover {
  color: #ff7a00;
  background: #fff;
  border: 1px solid #fff;
}
.app_supervegan .msg-notification {
  position: fixed;
  background: hsla(0, 0%, 100%, 0.9);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.04),
    0 10px 20px rgba(0, 0, 0, 0.04);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.04),
    0 10px 20px rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  padding: 24px;
  top: 160px;
  left: 50%;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  width: calc(100% - 80px);
  max-width: 1000px;
  z-index: 900;
}
.app_supervegan .supervegan_nav {
  bottom: 24px;
  max-width: 1328px;
  background: rgba(68, 68, 68, 0.9);
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(68, 68, 68, 0.9)),
    to(rgba(68, 68, 68, 0.9))
  );
  background: linear-gradient(
    0deg,
    rgba(68, 68, 68, 0.9),
    rgba(68, 68, 68, 0.9)
  );
  border-radius: 20px;
  position: fixed;
}
@media (min-width: 768px) {
  .app_supervegan .supervegan_nav {
    z-index: 1000;
    width: calc(100% - 40px);
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 67px;
  }
  .app_supervegan .supervegan_nav.fixed_on_first_section {
    position: absolute;
    bottom: unset;
    top: 770px;
  }
}
@media (max-width: 767px) {
  .app_supervegan .supervegan_nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    top: 0;
    width: 100%;
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .app_supervegan .supervegan_nav .supervegan_breadcrumbs {
    width: 100%;
    background: #000 url("/img/supervegan/bg_supervegan_resume.png") no-repeat
      bottom/200%;
  }
}
.app_supervegan .supervegan_nav .supervegan_breadcrumbs span {
  letter-spacing: -0.03em;
}
.app_supervegan .supervegan_nav .supervegan_breadcrumbs a,
.app_supervegan .supervegan_nav .supervegan_breadcrumbs div,
.app_supervegan .supervegan_nav .supervegan_breadcrumbs span {
  margin-right: 15px;
}
@media (max-width: 991px) {
  .app_supervegan .supervegan_nav .supervegan_breadcrumbs a,
  .app_supervegan .supervegan_nav .supervegan_breadcrumbs div,
  .app_supervegan .supervegan_nav .supervegan_breadcrumbs span {
    margin-right: 10px;
    display: inline-block;
  }
}
.app_supervegan .supervegan_nav .supervegan_breadcrumbs a {
  line-height: 1;
  letter-spacing: -0.03em;
  color: #adadad;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.app_supervegan .supervegan_nav .supervegan_breadcrumbs a:hover {
  color: #96c950;
}
.app_supervegan
  .supervegan_nav
  .supervegan_breadcrumbs
  .supervegan_breadcrumbs_spacer
  i {
  color: #adadad;
}
@media (max-width: 767px) {
  .app_supervegan .supervegan_nav .supervegan_nav_the_nav_wrap {
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
  }
  .app_supervegan
    .supervegan_nav
    .supervegan_nav_the_nav_wrap::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 767px) {
  .app_supervegan .supervegan_nav .supervegan_nav_the_nav_wrap nav {
    width: 500px;
  }
}
.app_supervegan .supervegan_nav .supervegan_nav_the_nav_wrap nav a {
  letter-spacing: -0.02em;
  color: #adadad;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  margin-right: 24px;
}
@media (max-width: 767px) {
  .app_supervegan .supervegan_nav .supervegan_nav_the_nav_wrap nav a {
    margin-right: 16px;
  }
}
.app_supervegan .supervegan_nav .supervegan_nav_the_nav_wrap nav a:last-child {
  margin-right: 0;
}
.app_supervegan .supervegan_nav .supervegan_nav_the_nav_wrap nav a.active {
  color: #ffd725;
  position: relative;
}
@media (max-width: 767px) {
  .app_supervegan .supervegan_nav .supervegan_nav_the_nav_wrap nav a.active {
    color: #adadad;
  }
}
.app_supervegan .supervegan_comment_form .supervegan_comment_form_inner_wrap {
  background: #fff;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: calc(100% - 40px);
  max-width: 800px;
}
.app_supervegan .supervegan_home {
  width: 100%;
  overflow: hidden;
}
.app_supervegan .supervegan_home_carousel .item .supervegan_home_carousel_bg {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-size: cover;
  background-position: 50%;
}
.app_supervegan .supervegan_home_carousel .item h2 {
  line-height: 0.93;
}
.app_supervegan .supervegan_home_carousel .item p {
  line-height: 1;
}
.app_supervegan .supervegan_home_carousel .supervegan_home_carousel_img {
  width: 100%;
  height: auto;
}
.app_supervegan .supervegan_home_carousel .owl-next,
.app_supervegan .supervegan_home_carousel .owl-prev {
  top: calc(50% - 20px);
  font-size: 0;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 100px;
  opacity: 1;
  -webkit-box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15),
    0 2px 5px rgba(0, 0, 0, 0.2), 0 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15), 0 2px 5px rgba(0, 0, 0, 0.2),
    0 4px 4px rgba(0, 0, 0, 0.25);
}
@media (max-width: 767px) {
  .app_supervegan .supervegan_home_carousel .owl-next,
  .app_supervegan .supervegan_home_carousel .owl-prev {
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
  }
}
.app_supervegan .supervegan_home_carousel .owl-next:after,
.app_supervegan .supervegan_home_carousel .owl-prev:after {
  font-family: icomoon !important;
  color: #000;
  position: absolute;
  top: 1px;
  font-size: 12px;
}
@media (max-width: 767px) {
  .app_supervegan .supervegan_home_carousel .owl-next:after,
  .app_supervegan .supervegan_home_carousel .owl-prev:after {
    font-size: 6px;
    line-height: 3;
  }
}
.app_supervegan .supervegan_home_carousel .owl-prev {
  left: 32px;
}
@media (max-width: 767px) {
  .app_supervegan .supervegan_home_carousel .owl-prev {
    left: 9px;
  }
}
.app_supervegan .supervegan_home_carousel .owl-prev:after {
  content: "\E90B";
  left: 42%;
}
@media (max-width: 767px) {
  .app_supervegan .supervegan_home_carousel .owl-prev:after {
    left: 39%;
  }
}
.app_supervegan .supervegan_home_carousel .owl-next {
  right: 32px;
}
@media (max-width: 767px) {
  .app_supervegan .supervegan_home_carousel .owl-next {
    right: 9px;
  }
}
.app_supervegan .supervegan_home_carousel .owl-next:after {
  content: "\E905";
  left: 47%;
}
@media (max-width: 767px) {
  .app_supervegan .supervegan_home_carousel .owl-next:after {
    left: 45%;
  }
}
.app_supervegan .supervegan_home_carousel .owl-dots {
  margin-top: 0;
  position: absolute;
  bottom: -44px;
}
.app_supervegan .supervegan_home_carousel .owl-dots .owl-dot {
  width: 13px;
  height: 13px;
  background: #e3e9ed;
  opacity: 0.8;
  border: 2px solid #1a1b1c;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  position: relative;
}
.app_supervegan .supervegan_home_carousel .owl-dots .owl-dot.active {
  background: transparent;
  border: 2px solid #ff8c09;
}
.app_supervegan .homepage_shipping_info_mobile {
  width: 100%;
  background: #000;
  position: absolute;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  z-index: 10;
}
.app_supervegan .homepage_shipping_info_mobile span {
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  line-height: 1.2666666667;
  letter-spacing: -0.02em;
  font-size: 14px;
  color: #9da9b9;
}
.app_supervegan .homepage_shipping_info_mobile span strong {
  font-weight: 700;
}
.app_supervegan .homepage_shipping_info_mobile span b {
  font-family: futura-pt-bold, sans-serif;
  font-weight: 700;
}
@media (min-width: 1071px) {
  .app_supervegan .homepage_shipping_info_mobile {
    display: none;
  }
}
.app_supervegan .home_section_2 {
  background: #000 url(/img/supervegan/home_section_2.png) no-repeat 50% / cover;
  padding-bottom: 0;
  position: relative;
  padding-top: 76px;
  padding-bottom: 64px;
}
@media (max-width: 767px) {
  .app_supervegan .home_section_2 {
    padding-bottom: 24px;
  }
}
.app_supervegan .home_section_2:before {
  content: "";
  height: 76px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(5, 5, 5, 0.6)),
    to(rgba(53, 53, 53, 0))
  );
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.6), rgba(53, 53, 53, 0));
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.app_supervegan .home_section_2 .home_section_2_icon_1 {
  width: 40px;
  height: 40px;
  background: #1e1f20;
  border-radius: 100px;
  position: relative;
  font-size: 16px;
}
.app_supervegan .home_section_2 .home_section_2_icon_1:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.app_supervegan .home_section_2 .home_section_2_text_1,
.app_supervegan .home_section_2 .home_section_2_text_2 {
  letter-spacing: -0.02em;
  line-height: 1;
}
.app_supervegan .section_2_categories_wrap {
  width: 100%;
  text-align: center;
}
@media (max-width: 490px) {
  .app_supervegan .section_2_categories_wrap {
    overflow: -moz-scrollbars-none;
    -ms-overflow-style: none;
    overflow-x: scroll;
    overflow-y: hidden;
  }
  .app_supervegan .section_2_categories_wrap::-webkit-scrollbar {
    display: none;
  }
}
.app_supervegan .section_2_categories_inner_wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0 29px;
  position: relative;
}
.app_supervegan .section_2_categories_inner_wrap:after {
  width: calc(100% - 58px);
  height: 2px;
  border-radius: 2px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 29px;
  content: "";
  z-index: 0;
}
@media (min-width: 768px) {
  .app_supervegan .section_2_categories_inner_wrap {
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .app_supervegan .section_2_categories_inner_wrap {
    margin-bottom: 32px;
  }
}
.app_supervegan .section_2_category_wrap {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
  padding: 0 24px;
  position: relative;
  z-index: 5;
}
@media (max-width: 767px) {
  .app_supervegan .section_2_category_wrap {
    padding: 0 12px;
  }
}
.app_supervegan .section_2_category_wrap:after {
  width: 100%;
  height: 2px;
  background: #ffb020;
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-radius: 2px;
}
.app_supervegan .section_2_category_wrap .section_2_category_thumbnail {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border: 0;
  background-size: cover;
  background-position: 50%;
  position: relative;
}
.app_supervegan .section_2_category_wrap .section_2_category_thumbnail:after {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border: 3px solid #ff8c09;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  content: "";
}
.app_supervegan .section_2_category_wrap.active .section_2_category_text {
  color: #fff;
}
.app_supervegan .section_2_category_wrap.active:after {
  opacity: 1;
}
@media (min-width: 768px) {
  .app_supervegan .section_2_category_wrap:hover .section_2_category_text {
    color: #fff;
  }
  .app_supervegan .section_2_category_wrap:hover:after {
    opacity: 1;
  }
}
.app_supervegan .section_2_category_wrap .section_2_category_text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: calc(13px + 3 * ((100vw - 350px) / 1090));
  line-height: 21px;
  color: #9da9b9;
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: 7px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (min-width: 1440px) {
  .app_supervegan .section_2_category_wrap .section_2_category_text {
    font-size: 16px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .section_2_category_wrap .section_2_category_text {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .app_supervegan .section_2_category_wrap .section_2_category_text {
    margin-bottom: 3px;
  }
}
.app_supervegan .home_section_3 {
  background: #fcfcfc;
}
.app_supervegan .home_section_3 .home_section_3_title {
  letter-spacing: -0.01em;
  text-transform: uppercase;
  z-index: 1;
}
.app_supervegan .home_section_3 .home_section_3_title span {
  display: inline-block;
}
.app_supervegan .home_section_3 .home_section_3_carousel {
  max-width: 1240px;
  width: 100%;
}
@media (min-width: 481px) {
  .app_supervegan .home_section_3 .home_section_3_carousel {
    padding-left: 33px;
    padding-right: 33px;
  }
}
@media (max-width: 480px) {
  .app_supervegan .home_section_3 .home_section_3_carousel .owl-stage {
    left: -16px;
  }
}
.app_supervegan .home_section_3 .home_section_3_carousel .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  border: 2px solid #9da9b9;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: #9da9b9;
  margin: 0 5px;
}
.app_supervegan
  .home_section_3
  .home_section_3_carousel
  .owl-dots
  .owl-dot.active,
.app_supervegan
  .home_section_3
  .home_section_3_carousel
  .owl-dots
  .owl-dot:hover {
  border: 2px solid #ff8c09;
  background: #fff;
}
.app_supervegan
  .home_section_3
  .home_section_3_carousel
  .home_section_3_carousel_image_wrap {
  position: relative;
  display: block;
  margin-bottom: 16px;
}
.app_supervegan
  .home_section_3
  .home_section_3_carousel
  .home_section_3_carousel_image_wrap
  img {
  padding: 7% 5% 0;
}
.app_supervegan
  .home_section_3
  .home_section_3_carousel
  .home_section_3_carousel_image_wrap:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-bottom: 75%;
  content: "";
  z-index: -1;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(240, 98, 139, 0.15)),
    to(rgba(240, 98, 139, 0.15))
  );
  background: linear-gradient(
    0deg,
    rgba(240, 98, 139, 0.15),
    rgba(240, 98, 139, 0.15)
  );
  border-radius: 16px;
}
.app_supervegan .home_section_3 .home_section_3_carousel_title {
  letter-spacing: -0.01em;
  text-transform: uppercase;
  z-index: 1;
  position: relative;
}
.app_supervegan .home_section_3 .item .home_section_3_carousel_text {
  line-height: 93%;
  text-align: center;
  letter-spacing: -0.02em;
  font-family: futura-pt, sans-serif;
  font-weight: 600;
  font-style: normal;
}
.app_supervegan .home_section_3 .item.pink .home_section_3_carousel_text {
  color: #f0628b;
}
.app_supervegan .home_section_3 .item.orange .home_section_3_carousel_text {
  color: #f5931d;
}
.app_supervegan
  .home_section_3
  .item.orange
  .home_section_3_carousel_image_wrap:after {
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(247, 148, 29, 0.15)),
    to(rgba(247, 148, 29, 0.15))
  );
  background: linear-gradient(
    0deg,
    rgba(247, 148, 29, 0.15),
    rgba(247, 148, 29, 0.15)
  );
}
.app_supervegan .home_section_3 .item.yellow .home_section_3_carousel_text {
  color: #f3cd05;
}
.app_supervegan
  .home_section_3
  .item.yellow
  .home_section_3_carousel_image_wrap:after {
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(252, 212, 4, 0.15)),
    to(rgba(252, 212, 4, 0.15))
  );
  background: linear-gradient(
    0deg,
    rgba(252, 212, 4, 0.15),
    rgba(252, 212, 4, 0.15)
  );
}
.app_supervegan .home_section_4 {
  background: #333 url(/img/supervegan/svf_home_section_4_bg.png) no-repeat 50% /
    cover;
  padding-top: 46px;
  padding-bottom: 38px;
}
@media (max-width: 767px) {
  .app_supervegan .home_section_4 {
    padding-top: 40px;
    padding-bottom: 25px;
  }
}
.app_supervegan .home_section_4 .home_section_4_title {
  letter-spacing: -0.01em;
  text-transform: uppercase;
  z-index: 1;
  position: relative;
}
.app_supervegan .home_section_4 .home_section_4_text {
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.app_supervegan .home_section_4 .goal_carousel_wrap {
  height: 326px;
  position: relative;
}
@media (min-width: 768px) {
  .app_supervegan .home_section_4 .goal_carousel_wrap {
    margin-top: 36px;
  }
}
.app_supervegan .home_section_4 .tabcontent2 {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 100%;
  left: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.app_supervegan .home_section_4 .tabcontent2.active {
  opacity: 1;
  visibility: visible;
}
.app_supervegan .home_section_4 .goal_carousel {
  max-width: 1220px;
  margin: auto;
  position: unset;
  padding: 0 34px;
}
.app_supervegan .home_section_4 .goal_carousel.owl-loaded {
  display: block;
}
@media (min-width: 768px) {
  .app_supervegan .home_section_4 .goal_carousel {
    padding: 0 30px;
  }
}
.app_supervegan .home_section_4 .goal_carousel .owl-stage-outer {
  overflow: visible;
  position: unset;
}
.app_supervegan .home_section_4 .goal_carousel .owl-stage {
  left: -60px;
}
@media (min-width: 768px) {
  .app_supervegan .home_section_4 .goal_carousel .owl-stage {
    left: -85px;
  }
}
@media (min-width: 768px) {
  .app_supervegan
    .home_section_4
    .goal_carousel.goal_carousel_center
    .owl-stage {
    left: 0;
  }
}
@media (max-width: 767px) {
  .app_supervegan
    .home_section_4
    .goal_carousel.goal_carousel_center_mobile
    .owl-stage {
    left: 0;
  }
}
.app_supervegan .home_section_4 .goal_carousel .owl-item {
  opacity: 0.24;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.app_supervegan .home_section_4 .goal_carousel .owl-item.active {
  opacity: 1;
}
.app_supervegan .home_section_4 .goal_carousel .owl-dot {
  width: 10px;
  height: 10px;
  background: #9da9b9;
  opacity: 0.8;
  border: 2px solid #9da9b9;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.app_supervegan .home_section_4 .goal_carousel .owl-dot.active {
  background: #fff;
  border: 2px solid #ff8c09;
}
.app_supervegan .home_section_4 .goal_carousel .owl-next,
.app_supervegan .home_section_4 .goal_carousel .owl-prev {
  top: 125px;
  font-size: 0;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 100px;
  opacity: 1;
}
@media (max-width: 767px) {
  .app_supervegan .home_section_4 .goal_carousel .owl-next,
  .app_supervegan .home_section_4 .goal_carousel .owl-prev {
    top: 280px;
    width: 20px;
    height: 20px;
  }
}
.app_supervegan .home_section_4 .goal_carousel .owl-next:after,
.app_supervegan .home_section_4 .goal_carousel .owl-prev:after {
  font-family: icomoon !important;
  color: #000;
  top: 2px;
  font-size: 12px;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .app_supervegan .home_section_4 .goal_carousel .owl-next:after,
  .app_supervegan .home_section_4 .goal_carousel .owl-prev:after {
    top: 52%;
    font-size: 6px;
  }
}
@media (min-width: 768px) {
  .app_supervegan .home_section_4 .goal_carousel .owl-prev {
    left: 56px;
  }
}
@media (max-width: 767px) {
  .app_supervegan .home_section_4 .goal_carousel .owl-prev {
    left: 8px;
  }
}
.app_supervegan .home_section_4 .goal_carousel .owl-prev:after {
  content: "\E90B";
  left: 48%;
}
.app_supervegan .home_section_4 .goal_carousel .owl-next {
  right: 64px;
}
@media (max-width: 1200px) {
  .app_supervegan .home_section_4 .goal_carousel .owl-next {
    right: 25px;
  }
}
@media (max-width: 767px) {
  .app_supervegan .home_section_4 .goal_carousel .owl-next {
    right: 8px;
  }
}
.app_supervegan .home_section_4 .goal_carousel .owl-next:after {
  content: "\E905";
  left: 52%;
}
.app_supervegan .home_section_4 .goal_carousel_image {
  padding-bottom: 100%;
  border-radius: 900px;
  background-size: cover;
  background-position: 50%;
  background-color: #fff;
}
.app_supervegan .home_section_4 .goal_carousel_text {
  line-height: 80%;
  font-size: calc(20px + 4 * ((100vw - 350px) / 1090));
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}
@media (min-width: 1440px) {
  .app_supervegan .home_section_4 .goal_carousel_text {
    font-size: 24px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .home_section_4 .goal_carousel_text {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .app_supervegan .home_section_4 .goal_carousel_text {
    margin-bottom: 6px;
  }
}
@media (min-width: 920px) {
  .app_supervegan .home_section_4 .goal_carousel_text {
    padding: 0 30px;
  }
}
.app_supervegan .home_section_4 .goal_carousel_text_2 {
  text-align: center;
  font-family: futura-pt, sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  color: #ffb020;
  margin-bottom: 0;
  text-transform: uppercase;
}
.app_supervegan .home_section_5 {
  background: #000 url(/img/supervegan/home_section_2.png) no-repeat 50% / cover;
  position: relative;
  padding-bottom: 30px;
}
.app_supervegan .home_section_5.home_section_5_with_bottom_transition {
  padding-bottom: 8.6805555556%;
}
.app_supervegan .home_section_5.home_section_5_with_bottom_transition:after {
  background: transparent url(/img/supervegan/home_section_2_after.svg)
    no-repeat bottom/100%;
  content: "";
  position: absolute;
  left: -1px;
  bottom: -1px;
  width: calc(100% + 2px);
  height: 0;
  padding-bottom: calc(8.6805555556% + 2px);
}
.app_supervegan .home_section_5 .home_section_5_article_wrap {
  margin: 0 10px;
  border-radius: 16px;
  width: calc(33.333% - 20px);
}
@media (max-width: 767px) {
  .app_supervegan .home_section_5 .home_section_5_article_wrap {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 350px;
  }
}
.app_supervegan .home_section_5 .home_section_5_article_wrap:first-child {
  background: linear-gradient(
      0deg,
      rgba(240, 98, 139, 0.2),
      rgba(240, 98, 139, 0.2)
    ),
    linear-gradient(
      160.08deg,
      rgba(50, 50, 52, 0.9),
      rgba(21, 21, 23, 0.9) 102.48%
    ),
    radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0.264) 0,
      rgba(0, 0, 0, 0.4) 100%
    );
}
.app_supervegan .home_section_5 .home_section_5_article_wrap:nth-child(2) {
  background: linear-gradient(
      0deg,
      rgba(247, 148, 29, 0.2),
      rgba(247, 148, 29, 0.2)
    ),
    linear-gradient(
      160.08deg,
      rgba(50, 50, 52, 0.9),
      rgba(21, 21, 23, 0.9) 102.48%
    ),
    radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0.264) 0,
      rgba(0, 0, 0, 0.4) 100%
    );
}
.app_supervegan .home_section_5 .home_section_5_article_wrap:nth-child(3) {
  background: linear-gradient(
      0deg,
      rgba(252, 212, 4, 0.2),
      rgba(252, 212, 4, 0.2)
    ),
    linear-gradient(
      160.08deg,
      rgba(50, 50, 52, 0.9),
      rgba(21, 21, 23, 0.9) 102.48%
    ),
    radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0.264) 0,
      rgba(0, 0, 0, 0.4) 100%
    );
}
.app_supervegan .home_section_5 .home_section_5_title {
  line-height: 1;
  letter-spacing: -0.01em;
}
.app_supervegan .home_section_5 .home_section_5_article_title {
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.app_supervegan .home_section_5 .home_section_5_article_text {
  letter-spacing: -0.02em;
  line-height: 1;
}
.app_supervegan .home_section_6 {
  background: #fcfcfc;
}
@media (min-width: 1200px) {
  .app_supervegan .home_section_6 .home_section_6_inner_wrap {
    padding-left: 190px;
  }
}
.app_supervegan .home_section_6 .home_section_6_title {
  letter-spacing: -0.02em;
  line-height: 0.9;
  margin-top: 24px;
}
.app_supervegan .home_section_6 .suplements_carousel_next_button,
.app_supervegan .home_section_6 .suplements_carousel_prev_button {
  width: 42px;
  height: 42px;
  border-radius: 30px;
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid #e3e9ed;
  color: #525252;
  background: #fcfcfc;
}
.app_supervegan .home_section_6 .suplements_carousel_next_button i,
.app_supervegan .home_section_6 .suplements_carousel_prev_button i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  line-height: 1;
  font-size: 16px;
}
.app_supervegan .home_section_6 .suplements_carousel_next_button.disabled,
.app_supervegan .home_section_6 .suplements_carousel_prev_button.disabled {
  opacity: 0.4;
}
.app_supervegan .home_section_6 .suplements_carousel_next_button.disabled:hover,
.app_supervegan
  .home_section_6
  .suplements_carousel_prev_button.disabled:hover {
  border: 2px solid #e3e9ed;
  color: #525252;
  background: #fcfcfc;
}
.app_supervegan .home_section_6 .suplements_carousel_next_button:hover,
.app_supervegan .home_section_6 .suplements_carousel_prev_button:hover {
  border: 2px solid #000;
  background: #000;
  color: #fff;
}
.app_supervegan .home_section_6 .custom_navigation_see_all {
  letter-spacing: -0.02em;
}
.app_supervegan .home_section_6 .home_section_6_text {
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 330px;
}
@media (max-width: 767px) {
  .app_supervegan .home_section_6 .home_section_6_text {
    max-width: 100%;
  }
}
.app_supervegan .home_section_6 .suplements_carousel .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 30px;
  padding-top: 30px;
}
@media (max-width: 767px) {
  .app_supervegan .home_section_6 .suplements_carousel .owl-stage {
    left: 0;
  }
}
@media (max-width: 469px) {
  .app_supervegan .home_section_6 .suplements_carousel .owl-stage {
    left: -50px;
  }
}
.app_supervegan .home_section_6 .suplements_carousel .owl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.app_supervegan .home_section_6 .suplements_carousel .item {
  background: #fff;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.04),
    0 10px 20px rgba(0, 0, 0, 0.04);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.04),
    0 10px 20px rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  margin: 15px 0;
  display: block;
  position: relative;
  width: 100%;
}
.app_supervegan
  .home_section_6
  .suplements_carousel
  .suplements_carousel_text_1 {
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.app_supervegan
  .home_section_6
  .suplements_carousel
  .suplements_carousel_text_2 {
  line-height: 120%;
  letter-spacing: -0.03em;
}
.app_supervegan
  .home_section_6
  .suplements_carousel
  .suplements_carousel_small_text {
  line-height: 1;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .app_supervegan .home_section_6 .suplements_carousel .owl-dots {
    display: none;
  }
}
.app_supervegan .home_section_6 .suplements_carousel .owl-dot {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border: 2px solid #9da9b9;
  background: #9da9b9;
  opacity: 1;
}
.app_supervegan .home_section_6 .suplements_carousel .owl-dot.active,
.app_supervegan .home_section_6 .suplements_carousel .owl-dot:hover {
  border: 2px solid #ff8c09;
  background: #fcfcfc;
}
.app_supervegan .our_team {
  position: relative;
}
@media (max-width: 570px) {
  .app_supervegan .our_team {
    background: #fff url("/img/supervegan/our_team_mobile.png") no-repeat
      top/contain;
    padding-top: 72%;
  }
}
@media (min-width: 571px) {
  .app_supervegan .our_team {
    padding-top: 15.9722222222%;
  }
}
@media (min-width: 571px) {
  .app_supervegan .our_team:before {
    left: -15%;
    background-image: url("/img/supervegan/our_team_dektop_left.png");
    background-position: 0 100%;
  }
}
@media (min-width: 920px) {
  .app_supervegan .our_team:before {
    left: 0;
  }
}
@media (min-width: 571px) {
  .app_supervegan .our_team:after {
    right: -15%;
    background-image: url("/img/supervegan/our_team_dektop_right.png");
    background-position: 100% 100%;
  }
}
@media (min-width: 920px) {
  .app_supervegan .our_team:after {
    right: 0;
  }
}
.app_supervegan .our_team:after,
.app_supervegan .our_team:before {
  height: 100%;
  content: "";
  position: absolute;
  bottom: 0;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 571px) {
  .app_supervegan .our_team:after,
  .app_supervegan .our_team:before {
    width: 50%;
  }
}
@media (min-width: 920px) {
  .app_supervegan .our_team:after,
  .app_supervegan .our_team:before {
    width: 34.0277777778%;
  }
}
.app_supervegan .our_team .our_team_content_wrap {
  background: #f6f8f7;
  -webkit-box-shadow: 0 3.38082px 10.0172px rgba(0, 0, 0, 0.085),
    0 27px 80px rgba(0, 0, 0, 0.17);
  box-shadow: 0 3.38082px 10.0172px rgba(0, 0, 0, 0.085),
    0 27px 80px rgba(0, 0, 0, 0.17);
  border-radius: 8px;
}
.app_supervegan .our_team .our_team_text {
  letter-spacing: -0.01em;
  line-height: 120%;
}
.app_supervegan .home_bottom_section {
  background: #fff;
  padding-left: 24px;
  padding-right: 24px;
}
@media (max-width: 767px) {
  .app_supervegan .home_bottom_section {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.app_supervegan .home_bottom_section_title {
  font-size: calc(28px + 12 * ((100vw - 350px) / 1090));
  line-height: 90%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 46px;
}
@media (min-width: 1440px) {
  .app_supervegan .home_bottom_section_title {
    font-size: 40px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .home_bottom_section_title {
    font-size: 28px;
  }
}
.app_supervegan .home_bottom_section_title span {
  color: #d04137;
}
.app_supervegan .home_bottom_section_text {
  line-height: 110%;
  letter-spacing: -0.02em;
  max-width: 300px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  color: #676464;
  font-family: futura-pt, sans-serif;
  font-weight: 600;
}
@media (max-width: 767px) {
  .app_supervegan .home_bottom_section_text {
    color: #9da9b9;
    font-family: futura-pt, sans-serif;
    font-weight: 400;
  }
}
.app_supervegan .home_bottom_section_icon {
  font-size: 33.18px;
}
.app_supervegan .home_bottom_section_small_text {
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-weight: 600;
}
.app_supervegan .home_bottom_section_image_wrap img:first-child {
  position: relative;
}
.app_supervegan .home_bottom_section_image_wrap img:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}
@media (max-width: 767px) {
  .app_supervegan .home_bottom_section_image_wrap img:nth-child(2) {
    width: 97%;
  }
}
.app_supervegan .team_intro {
  padding-top: 128px;
  background: #efeeee;
  padding-bottom: 8.6805555556%;
  position: relative;
}
@media (max-width: 767px) {
  .app_supervegan .team_intro {
    padding-top: 83px;
  }
}
.app_supervegan .team_intro:after {
  background: transparent url(/img/supervegan/cool_transition_1.svg) no-repeat
    bottom/100%;
  content: "";
  position: absolute;
  left: -1px;
  bottom: -1px;
  width: calc(100% + 2px);
  height: 0;
  padding-bottom: calc(8.6805555556% + 2px);
}
.app_supervegan .team_intro .team_intro_title {
  letter-spacing: -0.03em;
  line-height: 0.8;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#002366),
    color-stop(70%, #41006b)
  );
  background: linear-gradient(90deg, #002366, #41006b 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.app_supervegan .team_intro .intro_team_text {
  line-height: 144.05%;
  max-width: 539px;
}
.app_supervegan .team_intro .highlight_story_wrap {
  padding-bottom: 94%;
  width: 100%;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  display: block;
}
.app_supervegan
  .team_intro
  .highlight_story_wrap
  .highlight_story_caption_wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 32px;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .app_supervegan
    .team_intro
    .highlight_story_wrap
    .highlight_story_caption_wrap {
    padding: 16px;
  }
}
@media (max-width: 767px) {
  .app_supervegan
    .team_intro
    .highlight_story_wrap
    .highlight_story_caption_wrap {
    padding: 32px;
  }
}
@media (max-width: 575px) {
  .app_supervegan
    .team_intro
    .highlight_story_wrap
    .highlight_story_caption_wrap {
    padding: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
  }
}
.app_supervegan .team_intro .highlight_story_wrap .highlight_story_cat {
  line-height: 100%;
  background: #fff;
  padding: 5px 8px;
  border-radius: 2px;
  text-transform: uppercase;
  margin-right: 10px;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
@media (max-width: 575px) {
  .app_supervegan .team_intro .highlight_story_wrap .highlight_story_cat {
    margin-bottom: 8px;
  }
}
.app_supervegan .team_intro .highlight_story_wrap .highlight_story_name {
  line-height: 100%;
}
.app_supervegan .team_intro .highlight_story_wrap .highlight_story_picture {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  top: -1px;
  left: -1px;
  background-position: 50%;
  background-size: cover;
  z-index: 0;
}
.app_supervegan
  .team_intro
  .highlight_story_wrap
  .highlight_story_picture:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(0, 0, 0, 0.33) 0,
    rgba(0, 0, 0, 0.5) 100%
  );
}
.app_supervegan .team_loop_wrap {
  background: #fafafa;
}
.app_supervegan .team_loop_wrap .team_member_picture {
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  background-size: cover;
  background-position: 50%;
  padding-bottom: 146.2897526502%;
  background-color: #eee;
}
.app_supervegan .team_loop_wrap .team_member_name {
  letter-spacing: -0.02em;
  line-height: 80%;
}
.app_supervegan .team_loop_wrap .team_member_designation {
  line-height: 1;
  letter-spacing: -0.02em;
}
.app_supervegan .supervegan_team_detail {
  width: 100%;
  overflow: hidden;
}
.app_supervegan .supervegan_team_detail_intro {
  min-height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #828282;
}
@media (max-width: 767px) {
  .app_supervegan .supervegan_team_detail_intro {
    max-height: 0;
    min-height: 0;
    padding-bottom: 58.2491582492%;
  }
}
@media (max-width: 676px) {
  .app_supervegan .supervegan_team_detail_intro {
    padding-bottom: 70%;
  }
}
.app_supervegan .supervegan_team_detail_intro:before {
  width: calc(100% + 2px);
  height: 85px;
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0.85)),
    color-stop(25%, rgba(0, 0, 0, 0.74)),
    color-stop(71.35%, rgba(0, 0, 0, 0.3)),
    to(transparent)
  );
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.74) 25%,
    rgba(0, 0, 0, 0.3) 71.35%,
    transparent
  );
}
.app_supervegan .supervegan_team_detail_intro .supervegan_team_detail_name {
  text-shadow: 0 2.76726px 2.21381px rgba(0, 0, 0, 0.120893),
    0 6.6501px 5.32008px rgba(0, 0, 0, 0.173674),
    0 12.5216px 10.0172px rgba(0, 0, 0, 0.215),
    0 22.3363px 17.869px rgba(0, 0, 0, 0.256326),
    0 41.7776px 33.4221px rgba(0, 0, 0, 0.309107),
    0 100px 80px rgba(0, 0, 0, 0.43);
  line-height: 100%;
  letter-spacing: -0.02em;
}
.app_supervegan
  .supervegan_team_detail_intro
  .supervegan_team_detail_designation {
  line-height: 1.25;
}
.app_supervegan
  .supervegan_team_detail_intro
  .supervegan_team_detail_background {
  background-size: cover;
  background-position: 50%;
  z-index: 0;
  -webkit-animation: 16s forwards zoomScale;
  animation: 16s forwards zoomScale;
}
.app_supervegan
  .supervegan_team_detail_intro
  .supervegan_team_detail_background,
.app_supervegan
  .supervegan_team_detail_intro
  .supervegan_team_detail_intro_content_outter_wrap {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  top: -1px;
  left: -1px;
}
.app_supervegan
  .supervegan_team_detail_intro
  .supervegan_team_detail_intro_content_wrap {
  position: relative;
  z-index: 20;
}
.app_supervegan .supervegan_team_detail_section_one {
  background: #000 url(/img/supervegan/home_section_2.png) no-repeat 50% / cover;
  padding-bottom: 8.6805555556%;
  position: relative;
}
.app_supervegan .supervegan_team_detail_section_one:after {
  background: transparent url(/img/supervegan/home_section_2_after.svg)
    no-repeat bottom/100%;
  content: "";
  position: absolute;
  left: -1px;
  bottom: -1px;
  width: calc(100% + 2px);
  height: 0;
  padding-bottom: calc(8.6805555556% + 2px);
}
.app_supervegan
  .supervegan_team_detail_section_one
  .supervegan_team_detail_section_one_picture {
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.04),
    0 16px 24px rgba(0, 0, 0, 0.04), 0 24px 32px rgba(0, 0, 0, 0.04);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.04),
    0 16px 24px rgba(0, 0, 0, 0.04), 0 24px 32px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
}
.app_supervegan
  .supervegan_team_detail_section_one
  .supervegan_team_detail_section_one_badge {
  height: 35px;
  width: auto;
}
.app_supervegan
  .supervegan_team_detail_section_one
  .supervegan_team_detail_section_one_big_text,
.app_supervegan
  .supervegan_team_detail_section_one
  .supervegan_team_detail_section_one_big_text
  p {
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.app_supervegan
  .supervegan_team_detail_section_one
  .supervegan_team_detail_section_one_text,
.app_supervegan
  .supervegan_team_detail_section_one
  .supervegan_team_detail_section_one_text
  p {
  line-height: 1.45;
  letter-spacing: -0.01em;
}
.app_supervegan .supervegan_team_detail_interview_wrap {
  position: relative;
  top: -1px;
}
.app_supervegan
  .supervegan_team_detail_interview_wrap
  .supervegan_team_detail_interview_title {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#002366),
    color-stop(70%, #41006b)
  );
  background: linear-gradient(90deg, #002366, #41006b 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: futura-pt-bold, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.app_supervegan
  .supervegan_team_detail_interview_wrap
  .supervegan_team_detail_interview_content {
  line-height: 155%;
  letter-spacing: -0.02em;
  color: #8b8b9a;
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.product_summary_2_carousel_outter_wrap {
  width: 100%;
  max-width: 1200px;
}
.product_summary_2_carousel {
  padding: 0;
  position: unset;
}
@media (min-width: 481px) {
  .product_summary_2_carousel {
    padding: 16px;
  }
}
@media (min-width: 768px) {
  .product_summary_2_carousel {
    padding: 32px;
  }
}
@media (max-width: 480px) {
  .product_summary_2_carousel .owl-stage {
    left: -24px;
  }
}
@media (min-width: 921px) {
  .product_summary_2_carousel .owl-stage {
    left: -85px;
  }
}
@media (min-width: 921px) {
  .product_summary_2_carousel.product_summary_2_carousel_center .owl-stage {
    left: 0;
  }
}
@media (max-width: 480px) {
  .product_summary_2_carousel.product_summary_2_carousel_center_mobile
    .owl-stage {
    left: 0;
  }
}
.product_summary_2_carousel .owl-stage-outer {
  overflow: visible;
  position: unset;
}
.product_summary_2_carousel .owl-item {
  opacity: 0.34;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.product_summary_2_carousel .owl-item.active {
  opacity: 1;
}
.product_summary_2_carousel .item .product_summary_2_carousel_picture_wrap {
  margin-bottom: 16px;
  position: relative;
  display: block;
}
.product_summary_2_carousel
  .item
  .product_summary_2_carousel_picture_wrap:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-bottom: 65%;
  content: "";
  z-index: -1;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ff9a9e),
    color-stop(99%, #fad0c4),
    to(#fad0c4)
  );
  background: linear-gradient(90deg, #ff9a9e, #fad0c4 99%, #fad0c4);
  opacity: 0.5;
  border-radius: 5.36431px;
}
.product_summary_2_carousel
  .item
  .product_summary_2_carousel_picture_wrap
  .supervegan-product-discount-badge {
  line-height: 1;
  letter-spacing: -0.03em;
  display: inline;
  position: absolute;
  top: 1%;
  right: 2%;
  padding: 10px;
  background: transparent
    url(/img/supervegan/supervegan-product-discount-badge.svg) no-repeat 50%/100%
    100%;
  z-index: 10;
}
.product_summary_2_carousel
  .item
  .product_summary_2_carousel_picture_wrap
  .supervegan-product-discount-badge
  span {
  display: block;
  text-align: right;
}
.product_summary_2_carousel
  .item
  .product_summary_2_carousel_picture_wrap
  .supervegan-product-discount-badge
  span:first-child {
  font-size: 16px;
}
.product_summary_2_carousel
  .item
  .product_summary_2_carousel_picture_wrap
  .supervegan-product-discount-badge
  span:nth-child(2) {
  font-size: 18px;
}
.product_summary_2_carousel .item img {
  width: 100%;
  padding-left: 32px;
  padding-right: 32px;
  padding-top: 20px;
}
.product_summary_2_carousel .item .product_summary_2_carousel_picture {
  width: calc(100% - 64px);
  margin: 20px 32px 0;
  padding-bottom: 92%;
  background-position: 50%;
  background-size: contain;
  background-repeat: no-repeat;
}
.product_summary_2_carousel .item .product_summary_2_carousel_product_name {
  line-height: 110%;
  letter-spacing: -0.03em;
  margin-bottom: 2px;
}
.product_summary_2_carousel .item .product_summary_2_carousel_product_flavour {
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.03em;
  color: #c1c1c1;
  font-size: calc(14px + 4 * ((100vw - 350px) / 1090));
  margin-bottom: 6px;
}
@media (min-width: 1440px) {
  .product_summary_2_carousel
    .item
    .product_summary_2_carousel_product_flavour {
    font-size: 18px;
  }
}
@media (max-width: 350px) {
  .product_summary_2_carousel
    .item
    .product_summary_2_carousel_product_flavour {
    font-size: 14px;
  }
}
.product_summary_2_carousel .item .product_summary_2_carousel_product_weight {
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 450;
  line-height: 100%;
  color: #9da9b9;
  font-size: calc(13px + 2 * ((100vw - 350px) / 1090));
  margin-bottom: 0;
}
@media (min-width: 1440px) {
  .product_summary_2_carousel .item .product_summary_2_carousel_product_weight {
    font-size: 15px;
  }
}
@media (max-width: 350px) {
  .product_summary_2_carousel .item .product_summary_2_carousel_product_weight {
    font-size: 13px;
  }
}
.product_summary_2_carousel .item .product_summary_2_carousel_product_price {
  font-size: calc(15px + 3 * ((100vw - 350px) / 1090));
  letter-spacing: -0.02em;
}
@media (min-width: 1440px) {
  .product_summary_2_carousel .item .product_summary_2_carousel_product_price {
    font-size: 18px;
  }
}
@media (max-width: 350px) {
  .product_summary_2_carousel .item .product_summary_2_carousel_product_price {
    font-size: 15px;
  }
}
.product_summary_2_carousel .item .product_summary_2_carousel_product_weight {
  letter-spacing: -0.02em;
}
.product_summary_2_carousel .item .product_summary_2_carousel_special_price {
  font-size: 18px;
  letter-spacing: -0.02em;
}
.product_summary_2_carousel .item .product_summary_2_carousel_rasured_price {
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #adadad !important;
  margin-bottom: -3px;
}
.product_summary_2_carousel .item .price_red_background {
  background: transparent url(/img/supervegan/price_red_background_2.svg)
    no-repeat 50%/100% 100%;
}
.product_summary_2_carousel .owl-dots .owl-dot {
  width: 13px;
  height: 13px;
  background: #e3e9ed;
  opacity: 0.8;
  border: 2px solid #1a1b1c;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  position: relative;
}
.product_summary_2_carousel .owl-dots .owl-dot.active {
  background: transparent;
  border: 2px solid #ff8c09;
}
.product_summary_2_carousel .owl-next,
.product_summary_2_carousel .owl-prev {
  top: 367px;
  font-size: 0;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 100px;
  opacity: 1;
}
@media (max-width: 767px) {
  .product_summary_2_carousel .owl-next,
  .product_summary_2_carousel .owl-prev {
    top: 280px;
    width: 20px;
    height: 20px;
  }
}
.product_summary_2_carousel .owl-next:after,
.product_summary_2_carousel .owl-prev:after {
  font-family: icomoon !important;
  color: #000;
  top: 2px;
  font-size: 12px;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .product_summary_2_carousel .owl-next:after,
  .product_summary_2_carousel .owl-prev:after {
    top: 52%;
    font-size: 6px;
  }
}
@media (min-width: 768px) {
  .product_summary_2_carousel .owl-prev {
    left: 56px;
  }
}
@media (max-width: 767px) {
  .product_summary_2_carousel .owl-prev {
    left: 8px;
  }
}
.product_summary_2_carousel .owl-prev:after {
  content: "\E90B";
  left: 48%;
}
.product_summary_2_carousel .owl-next {
  right: 64px;
}
@media (max-width: 1200px) {
  .product_summary_2_carousel .owl-next {
    right: 25px;
  }
}
@media (max-width: 767px) {
  .product_summary_2_carousel .owl-next {
    right: 8px;
  }
}
.product_summary_2_carousel .owl-next:after {
  content: "\E905";
  left: 52%;
}
.product_summary_2_carousel .owl-nav {
  display: block !important;
}
.product_summary_2_carousel .owl-nav.disabled {
  display: none !important;
}
.supervegan_share_menu_wrap {
  background: rgba(0, 0, 0, 0.9);
}
.supervegan_share_menu_wrap .close {
  font-size: 44px;
  right: 0;
  margin: 24px;
  top: 0;
  left: unset;
  color: #fff;
  position: absolute;
}
@media (max-width: 767px) {
  .supervegan_share_menu_wrap .close {
    margin: 0 14px;
  }
}
.supervegan_share_menu_wrap .supervegan_share_menu {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
.supervegan_share_menu_wrap .supervegan_share_menu .social-button {
  margin: 0 2%;
  padding: 10px;
  color: #e5a218;
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
  opacity: 0;
}
.supervegan_share_menu_wrap.show .social-button {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.supervegan_share_menu_wrap.show .social-button:first-child {
  -webkit-transition: all 0.5s ease 0.1s;
  transition: all 0.5s ease 0.1s;
}
.supervegan_share_menu_wrap.show .social-button:nth-child(2) {
  -webkit-transition: all 0.5s ease 0.2s;
  transition: all 0.5s ease 0.2s;
}
.supervegan_share_menu_wrap.show .social-button:nth-child(3) {
  -webkit-transition: all 0.5s ease 0.3s;
  transition: all 0.5s ease 0.3s;
}
.md_xl_only {
  display: none;
}
@media (min-width: 768px) {
  .md_xl_only {
    display: inline-block;
  }
}
.sm_xs_only {
  display: none;
}
@media (max-width: 767px) {
  .sm_xs_only {
    display: inline-block;
  }
}
.add_to_cart_mobile {
  position: fixed;
  z-index: 920;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #f7941d;
  -webkit-box-shadow: 0 0 0.834722px rgba(0, 0, 0, 0.04),
    0 1.66944px 5.00833px rgba(247, 148, 29, 0.08),
    0 13.3556px 20.0333px rgba(247, 148, 29, 0.1),
    0 20.0333px 26.7111px rgba(247, 148, 29, 0.14);
  box-shadow: 0 0 0.834722px rgba(0, 0, 0, 0.04),
    0 1.66944px 5.00833px rgba(247, 148, 29, 0.08),
    0 13.3556px 20.0333px rgba(247, 148, 29, 0.1),
    0 20.0333px 26.7111px rgba(247, 148, 29, 0.14);
  border-radius: 16px 16px 0 0;
}
@media (min-width: 768px) {
  .add_to_cart_mobile {
    display: none !important;
  }
}
.add_to_cart_mobile .add_to_cart_mobile_thin_text {
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #000;
  opacity: 0.7;
  text-shadow: 0 1px 3px hsla(0, 0%, 68%, 0.2);
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  margin-bottom: 0;
  min-width: 60px;
}
.add_to_cart_mobile .add_to_cart_mobile_thin_text:first-child {
  text-align: left;
}
.add_to_cart_mobile .add_to_cart_mobile_thin_text:last-child {
  text-align: right;
}
.add_to_cart_mobile .add_to_cart_mobile_bold_text {
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: -0.02em;
  color: #000;
  text-shadow: 0 1px 3px hsla(0, 0%, 68%, 0.2);
  margin-bottom: 0;
  text-align: center;
}
.app_supervegan .lg-backdrop {
  z-index: 9995;
}
.app_supervegan .lg-outer {
  z-index: 9999;
}
.app_supervegan .supervegan_team_detail_name {
  font-size: calc(40px + 55 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .supervegan_team_detail_name {
    font-size: 95px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .supervegan_team_detail_name {
    font-size: 40px;
  }
}
.app_supervegan .supervegan_name_and_cat,
.app_supervegan .team_intro_title {
  font-size: calc(40px + 40 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .supervegan_name_and_cat,
  .app_supervegan .team_intro_title {
    font-size: 80px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .supervegan_name_and_cat,
  .app_supervegan .team_intro_title {
    font-size: 40px;
  }
}
.app_supervegan .manifesto_section_1_wrapper_1_title {
  font-size: 48px;
}
.app_supervegan .faqs_title,
.app_supervegan .ingredientes_title,
.app_supervegan .nutritrion_facts_title,
.app_supervegan .recipes_title_big_font,
.app_supervegan .reviews_title_big_font,
.app_supervegan .summary_illustration h3 {
  font-size: calc(31px + 14 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .faqs_title,
  .app_supervegan .ingredientes_title,
  .app_supervegan .nutritrion_facts_title,
  .app_supervegan .recipes_title_big_font,
  .app_supervegan .reviews_title_big_font,
  .app_supervegan .summary_illustration h3 {
    font-size: 45px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .faqs_title,
  .app_supervegan .ingredientes_title,
  .app_supervegan .nutritrion_facts_title,
  .app_supervegan .recipes_title_big_font,
  .app_supervegan .reviews_title_big_font,
  .app_supervegan .summary_illustration h3 {
    font-size: 31px;
  }
}
.app_supervegan .manifesto_content_top {
  font-size: calc(24px + 19 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .manifesto_content_top {
    font-size: 43px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .manifesto_content_top {
    font-size: 24px;
  }
}
.app_supervegan .more_info_title {
  font-size: calc(22px + 18 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .more_info_title {
    font-size: 40px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .more_info_title {
    font-size: 22px;
  }
}
.app_supervegan .product_summary_2_carousel_header h3 {
  font-size: 36px;
}
.app_supervegan .recipes_title_small_font {
  font-size: calc(29px + 7 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .recipes_title_small_font {
    font-size: 36px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .recipes_title_small_font {
    font-size: 29px;
  }
}
.app_supervegan .product_features_highlight_big {
  font-size: calc(24px + 12 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .product_features_highlight_big {
    font-size: 36px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .product_features_highlight_big {
    font-size: 24px;
  }
}
.app_supervegan .supervegan_price span {
  font-size: 34px;
}
.app_supervegan .product_summary_2_icons_wrap i {
  font-size: 33px;
}
.app_supervegan .flavour {
  font-size: calc(20px + 12 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .flavour {
    font-size: 32px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .flavour {
    font-size: 20px;
  }
}
.app_supervegan .faqs_claim,
.app_supervegan .ingredientes_claim,
.app_supervegan .no_comments_message,
.app_supervegan .supervegan_team_detail_designation {
  font-size: calc(20px + 10 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .faqs_claim,
  .app_supervegan .ingredientes_claim,
  .app_supervegan .no_comments_message,
  .app_supervegan .supervegan_team_detail_designation {
    font-size: 30px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .faqs_claim,
  .app_supervegan .ingredientes_claim,
  .app_supervegan .no_comments_message,
  .app_supervegan .supervegan_team_detail_designation {
    font-size: 20px;
  }
}
.app_supervegan .ingredient_name {
  font-size: calc(20px + 8 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .ingredient_name {
    font-size: 28px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .ingredient_name {
    font-size: 20px;
  }
}
.app_supervegan .highlight_story_name {
  font-size: calc(20px + 6 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .highlight_story_name {
    font-size: 26px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .highlight_story_name {
    font-size: 20px;
  }
}
.app_supervegan .min_info p,
.app_supervegan .team_member_name {
  font-size: 24px;
  font-size: calc(20px + 4 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .min_info p,
  .app_supervegan .team_member_name {
    font-size: 24px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .min_info p,
  .app_supervegan .team_member_name {
    font-size: 20px;
  }
}
.app_supervegan .article_title {
  font-size: calc(20px + 4 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .article_title {
    font-size: 24px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .article_title {
    font-size: 20px;
  }
}
.app_supervegan .product_features_highlight_medium {
  font-size: calc(16px + 8 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .product_features_highlight_medium {
    font-size: 24px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .product_features_highlight_medium {
    font-size: 16px;
  }
}
.app_supervegan .summary_illustration p {
  font-size: 23px;
}
.app_supervegan .product_summary_2_carousel_product_name {
  font-size: calc(19px + 3 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .product_summary_2_carousel_product_name {
    font-size: 22px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .product_summary_2_carousel_product_name {
    font-size: 19px;
  }
}
.app_supervegan .yellow_sublitle {
  font-size: calc(22px + 1 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .yellow_sublitle {
    font-size: 23px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .yellow_sublitle {
    font-size: 22px;
  }
}
.app_supervegan .faq_question,
.app_supervegan .summary_text_wrap .upper_text,
.app_supervegan .supervegan_share_menu_toggle,
.app_supervegan .supervegan_team_detail_section_one_big_text,
.app_supervegan .supervegan_team_detail_section_one_big_text p {
  font-size: calc(18px + 4 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .faq_question,
  .app_supervegan .summary_text_wrap .upper_text,
  .app_supervegan .supervegan_share_menu_toggle,
  .app_supervegan .supervegan_team_detail_section_one_big_text,
  .app_supervegan .supervegan_team_detail_section_one_big_text p {
    font-size: 22px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .faq_question,
  .app_supervegan .summary_text_wrap .upper_text,
  .app_supervegan .supervegan_share_menu_toggle,
  .app_supervegan .supervegan_team_detail_section_one_big_text,
  .app_supervegan .supervegan_team_detail_section_one_big_text p {
    font-size: 18px;
  }
}
.app_supervegan .intro_team_text {
  font-size: calc(16px + 6 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .intro_team_text {
    font-size: 22px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .intro_team_text {
    font-size: 16px;
  }
}
.app_supervegan .product_summary_3_list,
.app_supervegan .supervegan_team_detail_interview_content,
.app_supervegan .team_member_designation {
  font-size: calc(20px + 2 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .product_summary_3_list,
  .app_supervegan .supervegan_team_detail_interview_content,
  .app_supervegan .team_member_designation {
    font-size: 22px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .product_summary_3_list,
  .app_supervegan .supervegan_team_detail_interview_content,
  .app_supervegan .team_member_designation {
    font-size: 20px;
  }
}
.app_supervegan .description_balloon .upper_text {
  font-size: calc(20px + 1 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .description_balloon .upper_text {
    font-size: 21px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .description_balloon .upper_text {
    font-size: 20px;
  }
}
.app_supervegan .article_excerpt {
  font-size: calc(16px + 4 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .article_excerpt {
    font-size: 20px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .article_excerpt {
    font-size: 16px;
  }
}
.app_supervegan .verified_order i {
  font-size: calc(12px + 8 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .verified_order i {
    font-size: 20px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .verified_order i {
    font-size: 12px;
  }
}
.app_supervegan .supervegan-comment-author {
  font-size: calc(17px + 3 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .supervegan-comment-author {
    font-size: 20px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .supervegan-comment-author {
    font-size: 17px;
  }
}
.app_supervegan .ingredient_description,
.app_supervegan .ingredients_read_more_button {
  font-size: 20px;
}
@media (max-width: 767px) {
  .app_supervegan .ingredient_description,
  .app_supervegan .ingredients_read_more_button {
    font-size: 17px;
  }
}
.app_supervegan .ingredients_read_more_button:nth-child(2),
.app_supervegan .write_a_review_button {
  font-size: 20px;
}
.app_supervegan .summary_text_wrap .lower_text,
.app_supervegan .summary_text_wrap p,
.app_supervegan .the_recipe_caption_title {
  font-size: 19px;
}
.app_supervegan .home_bottom_section_text,
.app_supervegan .supervegan_team_detail_section_one_text,
.app_supervegan .supervegan_team_detail_section_one_text p {
  font-size: calc(18px + 1 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .home_bottom_section_text,
  .app_supervegan .supervegan_team_detail_section_one_text,
  .app_supervegan .supervegan_team_detail_section_one_text p {
    font-size: 19px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .home_bottom_section_text,
  .app_supervegan .supervegan_team_detail_section_one_text,
  .app_supervegan .supervegan_team_detail_section_one_text p {
    font-size: 18px;
  }
}
.app_supervegan .description_balloon .lower_text,
.app_supervegan .product_description_wrap,
.app_supervegan .product_description_wrap a,
.app_supervegan .product_description_wrap p,
.app_supervegan .rating-stars i,
.app_supervegan .supervegan_add_to_cart_button_wrap .btn.btn-success {
  font-size: 18px;
}
.app_supervegan .faq_answer,
.app_supervegan .supervegan_orange_button {
  font-size: calc(16px + 2 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .faq_answer,
  .app_supervegan .supervegan_orange_button {
    font-size: 18px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .faq_answer,
  .app_supervegan .supervegan_orange_button {
    font-size: 16px;
  }
}
.app_supervegan .description_balloon i {
  font-size: calc(15px + 2 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .description_balloon i {
    font-size: 17px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .description_balloon i {
    font-size: 15px;
  }
}
.app_supervegan .supervegan-comment-title {
  font-size: 17px;
}
.app_supervegan .faq_question:before,
.app_supervegan .homepage_shipping_info_mobile i,
.app_supervegan .product_summary_2_carousel_header p,
.app_supervegan .supervegan_nav nav a {
  font-size: 16px;
}
.app_supervegan .supervegan_breadcrumbs i {
  font-size: calc(15px + 1 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .supervegan_breadcrumbs i {
    font-size: 16px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .supervegan_breadcrumbs i {
    font-size: 15px;
  }
}
.app_supervegan .product_weight_buttons button {
  font-size: calc(13px + 3 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .product_weight_buttons button {
    font-size: 16px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .product_weight_buttons button {
    font-size: 13px;
  }
}
.app_supervegan .product_features_highlight_small {
  font-size: calc(10px + 6 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .product_features_highlight_small {
    font-size: 16px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .product_features_highlight_small {
    font-size: 10px;
  }
}
.app_supervegan .average_rating_int,
.app_supervegan .average_rating_recomendations_number,
.app_supervegan .average_star_number,
.app_supervegan .average_star_percentage,
.app_supervegan .more_info_caption,
.app_supervegan
  .product_summary_2_carousel
  .product_summary_2_carousel_product_weight,
.app_supervegan .the_recipe_caption_button {
  font-size: 15px;
}
.app_supervegan .view_articles_button {
  font-size: calc(14px + 1 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .view_articles_button {
    font-size: 15px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .view_articles_button {
    font-size: 14px;
  }
}
.app_supervegan .verified_order span {
  font-size: calc(11px + 3 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .verified_order span {
    font-size: 14px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .verified_order span {
    font-size: 11px;
  }
}
.app_supervegan .average_rating_recomendations_text,
.app_supervegan .custom_navigation_see_all,
.app_supervegan .home_section_2_text_1,
.app_supervegan .number_of_comments,
.app_supervegan .rating_numbers,
.app_supervegan .summary_text_wrap .lower_small_text,
.app_supervegan .supervegan_ammount_input,
.app_supervegan .supervegan_breadcrumbs a,
.app_supervegan .supervegan_breadcrumbs span,
.app_supervegan a.view_more_recipes,
.app_supervegan a.view_more_reviews {
  font-size: 14px;
}
.app_supervegan .suplements_carousel_text_1 {
  font-size: calc(12px + 1 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .suplements_carousel_text_1 {
    font-size: 13px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .suplements_carousel_text_1 {
    font-size: 12px;
  }
}
.app_supervegan .home_section_2_text_2,
.app_supervegan .supervegan-comment-text,
.app_supervegan .supervegan_comment_date {
  font-size: 13px;
}
.app_supervegan .highlight_story_cat,
.app_supervegan .product_summary_2_carousel {
  font-size: 12px;
}
.app_supervegan .product_summary_2_icons_wrap p {
  font-size: 11px;
}
.app_supervegan .article_cat,
.app_supervegan .supervegan_breadcrumbs .supervegan_breadcrumbs_spacer i {
  font-size: 10px;
}
.app_supervegan .supervegan_home_carousel h2 {
  font-size: calc(54px + 22 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .supervegan_home_carousel h2 {
    font-size: 76px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .supervegan_home_carousel h2 {
    font-size: 54px;
  }
}
.app_supervegan .home_section_3_title,
.app_supervegan .home_section_4_title,
.app_supervegan .underlined_title {
  font-size: calc(36px + 24 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .home_section_3_title,
  .app_supervegan .home_section_4_title,
  .app_supervegan .underlined_title {
    font-size: 60px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .home_section_3_title,
  .app_supervegan .home_section_4_title,
  .app_supervegan .underlined_title {
    font-size: 36px;
  }
}
.app_supervegan .home_section_3_carousel_title {
  font-size: calc(36px + 16 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .home_section_3_carousel_title {
    font-size: 52px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .home_section_3_carousel_title {
    font-size: 36px;
  }
}
.app_supervegan .home_section_6_title {
  font-size: calc(36px + 11 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .home_section_6_title {
    font-size: 47px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .home_section_6_title {
    font-size: 36px;
  }
}
.app_supervegan .supervegan_team_detail_interview_title {
  font-size: calc(30px + 12 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .supervegan_team_detail_interview_title {
    font-size: 42px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .supervegan_team_detail_interview_title {
    font-size: 30px;
  }
}
.app_supervegan .underlined_title_small {
  font-size: calc(30px + 5 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .underlined_title_small {
    font-size: 35px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .underlined_title_small {
    font-size: 30px;
  }
}
.app_supervegan .home_section_5_article_title {
  font-size: calc(22px + 12 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .home_section_5_article_title {
    font-size: 34px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .home_section_5_article_title {
    font-size: 22px;
  }
}
.app_supervegan .manifesto_section_1_wrapper_title {
  font-size: calc(24px + 7 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .manifesto_section_1_wrapper_title {
    font-size: 31px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .manifesto_section_1_wrapper_title {
    font-size: 24px;
  }
}
.app_supervegan .supervegan_home_carousel p {
  font-size: calc(21px + 10 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .supervegan_home_carousel p {
    font-size: 31px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .supervegan_home_carousel p {
    font-size: 21px;
  }
}
.app_supervegan .home_section_3_carousel_text {
  font-size: calc(26px + 2 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .home_section_3_carousel_text {
    font-size: 28px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .home_section_3_carousel_text {
    font-size: 26px;
  }
}
.app_supervegan .home_section_5_title {
  font-size: 28px;
}
.app_supervegan .manifesto_section_1_wrapper_text,
.app_supervegan .our_team_text {
  font-size: calc(16px + 8 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .manifesto_section_1_wrapper_text,
  .app_supervegan .our_team_text {
    font-size: 24px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .manifesto_section_1_wrapper_text,
  .app_supervegan .our_team_text {
    font-size: 16px;
  }
}
.app_supervegan .home_section_6_text {
  font-size: calc(22px + 1 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .home_section_6_text {
    font-size: 23px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .home_section_6_text {
    font-size: 22px;
  }
}
.app_supervegan .home_section_4_text,
.app_supervegan .home_section_5_article_text {
  font-size: calc(16px + 4 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .home_section_4_text,
  .app_supervegan .home_section_5_article_text {
    font-size: 20px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .home_section_4_text,
  .app_supervegan .home_section_5_article_text {
    font-size: 16px;
  }
}
.app_supervegan .suplements_carousel_small_text {
  font-size: calc(10px + 1 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .app_supervegan .suplements_carousel_small_text {
    font-size: 11px;
  }
}
@media (max-width: 350px) {
  .app_supervegan .suplements_carousel_small_text {
    font-size: 10px;
  }
}
.supervegan_share_menu i {
  font-size: calc(36px + 24 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .supervegan_share_menu i {
    font-size: 60px;
  }
}
@media (max-width: 350px) {
  .supervegan_share_menu i {
    font-size: 36px;
  }
}
.app_supervegan .manifesto_top {
  background: transparent
    url(/img/supervegan/manifesto/fitness_manifesto_top.png) no-repeat 50% /
    cover;
  background-color: rgba(0, 0, 0, 0.8);
  min-height: 600px;
}
.app_supervegan .manifesto_content_top_wrapper {
  position: relative;
  max-width: 949px;
  width: 100%;
}
.app_supervegan .manifesto_content_top_red {
  left: 0;
  top: 0;
  background: #d04137;
  border-radius: 4px;
  padding: 20px;
  font-size: 43px;
  line-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
  text-transform: uppercase;
  text-shadow: 0 6.6501px 5.32008px rgba(0, 0, 0, 0.173674),
    0 22.3363px 17.869px rgba(0, 0, 0, 0.256326);
}
.app_supervegan .manifesto_content_top,
.app_supervegan .manifesto_content_top_red {
  font-style: normal;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
  color: #fff;
}
.app_supervegan .manifesto_content_top {
  line-height: 130%;
  padding-top: 40px;
  text-shadow: 0 2.76726px 2.21381px rgba(0, 0, 0, 0.120893),
    0 6.6501px 5.32008px rgba(0, 0, 0, 0.173674),
    0 12.5216px 10.0172px rgba(0, 0, 0, 0.215),
    0 22.3363px 17.869px rgba(0, 0, 0, 0.256326),
    0 41.7776px 33.4221px rgba(0, 0, 0, 0.309107),
    0 100px 80px rgba(0, 0, 0, 0.43),
    0 2.76726px 2.21381px rgba(0, 0, 0, 0.120893),
    0 6.6501px 5.32008px rgba(0, 0, 0, 0.173674);
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  margin: 0 44px;
}
.app_supervegan .manifesto_section_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #f2f5f7;
}
.app_supervegan .manifesto_section_1_wrapper_1_title {
  color: #525252;
  letter-spacing: -0.02em;
  line-height: 0.9;
}
.app_supervegan .manifesto_section_1_wrapper_1_picture {
  width: 687px;
}
.app_supervegan .manifesto_section_1_wrapper_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 744px;
  margin-top: 56px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.app_supervegan .manifesto_section_1_wrapper_2 h2 {
  font-size: 34px;
}
.app_supervegan .manifesto_section_1_wrapper_3 {
  width: 100%;
  max-width: 804px;
  color: #525252;
  margin-top: 56px;
}
.app_supervegan .manifesto_section_1_wrapper_title {
  line-height: 0.9;
  color: #525252;
  letter-spacing: -0.02em;
}
.app_supervegan .manifesto_section_1_wrapper_text {
  line-height: 145%;
  letter-spacing: -0.02em;
}
.app_supervegan .manifesto_section_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 120px;
  background: url(/img/supervegan/manifesto/bg.png);
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
}
.app_supervegan .manifesto_section_2_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 0;
  width: 100%;
}
.app_supervegan .manifesto_section_2_left {
  padding: 200px 0;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;
}
.app_supervegan .manifesto_section_2_text {
  margin-left: 15%;
  margin-right: 15%;
  font-weight: 500;
  line-height: 145%;
  letter-spacing: -0.02em;
  color: #fff;
  font-size: 24px;
}
.app_supervegan .manifesto_section_2_right {
  padding: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: url(/img/supervegan/manifesto/solta_besta.png);
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  height: 100%;
  min-height: 760px;
  border-radius: 20px;
}
.app_supervegan .manifesto_section_2_wrap {
  margin-left: 15%;
  margin-right: 15%;
  top: 300px;
  position: relative;
  text-shadow: 0 5.88513px 10.0172px #000, 0 47px 80px rgba(0, 0, 0, 0.5);
}
.app_supervegan .manifesto_section_2_title {
  color: #ffd938;
  font-weight: 700;
  font-size: 40px;
  line-height: 90%;
}
.app_supervegan .manifesto_section_3 {
  background-color: #f2f5f7;
  padding: 0 120px;
  padding-top: 0;
}
.app_supervegan .manifesto_section_3_container {
  margin-left: 44px;
  margin-right: 44px;
}
.app_supervegan .manifesto_card {
  border-radius: 16px;
  background-color: #fff;
  padding: 0;
  margin-top: 48px;
}
.app_supervegan .manifesto_card_image_left {
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}
.app_supervegan .manifesto_card_image_left,
.app_supervegan .manifesto_card_image_right {
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  padding: 0;
  height: 415px;
}
.app_supervegan .manifesto_card_image_right {
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}
.app_supervegan .manifesto_card_text {
  margin-left: 15%;
  margin-right: 15%;
  font-weight: 500;
  line-height: 155%;
  letter-spacing: -0.02em;
  color: #525252;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 24px;
}
@media only screen and (max-width: 992px) {
  .app_supervegan .manifesto_section_1_wrapper_3 {
    width: 95%;
  }
  .app_supervegan .manifesto_section_2 {
    padding: 0;
  }
  .app_supervegan .manifesto_section_2_left {
    padding: 100px 20px;
  }
  .app_supervegan .manifesto_section_3 {
    padding: 0;
  }
  .app_supervegan .manifesto_content_top_red {
    padding: 20px;
    font-size: 32px;
  }
}
.write_a_review_button_mobile {
  font-size: 20px;
}
.our_team_2 .our_team_2_header {
  padding: 0 3rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  max-width: 1206px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 38px;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .our_team_2 .our_team_2_header {
    padding: 0 16px;
    margin-top: 32px;
  }
}
.our_team_2 .our_team_2_header_text {
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 450;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: #525252;
  font-size: calc(16px + 6 * ((100vw - 350px) / 1090));
  margin-top: 9px;
  margin-bottom: 0;
}
@media (min-width: 1440px) {
  .our_team_2 .our_team_2_header_text {
    font-size: 22px;
  }
}
@media (max-width: 350px) {
  .our_team_2 .our_team_2_header_text {
    font-size: 16px;
  }
}
.our_team_2 .our_team_2-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .our_team_2 .our_team_2-nav {
    display: none;
  }
}
@media (min-width: 768px) {
  .our_team_2 .our_team_2-nav .our_team_2_header_1 {
    padding-right: 20px;
  }
}
.our_team_2 .our_team_2-nav .our_team_2-next,
.our_team_2 .our_team_2-nav .our_team_2-prev {
  width: 42px;
  height: 42px;
  background: #e3e9ed;
  border-radius: 30px;
  position: relative;
  cursor: pointer;
}
.our_team_2 .our_team_2-nav .our_team_2-next.disabled,
.our_team_2 .our_team_2-nav .our_team_2-prev.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.our_team_2 .our_team_2-nav .our_team_2-next {
  margin-left: 10px;
}
.our_team_2 .our_team_2-nav .our_team_2-next:after {
  position: absolute;
  content: "\E905";
  color: #525252;
  font-size: 14px;
  font-family: icomoon !important;
  top: 11px;
  left: 18px;
}
.our_team_2 .our_team_2-nav .our_team_2-prev:after {
  position: absolute;
  content: "\E90B";
  color: #525252;
  font-size: 14px;
  font-family: icomoon !important;
  top: 11px;
  right: 18px;
}
.our_team_2 .team-carousel {
  padding: 0 3rem;
  width: 100%;
  margin: 0 auto 40px;
  max-width: 1206px;
  position: relative;
}
@media (max-width: 767px) {
  .our_team_2 .team-carousel {
    padding: 0 16px;
  }
}
.our_team_2 .team-carousel .owl-stage {
  left: -95px;
}
@media (max-width: 767px) {
  .our_team_2 .team-carousel .owl-stage {
    left: -75px;
  }
}
.our_team_2 .team-carousel.last_slide .owl-stage {
  left: 95px;
}
@media (max-width: 767px) {
  .our_team_2 .team-carousel.last_slide .owl-stage {
    left: 75px;
  }
}
.our_team_2 .team-carousel .owl-stage-outer {
  overflow: visible;
}
.our_team_2 .team-carousel .team_member_picture {
  padding-bottom: 133%;
  width: 100%;
  border-radius: 4px;
  background-size: cover;
  background-position: 50%;
}
@media (max-width: 767px) {
  .our_team_2 .team-carousel .team_member_picture {
    padding-bottom: 242px;
  }
}
.our_team_2 .team-carousel .owl-dots {
  display: none;
}
@media (max-width: 576px) {
  .our_team_2 .team-carousel .owl-nav {
    display: block;
  }
}
.our_team_2 .team-carousel .owl-nav .owl-next,
.our_team_2 .team-carousel .owl-nav .owl-prev {
  top: 0;
  font-size: 0;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 100px;
  opacity: 1;
  margin-top: 0;
}
@media (max-width: 767px) {
  .our_team_2 .team-carousel .owl-nav .owl-next,
  .our_team_2 .team-carousel .owl-nav .owl-prev {
    top: 116px;
    width: 20px;
    height: 20px;
  }
}
.our_team_2 .team-carousel .owl-nav .owl-next:after,
.our_team_2 .team-carousel .owl-nav .owl-prev:after {
  font-family: icomoon !important;
  color: #000;
  top: 2px;
  font-size: 12px;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .our_team_2 .team-carousel .owl-nav .owl-next:after,
  .our_team_2 .team-carousel .owl-nav .owl-prev:after {
    top: 52%;
    font-size: 6px;
  }
}
@media (min-width: 768px) {
  .our_team_2 .team-carousel .owl-nav .owl-prev {
    left: 56px;
  }
}
@media (max-width: 767px) {
  .our_team_2 .team-carousel .owl-nav .owl-prev {
    left: 8px;
  }
}
.our_team_2 .team-carousel .owl-nav .owl-prev:after {
  content: "\E90B";
  left: 48%;
}
.our_team_2 .team-carousel .owl-nav .owl-next {
  right: 64px;
}
@media (max-width: 1200px) {
  .our_team_2 .team-carousel .owl-nav .owl-next {
    right: 25px;
  }
}
@media (max-width: 767px) {
  .our_team_2 .team-carousel .owl-nav .owl-next {
    right: 8px;
  }
}
.our_team_2 .team-carousel .owl-nav .owl-next:after {
  content: "\E905";
  left: 52%;
}
.our_team_2 .our_team_2_footer {
  padding: 0 3rem;
  width: 100%;
  margin: auto;
  max-width: 1206px;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .our_team_2 .our_team_2_footer {
    padding: 0 16px;
    margin-bottom: 50px;
  }
}
.our_team_2 .team_member_name_2 {
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 90%;
  color: #000;
  margin-bottom: 3px;
}
.our_team_2 .team_member_designation_2 {
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 450;
  font-size: 18px;
  line-height: 100%;
  color: #8a939f;
  margin-bottom: 0;
}
.our_team_2 .our_team_2_view_more {
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 450;
  line-height: 120%;
  letter-spacing: -0.01em;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  font-size: calc(16px + 6 * ((100vw - 350px) / 1090));
  color: #525252;
}
@media (min-width: 1440px) {
  .our_team_2 .our_team_2_view_more {
    font-size: 22px;
  }
}
@media (max-width: 350px) {
  .our_team_2 .our_team_2_view_more {
    font-size: 16px;
  }
}
.product_summary_2_carousel_new_tag {
  font-family: futura-pt-condensed, sans-serif;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
  background: transparent url(/img/supervegan/price_red_background_2.svg)
    no-repeat 50%/100% 100%;
  position: absolute;
}
@media (min-width: 768px) {
  .product_summary_2_carousel_new_tag {
    top: 8px;
    left: 4px;
    padding: 0 6px;
    height: 19px;
    line-height: 19px;
    font-size: 16.09px;
  }
}
@media (max-width: 767px) {
  .product_summary_2_carousel_new_tag {
    top: 6px;
    left: 5px;
    padding: 0 5px;
    font-size: 13.8539px;
    height: 19px;
    line-height: 19px;
  }
}
.product_completo_section_1 {
  background: #fff;
  padding-top: 30px;
  position: relative;
}
@media (min-width: 768px) {
  .product_completo_section_1 {
    padding-bottom: 56px;
  }
}
@media (max-width: 767px) {
  .product_completo_section_1 {
    padding-top: 0;
    background: #f5f0f5;
  }
}
.product_completo_section_1 .product_completo_section_1_inner_wrap {
  width: 100%;
  max-width: 1354px;
  margin: auto;
}
@media (min-width: 912px) {
  .product_completo_section_1 .product_completo_section_1_inner_wrap {
    padding: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.product_completo_section_1 .product_completo_carousel_wrap {
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
}
@media (min-width: 768px) {
  .product_completo_section_1
    .product_completo_carousel_wrap.product_completo_carousel_wrap_mobile {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .product_completo_section_1
    .product_completo_carousel_wrap.product_completo_carousel_wrap_desktop {
    display: none !important;
  }
}
.product_completo_section_1 .product_completo_carousel_wrap.active {
  display: block;
  opacity: 1;
}
.product_completo_section_1 .product_completo_carousel_wrap .owl-nav {
  display: none !important;
}
@media (min-width: 912px) {
  .product_completo_section_1 .product_completo_carousel_wrap {
    width: calc(47% - 30px);
    margin-right: 30px;
    max-width: 600px;
    -ms-flex-item-align: start;
    align-self: flex-start;
    position: relative;
    z-index: 1;
  }
}
.product_completo_section_1
  .product_completo_carousel_wrap
  .product_completo_carousel {
  margin-bottom: 10px;
  visibility: hidden;
  opacity: 1;
}
.product_completo_section_1
  .product_completo_carousel_wrap
  .product_completo_carousel.owl-loaded {
  visibility: visible;
  opacity: 1;
}

.product_completo_section_1 .product_completo_carousel_wrap .owl-stage-outer {
  overflow: visible;
}
.product_completo_section_1 .product_completo_carousel_wrap .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.product_completo_section_1 .product_completo_carousel_wrap .carousel_picture {
  z-index: 2;
}
.product_completo_section_1 .product_completo_carousel_wrap .carousel_picture,
.product_completo_section_1
  .product_completo_carousel_wrap
  .carousel_picture_shadow {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.product_completo_section_1
  .product_completo_carousel_wrap
  .carousel_picture_shadow {
  z-index: 1;
  opacity: 0.7;
  -webkit-filter: blur(142px);
  filter: blur(142px);
}
@media (max-width: 767px) {
  .product_completo_section_1
    .product_completo_carousel_wrap
    .carousel_picture_shadow {
    -webkit-filter: blur(64px);
    filter: blur(64px);
  }
}
.product_completo_section_1 .product_completo_carousel_wrap .owl-item {
  position: relative;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.product_completo_section_1 .product_completo_carousel_wrap .owl-item.active {
  opacity: 1;
  -webkit-transition: all 0.2s ease 0.1s;
  transition: all 0.2s ease 0.1s;
}
.product_completo_section_1 .product_completo_carousel_wrap .owl-nav.disabled {
  display: none;
}
.product_completo_section_1 .product_completo_carousel_wrap .item {
  width: 100%;
  padding-bottom: 83.33333333333333%;
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.product_completo_section_1 .product_completo_thumbnails {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .product_completo_section_1 .product_completo_thumbnails {
    padding: 0 16px;
  }
}
.product_completo_section_1 .product_completo_thumbnails li {
  list-style: none;
  width: 42px;
  position: relative;
  opacity: 0.4;
  margin: 0 7.5px;
  cursor: pointer;
  -webkit-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
  -webkit-box-shadow: 0 10px 40px rgba(82, 82, 82, 0.1);
  box-shadow: 0 10px 40px rgba(82, 82, 82, 0.1);
  border: 1px solid hsla(0, 0%, 91%, 0.5);
  border-radius: 3px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .product_completo_section_1 .product_completo_thumbnails li {
    border-radius: 4px;
  }
}
.product_completo_section_1 .product_completo_thumbnails li.active {
  opacity: 1;
  border: 1px solid #96c950;
}
.product_completo_section_1 .product_completo_thumbnails li a {
  display: block;
  width: 100%;
  padding-bottom: calc(100% - 2px);
  position: relative;
  background: #fff;
  -webkit-box-shadow: 0 0 5px rgba(82, 82, 82, 0.08);
  box-shadow: 0 0 5px rgba(82, 82, 82, 0.08);
}
.product_completo_section_1 .product_completo_thumbnails li a img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -o-object-fit: contain;
  object-fit: contain;
}
.product_completo_section_1 .product_completo_section_1_content_wrap {
  width: 50%;
  max-width: 602px;
  padding-top: 111px;
  position: relative;
  z-index: 10;
}
.product_completo_section_1
  .product_completo_section_1_content_wrap
  .product_completo_name {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  text-align: left;
  letter-spacing: -0.04em;
  color: #000;
  font-size: 34px;
  font-size: calc(26px + 8 * ((100vw - 350px) / 1090));
  margin-bottom: 4px;
}
@media (min-width: 1440px) {
  .product_completo_section_1
    .product_completo_section_1_content_wrap
    .product_completo_name {
    font-size: 34px;
  }
}
@media (max-width: 350px) {
  .product_completo_section_1
    .product_completo_section_1_content_wrap
    .product_completo_name {
    font-size: 26px;
  }
}
.product_completo_section_1 .rating_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 13px;
}
.product_completo_section_1 .rating_numbers {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: -0.02em;
  color: #525252;
  margin-left: 9px;
}
.product_completo_section_1 .rating_numbers span {
  color: #9da9b9;
}
.product_completo_section_1 .product_completo_rating_and_share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 16px;
}
.product_completo_section_1 .product_completo_rating_and_share .rating_numbers {
  display: inline;
}
.product_completo_section_1 .share_menu_toggle {
  font-size: calc(18px + 4 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .product_completo_section_1 .share_menu_toggle {
    font-size: 22px;
  }
}
@media (max-width: 350px) {
  .product_completo_section_1 .share_menu_toggle {
    font-size: 18px;
  }
}
.product_completo_section_1 .share_menu_toggle i {
  color: #cacaca;
}
.product_completo_section_1 .product_description_wrap {
  margin-bottom: 19px;
}
.product_completo_section_1
  .product_description_wrap.product_description_wrap_trigger_view_more {
  cursor: pointer;
}
.product_completo_section_1
  .product_description_wrap
  .product_description_inner_wrap {
  overflow: hidden;
  position: relative;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 156%;
  letter-spacing: -0.02em;
  color: #525252;
}

.product_description_wrap
.product_description_inner_wrap {
  overflow: hidden;
  position: relative;
}

.product_completo_section_1
  .product_description_wrap
  .product_description_inner_wrap
  div,
.product_completo_section_1
  .product_description_wrap
  .product_description_inner_wrap
  p {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 156%;
  letter-spacing: -0.02em;
  color: #525252;
  margin-bottom: 0;
}
.product_completo_section_1
  .product_description_wrap
  .product_description_inner_wrap
  .full_content {
  top: 0;
  left: 0;
  width: 100%;
  position: absolute;
  z-index: 0;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.product_completo_section_1
  .product_description_wrap
  .product_description_inner_wrap
  .excerpt {
  position: relative;
  z-index: 1;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.product_description_wrap
.product_description_inner_wrap
.excerpt {
  position: relative;
  z-index: 1;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.product_description_wrap
.product_description_inner_wrap
.full_content {
  top: 0;
  left: 0;
  position: absolute;
  z-index: 0;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.product_completo_section_1
  .product_description_wrap
  .product_completo_view_more_button {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 156%;
  letter-spacing: -0.02em;
  text-decoration: underline !important;
  color: #525252;
  margin-top: 8px;
  display: block;
  cursor: pointer;
}
.product_completo_section_1
  .product_description_wrap
  .product_completo_view_more_button
  span:first-child {
  display: block;
}
/*.product_description_wrap*/
.product_completo_view_more_button
span:first-child {
  display: block;
}

.product_completo_view_more_button {
  cursor: pointer;
}

.product_description_wrap
.product_completo_view_more_button
span:nth-child(2) {
  display: none;
}

.product_completo_section_1
  .product_description_wrap
  .product_completo_view_more_button
  span:nth-child(2) {
  display: none;
}
.product_completo_section_1 .product_description_wrap.expanded .excerpt {
  z-index: 0;
  opacity: 0;
}
.product_completo_section_1 .product_description_wrap.expanded .full_content {
  z-index: 1;
  opacity: 1;
}
.product_completo_section_1
  .product_description_wrap.expanded
  .product_completo_view_more_button
  span:first-child {
  display: none;
}
.product_description_wrap .excerpt p {
  margin:0;
}
.product_description_wrap.expanded .excerpt {
  z-index: 0;
  opacity: 0;
}
.product_description_wrap.expanded .full_content {
  z-index: 1;
  opacity: 1;
}

.product_description_wrap.expanded
.product_completo_view_more_button
span:first-child {
  display: none;
}

.product_description_wrap.expanded
.product_completo_view_more_button
span:nth-child(2) {
  display: block;
}

.product_completo_section_1
  .product_description_wrap.expanded
  .product_completo_view_more_button
  span:nth-child(2) {
  display: block;
}
.product_completo_section_1 .product_weight_buttons {
  font-size: 0;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .product_completo_section_1 .product_weight_buttons {
    margin-bottom: 24px;
  }
}
.product_completo_section_1 .product_weight_buttons .product_weight_button {
  cursor: pointer;
  background: hsla(0, 0%, 100%, 0.6);
  border: 2px solid #e3e9ed;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 37px;
  text-align: center;
  letter-spacing: -0.02em;
  padding: 0 20px;
  color: #525252;
  margin-right: 15px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.product_completo_section_1
  .product_weight_buttons
  .product_weight_button.active,
.product_completo_section_1
  .product_weight_buttons
  .product_weight_button:hover {
  background: #eff3e9;
  border: 2px solid #96c950;
  -webkit-box-shadow: 0 10px 20px rgba(150, 201, 80, 0.18),
    0 2px 6px rgba(150, 201, 80, 0.12), 0 0 1px rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 20px rgba(150, 201, 80, 0.18),
    0 2px 6px rgba(150, 201, 80, 0.12), 0 0 1px rgba(0, 0, 0, 0.04);
  border-radius: 2px;
}
.product_completo_section_1 .price_item {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.product_completo_section_1 .price_item.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .product_completo_section_1 .price_item {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.product_completo_section_1 .produto_completo_price {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 34px;
  font-size: calc(28px + 6 * ((100vw - 350px) / 1090));
  line-height: 1;
  letter-spacing: -0.05em;
  color: #1e8e20;
}
@media (min-width: 1440px) {
  .product_completo_section_1 .produto_completo_price {
    font-size: 34px;
  }
}
@media (max-width: 350px) {
  .product_completo_section_1 .produto_completo_price {
    font-size: 28px;
  }
}
.product_completo_section_1 .product_completo_oldprice {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: calc(24px + 4 * ((100vw - 350px) / 1090));
  line-height: 1;
  letter-spacing: -0.03em;
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
  color: #9da9b9;
  margin-left: 10px;
  white-space: nowrap;
}
@media (min-width: 1440px) {
  .product_completo_section_1 .product_completo_oldprice {
    font-size: 28px;
  }
}
@media (max-width: 350px) {
  .product_completo_section_1 .product_completo_oldprice {
    font-size: 24px;
  }
}
.product_completo_section_1 .product_completo_ammount_warp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid rgba(157, 169, 185, 0.4);
  border-radius: 204px;
  margin-left: 32px;
}
.product_completo_section_1 .product_completo_ammount_warp .decrease,
.product_completo_section_1 .product_completo_ammount_warp .increase {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  width: 34px;
  color: #9da9b9;
  font-size: 20px;
  line-height: 40px;
  height: 40px;
  text-align: center;
  cursor: pointer;
}
@media (max-width: 767px) {
  .product_completo_section_1 .product_completo_ammount_warp .decrease,
  .product_completo_section_1 .product_completo_ammount_warp .increase {
    width: 40px;
  }
}
.product_completo_section_1
  .product_completo_ammount_warp
  .product_completo_ammount_input {
  border: 0;
  line-height: 40px;
  height: 40px;
  text-align: center;
  width: 30px;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: #525252;
}
@media (max-width: 767px) {
  .product_completo_section_1
    .product_completo_ammount_warp
    .product_completo_ammount_input {
    width: 34px;
  }
}
.product_completo_section_1
  .product_completo_ammount_warp
  .product_completo_ammount_input:focus {
  outline: none;
}
.product_completo_section_1 .add_to_cart_desktop {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 46px;
  height: 46px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 1px 3px rgba(82, 82, 82, 0.2);
  background: #96c950;
  border: 1px solid rgba(0, 0, 0, 0.05);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 16px 24px rgba(150, 201, 80, 0.2),
    0 2px 6px rgba(150, 201, 80, 0.12), 0 0 1px rgba(0, 0, 0, 0.04);
  box-shadow: 0 16px 24px rgba(150, 201, 80, 0.2),
    0 2px 6px rgba(150, 201, 80, 0.12), 0 0 1px rgba(0, 0, 0, 0.04);
  border-radius: 50px;
  padding: 0 40px;
  margin-left: 32px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
  min-width: 231px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .product_completo_section_1 .add_to_cart_desktop {
    display: none;
  }
}
.product_completo_section_1 .add_to_cart_desktop:hover {
  background: #894b9b;
  border: 1px solid #894b9b;
}
.product_completo_section_1 .add_to_cart_desktop.no_stock,
.product_completo_section_1 .add_to_cart_desktop.no_stock:hover {
  background: #dd5631;
  border: 1px solid rgba(0, 0, 0, 0.05);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 16px 24px rgba(221, 86, 49, 0.2),
    0 2px 6px rgba(221, 86, 49, 0.12), 0 0 1px rgba(0, 0, 0, 0.04);
  box-shadow: 0 16px 24px rgba(221, 86, 49, 0.2),
    0 2px 6px rgba(221, 86, 49, 0.12), 0 0 1px rgba(0, 0, 0, 0.04);
  border-radius: 50px;
}
.product_completo_section_1 .product_completo_badge_wrap {
  margin-top: 10px;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 41px;
}
.product_completo_section_1 .product-completo-badge {
  border: 1px solid #eee;
  border-radius: 3px;
  background: #fcfcfc;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 7px 15px;
  margin-top: 4px;
  margin-right: 15px;
}
@media (max-width: 1199px) {
  .product_completo_section_1 .product-completo-badge {
    font-size: 8px;
  }
}
.product_completo_section_1 .product-completo-badge .product-promo {
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #1e8e20;
}
.product_completo_section_1 .product-completo-badge i {
  font-size: 14px;
  color: #1e8e20;
  margin-right: 8px;
}
@media (max-width: 1199px) {
  .product_completo_section_1 .product-completo-badge i {
    font-size: 10px;
    margin-right: 4px;
    font-size: 16px;
  }
}
.product_completo_section_1 .product-completo-badge.popular .product-promo,
.product_completo_section_1 .product-completo-badge.popular i {
  color: #dd5631;
}
.product_completo_section_1
  .product-completo-badge.online_exclusive
  .product-promo,
.product_completo_section_1 .product-completo-badge.online_exclusive i {
  color: #08b556;
}
.product_completo_section_1 .product-completo-badge.online_exclusive {
  display: none;
}
.product_completo_section_1 .product-completo-badge.online_exclusive.active {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.product_completo_section_1 .product-completo-badge.new {
  background: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(rgba(196, 141, 50, 0.05)),
      to(rgba(196, 141, 50, 0.05))
    ),
    #fcfcfc;
  background: linear-gradient(
      0deg,
      rgba(196, 141, 50, 0.05),
      rgba(196, 141, 50, 0.05)
    ),
    #fcfcfc;
  border: 1px solid #eee;
}
.product_completo_section_1 .product-completo-badge.new .product-promo,
.product_completo_section_1 .product-completo-badge.new i {
  color: #c48d32;
}
.product_completo_section_1 .product-completo-badge-discount {
  display: none;
}
.product_completo_section_1 .product-completo-badge-discount.active {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.product_completo_section_1 .product_completo_hover_tooltip {
  margin-left: 8px;
  height: 29px;
  position: relative;
  padding: 6px 0;
}
.product_completo_section_1
  .product_completo_hover_tooltip.product_completo_hover_tooltip_switch {
  display: none;
}
.product_completo_section_1
  .product_completo_hover_tooltip.product_completo_hover_tooltip_switch.active {
  display: block;
}
.product_completo_section_1
  .product_completo_hover_tooltip
  i.product_completo_hover_tooltip_icon {
  font-size: 15px;
  color: #8a939f;
}
.product_completo_section_1
  .product_completo_hover_tooltip
  .product_completo_hover_tooltip_description {
  background: #000 url(/img/product_completo_tooltip_background.png) no-repeat
    50% / cover;
  position: absolute;
  width: 350px;
  padding: 16px 24px;
  -webkit-box-shadow: 0 69px 80px rgba(0, 0, 0, 0.07),
    0 26.5778px 25.4815px rgba(0, 0, 0, 0.0425185),
    0 5.62222px 6.51852px rgba(0, 0, 0, 0.0274815);
  box-shadow: 0 69px 80px rgba(0, 0, 0, 0.07),
    0 26.5778px 25.4815px rgba(0, 0, 0, 0.0425185),
    0 5.62222px 6.51852px rgba(0, 0, 0, 0.0274815);
  border-radius: 8px;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  -webkit-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
}
@media (max-width: 767px) {
  .product_completo_section_1
    .product_completo_hover_tooltip
    .product_completo_hover_tooltip_description {
    display: none;
  }
}
.product_completo_section_1
  .product_completo_hover_tooltip
  .product_completo_hover_tooltip_description
  .product_completo_hover_tooltip_description_title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 8px;
}
.product_completo_section_1
  .product_completo_hover_tooltip
  .product_completo_hover_tooltip_description
  .product_completo_hover_tooltip_description_text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: #adadad;
  margin-bottom: 0;
}
.product_completo_section_1
  .product_completo_hover_tooltip:hover
  .product_completo_hover_tooltip_description {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}
.product_completo_section_1 .product_completo_caracteristics_wrap {
  display: grid;
  grid-template-columns: 33.333% 33.333% 33.333%;
  grid-column-gap: 16px;
  grid-row-gap: 10px;
}
.product_completo_section_1 .product_completo_caracteristics_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.product_completo_section_1 .product_completo_caracteristics_item i {
  color: #96c950;
  font-size: 17px;
  margin-right: 10px;
}
.product_completo_section_1 .product_completo_caracteristics_item span {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #525252;
}
.product_completo_section_1 .zoom_container_outter_wrap {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  max-width: 660px;
  opacity: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .product_completo_section_1 .zoom_container_outter_wrap {
    display: none !important;
  }
}
.product_completo_section_1 .zoom_container_outter_wrap.active {
  opacity: 1;
  z-index: 20;
}
.product_completo_section_1 .zoom_container_outter_wrap #zoom_container {
  width: 100%;
  padding-bottom: 81.81818181818181%;
  -webkit-box-shadow: 0 12px 13px rgba(0, 0, 0, 0.035);
  box-shadow: 0 12px 13px rgba(0, 0, 0, 0.035);
  border-radius: 4.4px;
  position: relative;
  background: #fff;
}
.product_completo_section_1 .zoom_container_outter_wrap #zoom_container:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-box-shadow: 0 60px 80px rgba(0, 0, 0, 0.07);
  box-shadow: 0 60px 80px rgba(0, 0, 0, 0.07);
}
.product_completo_section_1 .img-zoom-lens {
  position: absolute;
  width: 176px;
  height: 144px;
  background: transparent url(/img/ZoomGrid.svg) no-repeat 50% / contain;
  opacity: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .product_completo_section_1 .img-zoom-lens {
    display: none !important;
  }
}
.product_completo_section_1 .item:hover .img-zoom-lens {
  opacity: 1;
  z-index: 5;
}
.full_screen_gallery_wrap {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #fff;
  border-radius: 4px;
  z-index: 9100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
}
@media (max-width: 767px) {
  .full_screen_gallery_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 52px;
  }
}
.full_screen_gallery_wrap.active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}
.full_screen_gallery_wrap .close_full_screen_gallery {
  position: absolute;
  font-size: 12px;
  color: #000;
  cursor: pointer;
  padding: 7px;
  top: 48px;
  right: 48px;
}
@media (max-width: 767px) {
  .full_screen_gallery_wrap .close_full_screen_gallery {
    padding: 4px;
    top: 16px;
    right: 16px;
  }
}
.full_screen_gallery_wrap .full_screen_gallery_section_1 {
  width: calc(64.17565485362096% + 24px);
  position: relative;
}
@media (max-width: 991px) {
  .full_screen_gallery_wrap .full_screen_gallery_section_1 {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .full_screen_gallery_wrap .full_screen_gallery_section_1 {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 0 14px;
  }
}
.full_screen_gallery_wrap .full_screen_gallery_section_2 {
  width: calc(35.82434514637904% - 24px);
  background: rgba(227, 233, 237, 0.3);
  padding: 78px 48px 48px;
}
@media (max-width: 991px) {
  .full_screen_gallery_wrap .full_screen_gallery_section_2 {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .full_screen_gallery_wrap .full_screen_gallery_section_2 {
    width: 100%;
    padding: 24px 0;
    text-align: center;
    height: 92px;
  }
}
.full_screen_gallery_wrap .full_screen_gallery_product_name {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: -0.04em;
  color: #000;
  margin-bottom: 9px;
}
@media (max-width: 767px) {
  .full_screen_gallery_wrap .full_screen_gallery_product_name {
    display: none;
  }
}
.full_screen_gallery_wrap .full_screen_gallery_options {
  margin-bottom: 6px;
}
@media (max-width: 767px) {
  .full_screen_gallery_wrap .full_screen_gallery_options {
    display: none;
  }
}
.full_screen_gallery_wrap
  .full_screen_gallery_options
  .full_screen_gallery_option {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 156%;
  letter-spacing: -0.02em;
  color: #525252;
}
.full_screen_gallery_wrap .owl-stage-outer {
  overflow: hidden;
  height: 100%;
  width: 100%;
  position: relative;
}
.full_screen_gallery_wrap .owl-item {
  height: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .full_screen_gallery_wrap .owl-item {
    padding-right: 24px;
  }
}
.full_screen_gallery_wrap .owl-item .item {
  width: 100%;
  height: 100%;
  position: relative;
}
.full_screen_gallery_wrap .owl-item .item .carousel_picture {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -o-object-fit: contain;
  object-fit: contain;
}
.full_screen_gallery_wrap .full_screen_gallery,
.full_screen_gallery_wrap .owl-stage {
  width: 100%;
  height: 100%;
  position: relative;
}
.full_screen_gallery_wrap .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.full_screen_gallery_wrap .owl-dots {
  display: none;
}
.full_screen_gallery_wrap .full_screen_gallery_thumbnails {
  padding: 0;
}
@media (min-width: 768px) {
  .full_screen_gallery_wrap .full_screen_gallery_thumbnails {
    width: 100%;
    max-width: 292px;
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    grid-row-gap: 16px;
    grid-column-gap: 16px;
  }
}
@media (max-width: 767px) {
  .full_screen_gallery_wrap .full_screen_gallery_thumbnails {
    max-width: 100%;
    white-space: nowrap;
    text-align: left;
    display: inline-block;
    overflow-y: hidden;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin-bottom: 0;
  }
  .full_screen_gallery_wrap .full_screen_gallery_thumbnails::-webkit-scrollbar {
    display: none;
  }
}
.full_screen_gallery_wrap .full_screen_gallery_thumbnails li {
  list-style: none;
  opacity: 0.4;
  border: 1.5px solid #e9e9e9;
  border-radius: 4.5px;
  background: #fff;
  cursor: pointer;
}
.full_screen_gallery_wrap .full_screen_gallery_thumbnails li.active {
  border: 1.5px solid #96c950;
  opacity: 1;
}
@media (max-width: 767px) {
  .full_screen_gallery_wrap .full_screen_gallery_thumbnails li {
    margin-left: 16px;
    width: 44px;
    display: inline-block;
  }
  .full_screen_gallery_wrap .full_screen_gallery_thumbnails li:last-child {
    margin-right: 16px;
  }
}
.product_completo_share_menu_wrap {
  background: rgba(0, 0, 0, 0.9);
}
.product_completo_share_menu_wrap .close {
  font-size: 44px;
  right: 0;
  margin: 24px;
  top: 0;
  left: unset;
  color: #fff;
  position: absolute;
}
@media (max-width: 767px) {
  .product_completo_share_menu_wrap .close {
    margin: 0 14px;
  }
}
.product_completo_share_menu_wrap .product_completo_share_menu {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
.product_completo_share_menu_wrap .product_completo_share_menu .social-button {
  margin: 0 2%;
  padding: 10px;
  color: #96c950;
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
  opacity: 0;
}
.product_completo_share_menu_wrap
  .product_completo_share_menu
  .social-button
  i {
  font-size: calc(36px + 24 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .product_completo_share_menu_wrap
    .product_completo_share_menu
    .social-button
    i {
    font-size: 60px;
  }
}
@media (max-width: 350px) {
  .product_completo_share_menu_wrap
    .product_completo_share_menu
    .social-button
    i {
    font-size: 36px;
  }
}
.product_completo_share_menu_wrap.show .social-button {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.product_completo_share_menu_wrap.show .social-button:first-child {
  -webkit-transition: all 0.5s ease 0.1s;
  transition: all 0.5s ease 0.1s;
}
.product_completo_share_menu_wrap.show .social-button:nth-child(2) {
  -webkit-transition: all 0.5s ease 0.2s;
  transition: all 0.5s ease 0.2s;
}
.product_completo_share_menu_wrap.show .social-button:nth-child(3) {
  -webkit-transition: all 0.5s ease 0.3s;
  transition: all 0.5s ease 0.3s;
}
.product_completo_section_2 {
  background: rgba(0, 0, 0, 0.03);
  border-radius: 20px 20px 0 0;
  padding: 30px 0;
}
@media (max-width: 767px) {
  .product_completo_section_2 {
    padding: 0 0 24px;
  }
}
.product_completo_section_2 .section_2_inner_wrap {
  max-width: 1086px;
  margin: auto;
  width: 100%;
}
@media (min-width: 768px) {
  .product_completo_section_2 .section_2_inner_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 12px 0 32px;
  }
}
.product_completo_section_2 .product_completo_breadcrumb a {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #8e9cae;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.product_completo_section_2 .product_completo_breadcrumb a:hover {
  color: #1e8e20;
}
.product_completo_section_2 .product_completo_breadcrumb a i {
  font-size: calc(15px + 1 * ((100vw - 350px) / 1090));
  color: #8e9cae;
}
@media (min-width: 1440px) {
  .product_completo_section_2 .product_completo_breadcrumb a i {
    font-size: 16px;
  }
}
@media (max-width: 350px) {
  .product_completo_section_2 .product_completo_breadcrumb a i {
    font-size: 15px;
  }
}
.product_completo_section_2 .product_completo_breadcrumb a,
.product_completo_section_2 .product_completo_breadcrumb span {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #8e9cae;
  margin-right: 10px;
}
.product_completo_section_2
  .product_completo_breadcrumb
  .product_completo_breadcrumbs_spacer {
  margin-right: 9px;
}
.product_completo_section_2
  .product_completo_breadcrumb
  .product_completo_breadcrumbs_spacer
  i {
  color: #8e9cae;
  font-size: 8px;
}
.product_completo_section_2
  .product_completo_breadcrumb
  .product_completo_breadcrumb_inner_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row;
  flex-flow: row;
  white-space: nowrap;
  overflow-y: hidden;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media (max-width: 767px) {
  .product_completo_section_2
    .product_completo_breadcrumb
    .product_completo_breadcrumb_inner_wrap {
    padding: 20px 24px 10px;
  }
}
.product_completo_section_2
  .product_completo_breadcrumb
  .product_completo_breadcrumb_inner_wrap
  > span:last-child {
  padding-right: 24px;
}
.product_completo_section_2
  .product_completo_breadcrumb
  .product_completo_breadcrumb_inner_wrap::-webkit-scrollbar {
  display: none;
}
.product_completo_section_2 .product_completo_nav a {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #525252;
  cursor: pointer;
  position: relative;
}
@media (min-width: 768px) {
  .product_completo_section_2 .product_completo_nav a {
    margin-left: 9px;
  }
}
@media (min-width: 768px) {
  .product_completo_section_2 .product_completo_nav a.active {
    color: #1e8e20;
  }
}
.product_completo_section_2 .product_completo_nav a:hover {
  color: #1e8e20;
}
@media (max-width: 767px) {
  .product_completo_section_2 .product_completo_nav a {
    padding: 8px 0;
  }
  .product_completo_section_2 .product_completo_nav a:after {
    content: "\E905";
    font-family: icomoon !important;
    font-size: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 5px;
    position: absolute;
  }
}
@media (max-width: 767px) {
  .product_completo_section_2 .product_completo_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 24px;
  }
}
.product_completo_section_3 {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#fdfbfb),
    to(#ebedee)
  );
  background: linear-gradient(90deg, #fdfbfb, #ebedee);
  padding-top: 55px;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .product_completo_section_3 {
    padding-top: 16px;
  }
}
.product_completo_section_3 .product_completo_section_3_title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 120%;
  text-align: center;
  letter-spacing: -0.05em;
  color: #894b9b;
  font-size: calc(20px + 6 * ((100vw - 350px) / 1090));
  width: 100%;
  max-width: 702px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (min-width: 1440px) {
  .product_completo_section_3 .product_completo_section_3_title {
    font-size: 26px;
  }
}
@media (max-width: 350px) {
  .product_completo_section_3 .product_completo_section_3_title {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .product_completo_section_3 .product_completo_section_3_title {
    margin-bottom: 19px;
  }
}
@media (max-width: 767px) {
  .product_completo_section_3 .product_completo_section_3_title {
    line-height: 1.1;
    text-align: left;
    padding: 0 16px;
    margin-bottom: 32px;
  }
}
.product_completo_section_3 .product_completo_section_3_claims {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 32px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 767px) {
  .product_completo_section_3 .product_completo_section_3_claims {
    padding: 0 16px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 20px;
  }
}
.product_completo_section_3
  .product_completo_section_3_claims
  .product_completo_section_3_claim {
  margin: 0 10px 8px;
}
@media (max-width: 767px) {
  .product_completo_section_3
    .product_completo_section_3_claims
    .product_completo_section_3_claim {
    margin: 0 8px 8px 0;
  }
}
.product_completo_section_3
  .product_completo_section_3_claims
  .product_completo_section_3_claim
  i {
  font-size: 16px;
  color: #1e8e20;
  margin-right: 5px;
}
.product_completo_section_3
  .product_completo_section_3_claims
  .product_completo_section_3_claim
  span {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #525252;
}
.product_completo_section_3 .beneficts_balloons_wrap {
  width: 100%;
  max-width: 1502px;
  margin: 0 auto 38px;
}
@media (min-width: 768px) {
  .product_completo_section_3 .beneficts_balloons_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 32px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .product_completo_section_3 .beneficts_balloons_wrap {
    padding: 0 16px;
  }
}
.product_completo_section_3 .beneficts_balloons_wrap_center {
  width: 36.80555555555556%;
  padding: 0 65px;
}
@media (max-width: 767px) {
  .product_completo_section_3 .beneficts_balloons_wrap_center {
    display: none;
  }
}
.product_completo_section_3
  .beneficts_balloons_wrap_center
  .beneficts_balloons_wrap_center_inner_wrap {
  width: 100%;
  position: relative;
  padding-bottom: 76.25%;
}
.product_completo_section_3
  .beneficts_balloons_wrap_center
  img.beneficts_picture {
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 6.39432px;
  z-index: 2;
}
.product_completo_section_3
  .beneficts_balloons_wrap_center
  img.beneficts_picture.beneficts_picture_cover {
  -o-object-fit: cover;
  object-fit: cover;
}
.product_completo_section_3
  .beneficts_balloons_wrap_center
  img.beneficts_picture_shadow {
  z-index: 1;
  width: 86%;
  height: 86%;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-filter: blur(55.9503px);
  filter: blur(55.9503px);
  border-radius: 6.39432px;
  z-index: -1;
}
@media (min-width: 768px) {
  .product_completo_section_3 .beneficts_balloons_wrap_left,
  .product_completo_section_3 .beneficts_balloons_wrap_right {
    width: 25.97222222222222%;
  }
}
@media (max-width: 767px) {
  .product_completo_section_3 .beneficts_balloons_wrap_left,
  .product_completo_section_3 .beneficts_balloons_wrap_right {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .product_completo_section_3 .beneficts_balloons_wrap_left {
    margin-bottom: 8px;
  }
}
.product_completo_section_3 .beneficts_balloon {
  padding: 20px 16px;
  background: #fff;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03),
    0 2px 6px rgba(0, 0, 0, 0.07), 0 0 1px rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03), 0 2px 6px rgba(0, 0, 0, 0.07),
    0 0 1px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .product_completo_section_3 .beneficts_balloon {
    margin-bottom: 8px;
  }
}
.product_completo_section_3 .beneficts_balloon:last-child {
  margin-bottom: 0;
}
.product_completo_section_3 .beneficts_balloon_text {
  margin-bottom: 0;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: #000;
}
@media (max-width: 767px) {
  .product_completo_section_3 .beneficts_balloon_text {
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }
}
.product_completo_section_3 .product_summary_2_icons_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  margin: auto;
  padding: 0 16px;
}
@media (max-width: 575px) {
  .product_completo_section_3 .product_summary_2_icons_wrap {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.product_completo_section_3
  .product_summary_2_icons_wrap
  .product_summary_2_icon {
  width: 80px;
  margin: 0 6px;
  text-align: center;
  text-transform: uppercase;
}
.product_completo_section_3
  .product_summary_2_icons_wrap
  .product_summary_2_icon
  i {
  font-size: 35px;
  color: #8a939f;
}
.product_completo_section_3
  .product_summary_2_icons_wrap
  .product_summary_2_icon
  p {
  margin-bottom: 0;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 11.223px;
  letter-spacing: -0.02em;
  color: #000;
}
.product_completo_section_3 .product_completo_section_3_illustration_mobile {
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  margin-bottom: 40px;
  position: relative;
}
@media (min-width: 768px) {
  .product_completo_section_3 .product_completo_section_3_illustration_mobile {
    display: none;
  }
}
.product_completo_section_3
  .product_completo_section_3_illustration_mobile
  .beneficts_picture_wrap {
  width: 100%;
  padding-bottom: 99.3730407523511%;
  position: relative;
}
.product_completo_section_3
  .product_completo_section_3_illustration_mobile
  .beneficts_picture_wrap
  .beneficts_picture {
  z-index: 4;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  overflow: hidden;
  border-radius: 5.1017px;
}
.product_completo_section_3
  .product_completo_section_3_illustration_mobile
  .beneficts_picture_wrap
  .beneficts_picture_shadow {
  z-index: 1;
  left: 50%;
  width: 86.20689655172414%;
  height: 86.20689655172414%;
  bottom: 0;
  position: absolute;
  -webkit-filter: blur(44.6399px);
  filter: blur(44.6399px);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.product_completo_section_4 {
  background: #f4f4f2;
  padding-top: 70px;
  padding-bottom: 15px;
  position: relative;
  z-index: 20;
}
@media (max-width: 767px) {
  .product_completo_section_4 {
    padding-top: 44px;
    background: #fff;
    padding-bottom: 0;
  }
}
.product_completo_section_4 .product_completo_section_4_title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-align: center;
  letter-spacing: -0.04em;
  color: #846503;
  margin-bottom: 0;
  padding: 0 32px;
  max-width: 928px;
  display: block;
  margin: 0 auto 6px;
  font-size: calc(26px + 12 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .product_completo_section_4 .product_completo_section_4_title {
    font-size: 38px;
  }
}
@media (max-width: 350px) {
  .product_completo_section_4 .product_completo_section_4_title {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .product_completo_section_4 .product_completo_section_4_title {
    text-align: left;
    padding: 0 24px;
    line-height: 1;
  }
}
.product_completo_section_4 .product_completo_section_4_text {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-align: center;
  letter-spacing: -0.01em;
  color: #525252;
  padding: 0 32px;
  max-width: 928px;
  display: block;
  margin: 0 auto;
  font-size: calc(14px + 4 * ((100vw - 350px) / 1090));
  margin-bottom: 15px;
}
@media (min-width: 1440px) {
  .product_completo_section_4 .product_completo_section_4_text {
    font-size: 18px;
  }
}
@media (max-width: 350px) {
  .product_completo_section_4 .product_completo_section_4_text {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .product_completo_section_4 .product_completo_section_4_text {
    text-align: left;
    padding: 0 24px;
  }
}
.product_completo_section_4 .product_completo_section_4_carousel_wrap {
  max-width: 1024px;
  margin: auto;
  display: block;
}
.product_completo_section_4
  .product_completo_section_4_carousel_wrap
  .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  left: 130px;
}
@media (max-width: 767px) {
  .product_completo_section_4
    .product_completo_section_4_carousel_wrap
    .owl-stage {
    left: -63px;
  }
}
@media (min-width: 768px) {
  .product_completo_section_4
    .product_completo_section_4_carousel_wrap.no_scroll_on_desktop
    .owl-stage {
    left: 0;
  }
}
@media (min-width: 768px) {
  .product_completo_section_4
    .product_completo_section_4_carousel_wrap.no_scroll_on_desktop
    .product_completo_section_4_carousel_next,
  .product_completo_section_4
    .product_completo_section_4_carousel_wrap.no_scroll_on_desktop
    .product_completo_section_4_carousel_prev {
    display: none !important;
  }
}
.product_completo_section_4 .product_completo_section_4_carousel_wrap .item {
  position: relative;
}
.product_completo_section_4
  .product_completo_section_4_carousel_wrap
  .item
  .product_completo_section_4_carousel_text {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.03em;
  color: #666;
  width: 100%;
  position: relative;
}
.product_completo_section_4
  .product_completo_section_4_carousel_wrap
  .item
  .product_completo_section_4_carousel_text
  p {
  margin-bottom: 0;
}
.product_completo_section_4
  .product_completo_section_4_carousel_wrap
  .item
  .product_completo_section_4_carousel_text
  strong {
  font-weight: 500;
  color: #333;
}
.product_completo_section_4
  .product_completo_section_4_carousel_wrap
  .item
  .product_completo_section_4_carousel_text
  .product_completo_section_4_carousel_text_excerpt {
  width: 100%;
  z-index: 2;
  -webkit-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
}
.product_completo_section_4
  .product_completo_section_4_carousel_wrap
  .item
  .product_completo_section_4_carousel_text
  .product_completo_section_4_carousel_text_excerpt
  strong {
  white-space: nowrap !important;
}
.product_completo_section_4
  .product_completo_section_4_carousel_wrap
  .item
  .product_completo_section_4_carousel_text
  .product_completo_section_4_carousel_text_full {
  position: relative;
  z-index: 1;
}
.product_completo_section_4
  .product_completo_section_4_carousel_wrap
  .item
  .item_inner_wrap {
  margin: 0 -24px;
  padding: 24px 32px;
  width: calc(100% + 48px);
  position: relative;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  border-radius: 16px;
}
.product_completo_section_4
  .product_completo_section_4_carousel_wrap
  .item
  .item_inner_wrap_hover {
  position: absolute;
  background: #fbfbf9;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  z-index: -1;
  top: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 767px) {
  .product_completo_section_4
    .product_completo_section_4_carousel_wrap
    .item
    .item_inner_wrap_hover {
    display: none;
  }
}
.product_completo_section_4
  .product_completo_section_4_carousel_wrap
  .item
  .item_inner_wrap_hover
  .product_completo_section_4_carousel_image_wrap {
  background-color: #e1e1e1;
  -webkit-filter: drop-shadow(0 2.38775px 23.8776px rgba(82, 82, 82, 0.15));
  filter: drop-shadow(0 2.38775px 23.8776px rgba(82, 82, 82, 0.15));
}
@media (min-width: 768px) {
  .product_completo_section_4
    .product_completo_section_4_carousel_wrap
    .item:hover
    .item_inner_wrap_hover {
    opacity: 1;
    visibility: visible;
    z-index: 20;
  }
}
.product_completo_section_4
  .product_completo_section_4_carousel_wrap
  .product_completo_section_4_carousel_next,
.product_completo_section_4
  .product_completo_section_4_carousel_wrap
  .product_completo_section_4_carousel_prev {
  width: 40px;
  height: 38.49px;
  margin-top: 140px;
  background: #fff;
  -webkit-box-shadow: 0 16px 24px rgba(0, 0, 0, 0.06),
    0 2px 6px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.04);
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.04),
    0 0 1px rgba(0, 0, 0, 0.04);
  border-radius: 100px;
  position: absolute;
  z-index: 50;
  cursor: pointer;
}
@media (max-width: 767px) {
  .product_completo_section_4
    .product_completo_section_4_carousel_wrap
    .product_completo_section_4_carousel_next,
  .product_completo_section_4
    .product_completo_section_4_carousel_wrap
    .product_completo_section_4_carousel_prev {
    opacity: 0.95;
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25),
      0 2px 5px rgba(0, 0, 0, 0.2), 0 3px 30px rgba(82, 82, 82, 0.15);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25), 0 2px 5px rgba(0, 0, 0, 0.2),
      0 3px 30px rgba(82, 82, 82, 0.15);
    width: 20px;
    height: 20px;
  }
}
.product_completo_section_4
  .product_completo_section_4_carousel_wrap
  .product_completo_section_4_carousel_next
  i,
.product_completo_section_4
  .product_completo_section_4_carousel_wrap
  .product_completo_section_4_carousel_prev
  i {
  position: absolute;
  font-size: 12px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .product_completo_section_4
    .product_completo_section_4_carousel_wrap
    .product_completo_section_4_carousel_next
    i,
  .product_completo_section_4
    .product_completo_section_4_carousel_wrap
    .product_completo_section_4_carousel_prev
    i {
    font-size: 6px;
  }
}
.product_completo_section_4
  .product_completo_section_4_carousel_wrap
  .product_completo_section_4_carousel_prev {
  left: calc(50% - 572px);
}
.product_completo_section_4
  .product_completo_section_4_carousel_wrap
  .product_completo_section_4_carousel_next {
  right: calc(50% - 572px);
}
@media (max-width: 1199px) {
  .product_completo_section_4
    .product_completo_section_4_carousel_wrap
    .product_completo_section_4_carousel_next {
    right: 5px;
  }
}
.product_completo_section_4 .product_completo_section_4_carousel_title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 110%;
  text-align: center;
  letter-spacing: -0.04em;
  color: #2e2f2f;
  margin-bottom: 21px;
  width: 100%;
  font-size: calc(18px + 4 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .product_completo_section_4 .product_completo_section_4_carousel_title {
    font-size: 22px;
  }
}
@media (max-width: 350px) {
  .product_completo_section_4 .product_completo_section_4_carousel_title {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .product_completo_section_4 .product_completo_section_4_carousel_title {
    margin-bottom: 18px;
  }
}
.product_completo_section_4
  .product_completo_section_4_carousel_image_outter_wrap {
  width: calc(100% - 30px);
  margin: 0 15px 28px;
}
@media (max-width: 767px) {
  .product_completo_section_4
    .product_completo_section_4_carousel_image_outter_wrap {
    margin: 0 15px 16px;
  }
}
.product_completo_section_4
  .product_completo_section_4_carousel_image_inner_wrap {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
}
.product_completo_section_4
  .product_completo_section_4_carousel_image_inner_wrap
  .product_completo_section_4_carousel_image_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 1000px;
  overflow: hidden;
  z-index: 2;
  background-color: #e1e1e1;
}
.product_completo_section_4
  .product_completo_section_4_carousel_image_inner_wrap
  .product_completo_section_4_carousel_image_wrap
  .product_completo_section_4_carousel_image {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.product_completo_section_4
  .product_completo_section_4_carousel_image_inner_wrap
  .product_completo_section_4_carousel_image_shadow_wrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 95%;
  height: 95%;
  z-index: 1;
}
.product_completo_section_4
  .product_completo_section_4_carousel_image_inner_wrap
  .product_completo_section_4_carousel_image_shadow_wrap
  .product_completo_section_4_carousel_image_shadow {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 1000px;
  opacity: 0.7;
  -webkit-filter: blur(30px);
  filter: blur(30px);
}
@media (max-width: 767px) {
  .product_completo_section_4
    .product_completo_section_4_carousel_image_inner_wrap
    .product_completo_section_4_carousel_image_shadow_wrap
    .product_completo_section_4_carousel_image_shadow {
    -webkit-filter: blur(24.6281px);
    filter: blur(24.6281px);
  }
}
@media (max-width: 767px) {
  .product_completo_section_4 .owl-dots {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .product_completo_section_4 .owl-dots .owl-dot {
    width: 7px;
    height: 7px;
    border-radius: 20px;
    background: #e3e9ed;
    display: block;
    margin: 0 3px;
  }
  .product_completo_section_4 .owl-dots .owl-dot.active {
    background: #96c950;
  }
  .product_completo_section_4 .owl-dots .owl-dot span {
    display: none;
  }
}
.product_completo_section_4 .owl-stage-outer:before {
  content: "";
  width: calc(50% - 512px);
  height: 100%;
  background: radial-gradient(
    100% 71.23% at 0 50%,
    #f4f4f2 0,
    #f4f4f2 37.5%,
    hsla(60, 8%, 95%, 0.94) 73.44%,
    hsla(60, 8%, 95%, 0) 100%
  );
  top: 0;
  z-index: 10;
  left: 0;
  position: absolute;
}
@media (max-width: 1199px) {
  .product_completo_section_4 .owl-stage-outer:before {
    display: none;
  }
}
.product_completo_section_4 .owl-stage-outer:after {
  content: "";
  height: 100%;
  top: 0;
  z-index: 10;
  right: 0;
  position: absolute;
}
@media (min-width: 1200px) {
  .product_completo_section_4 .owl-stage-outer:after {
    width: calc(50% - 512px);
    background: radial-gradient(
      100% 71.23% at 100% 50%,
      #f4f4f2 0,
      #f4f4f2 37.5%,
      hsla(60, 8%, 95%, 0.94) 73.44%,
      hsla(60, 8%, 95%, 0) 100%
    );
  }
}
@media (max-width: 1199px) {
  .product_completo_section_4 .owl-stage-outer:after {
    width: 40px;
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(hsla(0, 0%, 100%, 0)),
      to(#fff)
    );
    background: linear-gradient(90deg, hsla(0, 0%, 100%, 0), #fff);
  }
}
.product_completo_section_4 .product_completo_section_4_carousel {
  visibility: hidden;
}
.product_completo_section_4 .product_completo_section_4_carousel.owl-loaded {
  visibility: visible;
}
.product_completo_section_4
  .product_completo_section_4_carousel.last_slide
  .owl-stage {
  left: 0;
}
@media (max-width: 767px) {
  .product_completo_section_4
    .product_completo_section_4_carousel.last_slide
    .owl-stage {
    left: 0;
  }
}
.product_completo_section_4 .product_completo_section_4_carousel .owl-nav {
  display: none;
}
.product_completo_section_5 {
  background: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .product_completo_section_5 {
    padding-top: 22px;
    padding-bottom: 0;
  }
}
.product_completo_section_5 .product_completo_section_5_header {
  display: block;
  margin: auto;
  max-width: 1089px;
  padding: 0 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .product_completo_section_5 .product_completo_section_5_header {
    margin-bottom: 22px;
    padding: 0 24px;
  }
}
.product_completo_section_5 .product_completo_section_5_title {
  margin-bottom: 0;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #39b8b3;
  font-size: calc(20px + 4 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .product_completo_section_5 .product_completo_section_5_title {
    font-size: 24px;
  }
}
@media (max-width: 350px) {
  .product_completo_section_5 .product_completo_section_5_title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .product_completo_section_5 .product_completo_section_5_title {
    line-height: 90%;
  }
}
.product_completo_section_5 .product_completo_section_5_button {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: -0.03em;
  color: #000;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.product_completo_section_5 .product_completo_section_5_button:hover {
  color: #3ca047;
}
.product_completo_section_5 .product_completo_section_5_content {
  display: block;
  margin: auto;
  max-width: 1089px;
  padding: 0 32px;
}
@media (max-width: 767px) {
  .product_completo_section_5 .product_completo_section_5_content {
    padding: 0 0 0 24px;
  }
}
.product_completo_section_5 .product_completo_relacted_products_carousel {
  position: relative;
  visibility: hidden;
}
.product_completo_section_5
  .product_completo_relacted_products_carousel.owl-loaded {
  visibility: visible;
}
.product_completo_section_5
  .product_completo_relacted_products_carousel
  .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}
.product_completo_section_5
  .product_completo_relacted_products_carousel
  .owl-item {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.product_completo_section_5
  .product_completo_relacted_products_carousel
  .owl-item.active {
  opacity: 1;
}
.product_completo_section_5
  .product_completo_relacted_products_carousel
  .owl-item
  .item {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 576px) {
  .product_completo_section_5
    .product_completo_relacted_products_carousel
    .owl-nav {
    display: block;
  }
}
.product_completo_section_5
  .product_completo_relacted_products_carousel
  .product-card-2 {
  -webkit-box-shadow: 0 3.30667px 19.0133px rgba(0, 0, 0, 0.1),
    0 0.414046px 2.38076px rgba(0, 0, 0, 0.05);
  box-shadow: 0 3.30667px 19.0133px rgba(0, 0, 0, 0.1),
    0 0.414046px 2.38076px rgba(0, 0, 0, 0.05);
  border-radius: 3.30667px;
}
.product_completo_section_5
  .product_completo_relacted_products_carousel
  .product-card-2
  .product-card-content-wrap {
  padding: 20px;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
@media (max-width: 767px) {
  .product_completo_section_5
    .product_completo_relacted_products_carousel
    .product-card-2
    .product-card-content-wrap {
    padding: 12px;
  }
}
.product_completo_section_5
  .product_completo_relacted_products_carousel
  .product-card-2
  .product-badge {
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .product_completo_section_5
    .product_completo_relacted_products_carousel
    .product-card-2
    .product-badge {
    margin-bottom: 1px;
    padding: 0 9px;
    height: 22px;
  }
}
.product_completo_section_5
  .product_completo_relacted_products_carousel
  .product-card-2
  .product-badge
  i {
  font-size: calc(10px + 2 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .product_completo_section_5
    .product_completo_relacted_products_carousel
    .product-card-2
    .product-badge
    i {
    font-size: 12px;
  }
}
@media (max-width: 350px) {
  .product_completo_section_5
    .product_completo_relacted_products_carousel
    .product-card-2
    .product-badge
    i {
    font-size: 10px;
  }
}
.product_completo_section_5
  .product_completo_relacted_products_carousel
  .product-card-2
  .product-badge
  span {
  font-size: calc(10px + 2 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .product_completo_section_5
    .product_completo_relacted_products_carousel
    .product-card-2
    .product-badge
    span {
    font-size: 12px;
  }
}
@media (max-width: 350px) {
  .product_completo_section_5
    .product_completo_relacted_products_carousel
    .product-card-2
    .product-badge
    span {
    font-size: 10px;
  }
}
.product_completo_section_5
  .product_completo_relacted_products_carousel
  .product-card-2
  .product-weight {
  font-size: 12px;
  margin-bottom: 3px !important;
  font-size: calc(10px + 3 * ((100vw - 350px) / 1090));
  line-height: 1.230769230769231;
}
@media (min-width: 1440px) {
  .product_completo_section_5
    .product_completo_relacted_products_carousel
    .product-card-2
    .product-weight {
    font-size: 13px;
  }
}
@media (max-width: 350px) {
  .product_completo_section_5
    .product_completo_relacted_products_carousel
    .product-card-2
    .product-weight {
    font-size: 10px;
  }
}
.product_completo_section_5
  .product_completo_relacted_products_carousel
  .product-card-2
  .product-price {
  font-size: 16px;
  margin-bottom: 0;
}
.product_completo_section_5
  .product_completo_relacted_products_carousel
  .product-card-2
  h3.product-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px !important;
  font-size: calc(13px + 3 * ((100vw - 350px) / 1090));
  line-height: 110%;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
@media (min-width: 1440px) {
  .product_completo_section_5
    .product_completo_relacted_products_carousel
    .product-card-2
    h3.product-title {
    font-size: 16px;
  }
}
@media (max-width: 350px) {
  .product_completo_section_5
    .product_completo_relacted_products_carousel
    .product-card-2
    h3.product-title {
    font-size: 13px;
  }
}
@media (min-width: 768px) {
  .product_completo_section_5
    .product_completo_relacted_products_carousel
    .product-card-2
    h3.product-title {
    line-height: 1.2;
    letter-spacing: -0.03em;
  }
}
@media (max-width: 767px) {
  .product_completo_section_5
    .product_completo_relacted_products_carousel
    .product-card-2
    h3.product-title {
    font-weight: 700;
    letter-spacing: -0.03em;
  }
}
.product_completo_section_5
  .product_completo_relacted_products_carousel
  .product-card-2
  .product-thumb {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.product_completo_section_5
  .product_completo_relacted_products_carousel
  .product-card-2
  .rating_stars {
  margin-bottom: 10px !important;
}
.product_completo_section_5
  .product_completo_relacted_products_carousel
  .owl-next,
.product_completo_section_5
  .product_completo_relacted_products_carousel
  .owl-prev {
  width: 40px;
  height: 40px;
  -webkit-box-shadow: 0 0 5px rgba(82, 82, 82, 0.08),
    0 10px 40px rgba(82, 82, 82, 0.1);
  box-shadow: 0 0 5px rgba(82, 82, 82, 0.08), 0 10px 40px rgba(82, 82, 82, 0.1);
  border-radius: 100%;
  position: absolute;
  z-index: 20;
  -webkit-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
  opacity: 1;
  background: #fff;
  cursor: pointer;
}
@media (min-width: 768px) {
  .product_completo_section_5
    .product_completo_relacted_products_carousel
    .owl-next,
  .product_completo_section_5
    .product_completo_relacted_products_carousel
    .owl-prev {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@media (max-width: 767px) {
  .product_completo_section_5
    .product_completo_relacted_products_carousel
    .owl-next,
  .product_completo_section_5
    .product_completo_relacted_products_carousel
    .owl-prev {
    top: 105px;
  }
}
.product_completo_section_5
  .product_completo_relacted_products_carousel
  .owl-next.disabled,
.product_completo_section_5
  .product_completo_relacted_products_carousel
  .owl-prev.disabled {
  opacity: 0;
}
.product_completo_section_5
  .product_completo_relacted_products_carousel
  .owl-next
  i,
.product_completo_section_5
  .product_completo_relacted_products_carousel
  .owl-prev
  i {
  position: absolute;
  font-size: 12px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.product_completo_section_5
  .product_completo_relacted_products_carousel
  .owl-prev {
  left: -50px;
}
@media (max-width: 767px) {
  .product_completo_section_5
    .product_completo_relacted_products_carousel
    .owl-prev {
    left: 15px;
  }
}
.product_completo_section_5
  .product_completo_relacted_products_carousel
  .owl-next {
  right: -50px;
}
@media (max-width: 767px) {
  .product_completo_section_5
    .product_completo_relacted_products_carousel
    .owl-next {
    right: 15px;
  }
}
@media (max-width: 767px) {
  .product_completo_section_5
    .product_completo_relacted_products_carousel
    .owl-dots {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 16px 24px 16px 0;
  }
  .product_completo_section_5
    .product_completo_relacted_products_carousel
    .owl-dots
    .owl-dot {
    width: 7px;
    height: 7px;
    border-radius: 20px;
    background: #e3e9ed;
    display: block;
    margin: 0 3px;
  }
  .product_completo_section_5
    .product_completo_relacted_products_carousel
    .owl-dots
    .owl-dot.active {
    background: #96c950;
  }
  .product_completo_section_5
    .product_completo_relacted_products_carousel
    .owl-dots
    .owl-dot
    span {
    display: none;
  }
}
.product_completo_section_6 {
  background: #fff;
  padding-top: 74px;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .product_completo_section_6 {
    padding-top: 22px;
    padding-bottom: 16px;
  }
}
.product_completo_section_6 .product_completo_section_6_header {
  display: block;
  margin: auto;
  max-width: 1089px;
  padding: 0 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .product_completo_section_6 .product_completo_section_6_header {
    margin-bottom: 22px;
    padding: 0 24px;
  }
}
.product_completo_section_6 .product_completo_section_6_title {
  margin-bottom: 0;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #39b8b3;
  font-size: calc(20px + 4 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .product_completo_section_6 .product_completo_section_6_title {
    font-size: 24px;
  }
}
@media (max-width: 350px) {
  .product_completo_section_6 .product_completo_section_6_title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .product_completo_section_6 .product_completo_section_6_title {
    color: #08b556;
    line-height: 90%;
  }
}
.product_completo_section_6 .product_completo_section_6_button {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: -0.03em;
  color: #000;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.product_completo_section_6 .product_completo_section_6_button:hover {
  color: #3ca047;
}
.product_completo_section_6 .product_completo_section_6_table {
  display: block;
  margin: auto;
  max-width: 1089px;
  position: relative;
}
@media (min-width: 768px) {
  .product_completo_section_6 .product_completo_section_6_table {
    padding: 0 32px;
  }
}
@media (min-width: 768px) {
  .product_completo_section_6 .product_completo_section_6_table_head {
    margin-left: 16.66666666666667%;
    width: 83.33333333333333%;
    position: relative;
    margin-bottom: 8px;
  }
}
@media (max-width: 767px) {
  .product_completo_section_6 .product_completo_section_6_table_head {
    padding: 0 8px;
  }
}
@media (min-width: 768px) {
  .product_completo_section_6
    .product_completo_section_6_table_head
    .owl-stage {
    display: grid;
    grid-template-columns: 20% 20% 20% 20% 20%;
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .product_completo_section_6
    .product_completo_section_6_table_head
    .owl-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    left: -78px;
    position: relative;
  }
}
.product_completo_section_6
  .product_completo_section_6_table_head.last_slide
  .owl-stage {
  left: 0;
}
@media (min-width: 768px) {
  .product_completo_section_6 .product_completo_section_6_table_head .owl-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .product_completo_section_6 .product_completo_section_6_table_head .owl-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .product_completo_section_6 .product_completo_section_6_table_head .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}
@media (max-width: 767px) {
  .product_completo_section_6 .product_completo_section_6_table_head .item {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}
.product_completo_section_6
  .product_completo_section_6_table_head
  .item
  .product_completo_section_6_table_carecteristics_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-bottom: 16px;
}
@media (max-width: 767px) {
  .product_completo_section_6
    .product_completo_section_6_table_head
    .item
    .product_completo_section_6_table_carecteristics_info {
    padding: 11px 11px 0;
    height: 100%;
  }
}
.product_completo_section_6
  .product_completo_section_6_table_head
  .item
  .product_completo_section_6_table_carecteristics_info_head {
  text-align: center;
}
@media (min-width: 768px) {
  .product_completo_section_6
    .product_completo_section_6_table_head
    .item.selected
    .product_completo_section_6_table_carecteristics_info {
    border: 1.20968px solid #96c950;
    -webkit-filter: drop-shadow(0 3.30667px 19.0133px rgba(0, 0, 0, 0.1)),
      drop-shadow(0 0.414046px 2.38076px rgba(0, 0, 0, 0.05));
    filter: drop-shadow(0 3.30667px 19.0133px rgba(0, 0, 0, 0.1)),
      drop-shadow(0 0.414046px 2.38076px rgba(0, 0, 0, 0.05));
    border-radius: 4.83871px;
  }
}
@media (max-width: 767px) {
  .product_completo_section_6
    .product_completo_section_6_table_head
    .item.selected
    .product_completo_section_6_table_carecteristics_info_head {
    -webkit-filter: drop-shadow(0 2.84602px 16.3646px rgba(0, 0, 0, 0.1)),
      drop-shadow(0 0.356366px 2.0491px rgba(0, 0, 0, 0.05));
    filter: drop-shadow(0 2.84602px 16.3646px rgba(0, 0, 0, 0.1)),
      drop-shadow(0 0.356366px 2.0491px rgba(0, 0, 0, 0.05));
    border-radius: 4.83871px;
    border: 1.20968px solid #96c950;
  }
}
.product_completo_section_6
  .product_completo_section_6_table_head
  .item.selected
  .product_completo_section_6_table_carecteristics_wrap {
  background: rgba(150, 201, 80, 0.13);
}
.product_completo_section_6 .product_completo_section_6_table_head .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  z-index: 1;
  position: relative;
  padding: 16px 10px 10px 16px;
}
@media (min-width: 768px) {
  .product_completo_section_6 .product_completo_section_6_table_head .owl-nav {
    display: none;
  }
}
.product_completo_section_6
  .product_completo_section_6_table_head
  .owl-nav
  .owl-next,
.product_completo_section_6
  .product_completo_section_6_table_head
  .owl-nav
  .owl-prev {
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background: #e3e9ed;
  position: relative;
}
.product_completo_section_6
  .product_completo_section_6_table_head
  .owl-nav
  .owl-next
  i,
.product_completo_section_6
  .product_completo_section_6_table_head
  .owl-nav
  .owl-prev
  i {
  font-size: 6px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #000;
}
.product_completo_section_6 .product_completo_section_6_table_head .owl-dots {
  height: 20px;
  margin: 0 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  left: 0;
  width: calc(100% - 68px);
  z-index: 4;
  bottom: 8px;
}
@media (min-width: 768px) {
  .product_completo_section_6 .product_completo_section_6_table_head .owl-dots {
    display: none;
  }
}
.product_completo_section_6
  .product_completo_section_6_table_head
  .owl-dots
  .owl-dot {
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background: #e3e9ed;
  margin: 0 3px;
}
.product_completo_section_6
  .product_completo_section_6_table_head
  .owl-dots
  .owl-dot.active {
  background: #96c950;
}
.product_completo_section_6 .product_completo_section_6_table_body {
  display: grid;
  grid-template-columns: 16.66666666666667% 16.66666666666667% 16.66666666666667% 16.66666666666667% 16.66666666666667% 16.66666666666667%;
}
@media (max-width: 767px) {
  .product_completo_section_6 .product_completo_section_6_table_body {
    display: none;
  }
}
.product_completo_section_6 .product_completo_section_6_table_picture_wrap {
  width: 100%;
  padding-bottom: 135.2941176470588%;
  position: relative;
}
@media (max-width: 767px) {
  .product_completo_section_6 .product_completo_section_6_table_picture_wrap {
    padding-bottom: 0;
    height: 170px;
    margin-bottom: 18px;
  }
}
.product_completo_section_6 .product_completo_section_6_table_picture_wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.product_completo_section_6 .product_completo_section_6_table_title {
  padding: 0 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.product_completo_section_6 .product_completo_section_6_table_title p {
  display: block;
  margin-bottom: 0;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: calc(13px + 2 * ((100vw - 350px) / 1090));
  line-height: 110%;
  letter-spacing: -0.03em;
  color: #000;
  width: 100%;
}
@media (min-width: 1440px) {
  .product_completo_section_6 .product_completo_section_6_table_title p {
    font-size: 15px;
  }
}
@media (max-width: 350px) {
  .product_completo_section_6 .product_completo_section_6_table_title p {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .product_completo_section_6 .product_completo_section_6_table_title p {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .product_completo_section_6 .product_completo_section_6_table_title {
    padding-bottom: 2px;
  }
}
.product_completo_section_6 .product_completo_section_6_table_button {
  padding: 0 7px;
  color: #8a939f;
}
.product_completo_section_6 .product_completo_section_6_table_button i {
  font-size: 9px;
}
.product_completo_section_6 .product_completo_section_6_table_button span {
  font-size: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}
@media (max-width: 767px) {
  .product_completo_section_6 .product_completo_section_6_table_button {
    text-align: center;
    margin-bottom: 10px;
  }
  .product_completo_section_6 .product_completo_section_6_table_button span {
    font-size: 11px;
  }
}
.product_completo_section_6 .product_completo_section_6_table_body_caption {
  height: 50px;
  background: rgba(150, 201, 80, 0.15);
  border-radius: 4px;
  width: 100%;
  margin-bottom: 1px;
  padding: 0 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.product_completo_section_6 .product_completo_section_6_table_body_caption p {
  margin-bottom: 0;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 110%;
  letter-spacing: -0.03em;
  color: #3a6832;
  display: block;
}
.product_completo_section_6
  .product_completo_section_6_table_body_checks
  .product_completo_section_6_table_body_check {
  height: 50px;
  background: rgba(227, 233, 237, 0.12);
  border-radius: 4px;
  width: 100%;
  margin-bottom: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.product_completo_section_6
  .product_completo_section_6_table_body_checks
  .product_completo_section_6_table_body_check
  i {
  opacity: 0.1;
  font-size: 11px;
  color: #525252;
}
.product_completo_section_6
  .product_completo_section_6_table_body_checks
  .product_completo_section_6_table_body_check.active
  i {
  opacity: 1;
  color: #1e8e20;
}
.product_completo_section_6
  .product_completo_section_6_table_body_checks.active
  .product_completo_section_6_table_body_check {
  background: rgba(150, 201, 80, 0.13);
}
.product_completo_section_6
  .product_completo_section_6_table_carecteristics_wrap {
  background: rgba(227, 233, 237, 0.12);
  border-radius: 4px;
  padding: 4px 0;
}
.product_completo_section_6
  .product_completo_section_6_table_carecteristics_wrap
  .product_completo_section_6_table_carecteristic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 4px 8px;
}
@media (max-width: 767px) {
  .product_completo_section_6
    .product_completo_section_6_table_carecteristics_wrap
    .product_completo_section_6_table_carecteristic {
    padding: 6px 12px;
  }
}
.product_completo_section_6
  .product_completo_section_6_table_carecteristics_wrap
  .product_completo_section_6_table_carecteristic
  i {
  font-size: 9px;
  margin-right: 6px;
  color: #3a6832;
}
@media (max-width: 767px) {
  .product_completo_section_6
    .product_completo_section_6_table_carecteristics_wrap
    .product_completo_section_6_table_carecteristic
    i {
    position: relative;
    bottom: -3px;
  }
}
.product_completo_section_6
  .product_completo_section_6_table_carecteristics_wrap
  .product_completo_section_6_table_carecteristic
  span {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 110%;
  letter-spacing: -0.03em;
  color: #3a6832;
}
.product_completo_section_7 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.product_completo_section_7 .product_completo_section_7_header {
  display: block;
  margin: auto;
  max-width: 1089px;
  padding: 0 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .product_completo_section_7 .product_completo_section_7_header {
    margin-bottom: 22px;
    padding: 0 24px;
  }
}
.product_completo_section_7 .product_completo_section_7_title {
  margin-bottom: 0;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.03em;
  color: #846503;
  font-size: calc(18px + 2 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .product_completo_section_7 .product_completo_section_7_title {
    font-size: 20px;
  }
}
@media (max-width: 350px) {
  .product_completo_section_7 .product_completo_section_7_title {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .product_completo_section_7 .product_completo_section_7_title {
    margin-bottom: 0;
    line-height: 1.1;
    letter-spacing: -0.04em;
  }
}
.product_completo_section_7 .product_completo_section_7_button {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  font-size: calc(16px + 2 * ((100vw - 350px) / 1090));
  line-height: 1.3125;
  letter-spacing: -0.03em;
  color: #000;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
@media (min-width: 1440px) {
  .product_completo_section_7 .product_completo_section_7_button {
    font-size: 18px;
  }
}
@media (max-width: 350px) {
  .product_completo_section_7 .product_completo_section_7_button {
    font-size: 16px;
  }
}
.product_completo_section_7 .product_completo_section_7_button:hover {
  color: #3ca047;
}
@media (min-width: 768px) {
  .product_completo_section_7 .product_completo_section_7_button {
    text-align: right;
  }
}
@media (max-width: 767px) {
  .product_completo_section_7 .product_completo_section_7_button {
    margin-left: 24px;
  }
}
.product_completo_section_7 .item {
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  -webkit-filter: drop-shadow(40px 40px 80px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(40px 40px 80px rgba(0, 0, 0, 0.1));
  display: block;
}
.product_completo_section_7 .item .product_completo_recipe_background {
  width: 100%;
  padding-bottom: 67.0391061452514%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  background-color: #000;
  display:block;
  height:220px;
  line-height:220px;
  overflow:hidden;
}

.product_completo_section_7 .item .product_completo_recipe_background .recipe_image {
  position: relative;
  margin: -50% auto;
  width: 100%;
  height:auto;
  vertical-align:middle;
}
@media (max-width: 767px) {
  .product_completo_section_7 .item .product_completo_recipe_background {
    padding-bottom: 67.7%;
  }
}
.product_completo_section_7 .item .product_completo_recipe_background:after {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  bottom: -1px;
  left: -1px;
  content: "";
  background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(transparent),
      color-stop(58.85%, rgba(0, 0, 0, 0.045625)),
      to(rgba(0, 0, 0, 0.73))
    ),
    rgba(0, 0, 0, 0.05);
  background: linear-gradient(
      180deg,
      transparent,
      rgba(0, 0, 0, 0.045625) 58.85%,
      rgba(0, 0, 0, 0.73)
    ),
    rgba(0, 0, 0, 0.05);
}
.product_completo_section_7 .item .product_completo_recipe_caption_wrap {
  padding: 17px 17px 13px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}
.product_completo_section_7 .product_completo_section_7_carousel_wrap {
  max-width: 1089px;
  padding: 0 32px;
  margin: auto;
}
@media (max-width: 767px) {
  .product_completo_section_7 .product_completo_section_7_carousel_wrap {
    padding: 0 24px;
    margin-bottom: 24px;
  }
}
.product_completo_section_7 .product_completo_section_7_carousel_wrap .owl-nav {
  display: none;
}
@media (min-width: 768px) {
  .product_completo_section_7
    .product_completo_section_7_carousel_wrap
    .product_completo_recipes_carousel {
    width: calc(100% + 84px);
    margin-right: -84px;
  }
}
.product_completo_section_7 .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}
@media (max-width: 767px) {
  .product_completo_section_7 .owl-stage {
    left: -18px;
    position: relative;
  }
}
.product_completo_section_7 .product_completo_recipe_pupular_tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: hsla(0, 0%, 100%, 0.7);
  -webkit-backdrop-filter: blur(6.31579px);
  backdrop-filter: blur(6.31579px);
  padding: 3px 8px;
  border-radius: 100px;
  margin-bottom: 1px;
}
.product_completo_section_7 .product_completo_recipe_pupular_tag i {
  font-size: 10px;
  color: #000;
  margin-right: 7px;
}
@media (max-width: 767px) {
  .product_completo_section_7 .product_completo_recipe_pupular_tag i {
    margin-right: 6px;
  }
}
.product_completo_section_7 .product_completo_recipe_pupular_tag span {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #000;
}
@media (max-width: 767px) {
  .product_completo_section_7 .product_completo_recipe_pupular_tag span {
    font-size: 10px;
  }
}
.product_completo_section_7 .product_completo_recipe_title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 0 27.3684px rgba(0, 0, 0, 0.84),
    0 0 8.71735px rgba(0, 0, 0, 0.510222), 0 0 2.23002px rgba(0, 0, 0, 0.329778),
    0 1.05263px 2.63158px rgba(0, 0, 0, 0.2),
    0 1.05263px 2.63158px rgba(0, 0, 0, 0.2);
  margin-bottom: 3px;
}
.product_completo_section_7 .product_completo_recipe_info_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product_completo_section_7
  .product_completo_recipe_info_wrap
  .product_completo_recipe_info {
  margin-right: 14px;
}
.product_completo_section_7
  .product_completo_recipe_info_wrap
  .product_completo_recipe_info
  i {
  color: #fff;
  font-size: 11px;
}
.product_completo_section_7
  .product_completo_recipe_info_wrap
  .product_completo_recipe_info
  span {
  color: #fff;
  font-size: 11px;
  margin-bottom: 6px;
}
@media (max-width: 767px) {
  .product_completo_section_7
    .product_completo_recipe_info_wrap
    .product_completo_recipe_info
    span {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: -0.02em;
  }
}
.product_completo_section_8 {
  padding-top: 80px;
  padding-bottom: 80px;
  background: rgba(227, 233, 237, 0.2);
}
@media (max-width: 767px) {
  .product_completo_section_8 {
    padding-top: 50px;
    padding-bottom: 0;
  }
}
.product_completo_section_8 .product_completo_section_8_inner_wrap {
  display: block;
  margin: auto;
  max-width: 1089px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 768px) {
  .product_completo_section_8 .product_completo_section_8_inner_wrap {
    padding: 0 32px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .product_completo_section_8 .product_completo_section_8_inner_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .product_completo_section_8 .product_completo_section_8_content {
    width: 44.69328140214216%;
    padding-right: 30px;
    max-width: 422px;
  }
}
@media (max-width: 767px) {
  .product_completo_section_8 .product_completo_section_8_content {
    padding: 0 16px;
    margin-bottom: 0;
  }
}
.product_completo_section_8 .product_completo_section_8_table {
  -webkit-box-shadow: 0 16px 24px rgba(234, 230, 255, 0.2),
    0 2px 6px rgba(234, 230, 255, 0.12), 0 0 1px rgba(0, 0, 0, 0.04);
  box-shadow: 0 16px 24px rgba(234, 230, 255, 0.2),
    0 2px 6px rgba(234, 230, 255, 0.12), 0 0 1px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  background: #ebe9f5;
}
@media (min-width: 768px) {
  .product_completo_section_8 .product_completo_section_8_table {
    width: 55.30671859785784%;
  }
}
@media (max-width: 767px) {
  .product_completo_section_8 .product_completo_section_8_table {
    width: 100%;
  }
}
.product_completo_section_8 .product_completo_section_8_table img {
  mix-blend-mode: multiply;
}
@media (min-width: 768px) {
  .product_completo_section_8 .product_completo_section_8_table img {
    margin: 48px auto;
    display: block;
    width: 74.64788732394366%;
  }
}
@media (max-width: 767px) {
  .product_completo_section_8 .product_completo_section_8_table img {
    width: 100%;
  }
}
.product_completo_section_8 .product_completo_section_8_title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 38px;
  font-size: calc(26px + 12 * ((100vw - 350px) / 1090));
  line-height: 110%;
  letter-spacing: -0.04em;
  color: #dd5631;
  margin-bottom: 60px;
}
@media (min-width: 1440px) {
  .product_completo_section_8 .product_completo_section_8_title {
    font-size: 38px;
  }
}
@media (max-width: 350px) {
  .product_completo_section_8 .product_completo_section_8_title {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .product_completo_section_8 .product_completo_section_8_title {
    margin-bottom: 35px;
  }
}
.product_completo_section_8 .product_completo_nutrition_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 5px;
}
.product_completo_section_8 .product_completo_nutrition_title i {
  color: #1e8e20;
  margin-right: 11px;
  font-size: 14px;
}
@media (max-width: 767px) {
  .product_completo_section_8 .product_completo_nutrition_title i {
    font-size: 16px;
  }
}
.product_completo_section_8 .product_completo_nutrition_title span {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.03em;
  color: #000;
  font-size: calc(16px + 2 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .product_completo_section_8 .product_completo_nutrition_title span {
    font-size: 18px;
  }
}
@media (max-width: 350px) {
  .product_completo_section_8 .product_completo_nutrition_title span {
    font-size: 16px;
  }
}
.product_completo_section_8
  .product_completo_nutrition_text
  .product_completo_nutrition_text_inner_wrap {
  margin-bottom: 3px;
}
.product_completo_section_8
  .product_completo_nutrition_text
  .product_completo_nutrition_text_inner_wrap,
.product_completo_section_8
  .product_completo_nutrition_text
  .product_completo_nutrition_text_inner_wrap
  p {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -0.04em;
  color: #8a939f;
}
.product_completo_section_8
  .product_completo_nutrition_text
  .product_completo_nutrition_text_inner_wrap
  p {
  margin-bottom: 0;
}
.product_completo_section_8 .product_completo_nutrition_item_view_more_button {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 120%;
  letter-spacing: -0.025em;
  color: #424242;
  cursor: pointer;
}
.product_completo_section_8 .product_completo_nutrition_item {
  padding-bottom: 22px;
}
@media (max-width: 767px) {
  .product_completo_section_8 .product_completo_nutrition_item {
    padding-bottom: 32px;
  }
}
.product_completo_section_8
  .product_completo_nutrition_item.hide_the_view_more_button
  .product_completo_nutrition_text {
  max-height: 999px;
}
.product_completo_section_8
  .product_completo_nutrition_item.hide_the_view_more_button
  .product_completo_nutrition_item_view_more_button {
  display: none;
}
.product_completo_section_9 {
  padding-top: 57px;
  padding-bottom: 40px;
  background: #fcfeff;
}
@media (max-width: 767px) {
  .product_completo_section_9 {
    padding-bottom: 0;
  }
}
.product_completo_section_9 .product_completo_section_9_inner_wrap {
  display: block;
  margin: auto;
  max-width: 1089px;
}
@media (min-width: 768px) {
  .product_completo_section_9 .product_completo_section_9_inner_wrap {
    padding: 0 32px;
  }
}
@media (max-width: 767px) {
  .product_completo_section_9 .product_completo_section_9_inner_wrap {
    padding: 0 24px;
  }
}
.product_completo_section_9 .product_completo_section_9_title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: calc(26px + 12 * ((100vw - 350px) / 1090));
  line-height: 110%;
  letter-spacing: -0.04em;
  color: #08b556;
  margin-bottom: 44px;
}
@media (min-width: 1440px) {
  .product_completo_section_9 .product_completo_section_9_title {
    font-size: 38px;
  }
}
@media (max-width: 350px) {
  .product_completo_section_9 .product_completo_section_9_title {
    font-size: 26px;
  }
}
@media (min-width: 768px) {
  .product_completo_section_9 .product_completo_ingredients {
    width: 41.015625%;
    padding-right: 30px;
    max-width: 390px;
  }
}
@media (max-width: 767px) {
  .product_completo_section_9 .product_completo_ingredients {
    width: 100%;
  }
}
.product_completo_section_9 .product_completo_ingredients_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}
.product_completo_section_9 .product_completo_ingredients_illustration_wrap {
  width: 58.984375%;
  position: relative;
}
@media (max-width: 767px) {
  .product_completo_section_9 .product_completo_ingredients_illustration_wrap {
    display: none;
  }
}
.product_completo_section_9
  .product_completo_ingredients_illustration_wrap
  .product_completo_ingredients_illustration_inner_wrap {
  width: 100%;
  padding-bottom: 67.88079470198674%;
  position: relative;
}
.product_completo_section_9
  .product_completo_ingredients_illustration_wrap
  .product_completo_ingredients_illustration_inner_wrap
  .product_completo_ingredients_illustration_1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 75.82781456953641%;
  padding-bottom: 56.62251655629139%;
  -webkit-filter: drop-shadow(0 15px 69px rgba(0, 0, 0, 0.07));
  filter: drop-shadow(0 15px 69px rgba(0, 0, 0, 0.07));
  border-radius: 10px;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
}
.product_completo_section_9
  .product_completo_ingredients_illustration_wrap
  .product_completo_ingredients_illustration_inner_wrap
  .product_completo_ingredients_illustration_1:after,
.product_completo_section_9
  .product_completo_ingredients_illustration_wrap
  .product_completo_ingredients_illustration_inner_wrap
  .product_completo_ingredients_illustration_1:before {
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  content: "";
}
.product_completo_section_9
  .product_completo_ingredients_illustration_wrap
  .product_completo_ingredients_illustration_inner_wrap
  .product_completo_ingredients_illustration_1:before {
  -webkit-filter: drop-shadow(0 10.6504px 15.4121px rgba(0, 0, 0, 0.0417275));
  filter: drop-shadow(0 10.6504px 15.4121px rgba(0, 0, 0, 0.0417275));
}
.product_completo_section_9
  .product_completo_ingredients_illustration_wrap
  .product_completo_ingredients_illustration_inner_wrap
  .product_completo_ingredients_illustration_1:after {
  -webkit-filter: drop-shadow(0 9.25299px 4.58857px rgba(0, 0, 0, 0.0282725));
  filter: drop-shadow(0 9.25299px 4.58857px rgba(0, 0, 0, 0.0282725));
}
.product_completo_section_9
  .product_completo_ingredients_illustration_wrap
  .product_completo_ingredients_illustration_inner_wrap
  .product_completo_ingredients_illustration_2 {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-filter: drop-shadow(0 15px 69px rgba(0, 0, 0, 0.08));
  filter: drop-shadow(0 15px 69px rgba(0, 0, 0, 0.08));
  border-radius: 10px;
  width: 41.55629139072848%;
  padding-bottom: 30.96026490066225%;
  background-size: cover;
  background-position: 50%;
}
.product_completo_section_9
  .product_completo_ingredients_illustration_wrap
  .product_completo_ingredients_illustration_inner_wrap
  .product_completo_ingredients_illustration_2:after,
.product_completo_section_9
  .product_completo_ingredients_illustration_wrap
  .product_completo_ingredients_illustration_inner_wrap
  .product_completo_ingredients_illustration_2:before {
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  content: "";
}
.product_completo_section_9
  .product_completo_ingredients_illustration_wrap
  .product_completo_ingredients_illustration_inner_wrap
  .product_completo_ingredients_illustration_2:before {
  -webkit-filter: drop-shadow(0 10.6504px 15.4121px rgba(0, 0, 0, 0.04));
  filter: drop-shadow(0 10.6504px 15.4121px rgba(0, 0, 0, 0.04));
}
.product_completo_section_9
  .product_completo_ingredients_illustration_wrap
  .product_completo_ingredients_illustration_inner_wrap
  .product_completo_ingredients_illustration_2:after {
  -webkit-filter: drop-shadow(0 9.25299px 4.58857px rgba(0, 0, 0, 0.04));
  filter: drop-shadow(0 9.25299px 4.58857px rgba(0, 0, 0, 0.04));
}
.product_completo_section_9 .product_completo_ingredient_title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.025em;
  color: #313131;
  margin-bottom: 6px;
}
@media (min-width: 768px) {
  .product_completo_section_9 .product_completo_ingredient_title {
    letter-spacing: -0.02em;
  }
}
.product_completo_section_9 .product_completo_ingredient_content {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 120%;
  letter-spacing: -0.025em;
  color: #8a939f;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .product_completo_section_9 .product_completo_ingredient_content {
    letter-spacing: -0.02em;
  }
}
.product_completo_section_9 .product_completo_ingredient_content p {
  margin-bottom: 0;
}
.product_completo_section_9 .product_completo_ingredient_link {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 120%;
  letter-spacing: -0.025em;
  color: #424242;
}
.product_completo_section_9 .product_completo_ingredient {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}
.product_completo_section_9 .product_completo_ingredient:before {
  width: 9px;
  height: 9px;
  border: 2px solid #1e8e20;
  background: #fff;
  position: absolute;
  top: 5px;
  left: 0;
  content: "";
  border-radius: 20px;
}
.product_completo_section_9
  .product_completo_ingredient.hide_the_view_more_button
  .product_completo_ingredient_link {
  display: none;
}
.product_completo_section_9
  .product_completo_ingredient.product_completo_single_ingredient
  .product_completo_ingredient_content {
  /*max-height: 108px;*/
  max-height: fit-content;
}
.product_completo_section_9 .product_completo_section_9_info {
  margin-bottom: 39px;
}
@media (max-width: 767px) {
  .product_completo_section_9 .product_completo_section_9_info {
    margin-bottom: 32px;
  }
}
.product_completo_section_9
  .product_completo_section_9_info_a
  .product_completo_section_9_info {
  width: calc(50% - 12px);
}
@media (max-width: 767px) {
  .product_completo_section_9
    .product_completo_section_9_info_a
    .product_completo_section_9_info {
    width: 100%;
  }
}
.product_completo_section_9
  .product_completo_section_9_info_b
  .product_completo_section_9_info {
  width: calc(50% - 12px);
}
@media (max-width: 767px) {
  .product_completo_section_9
    .product_completo_section_9_info_b
    .product_completo_section_9_info {
    width: calc(50% - 8px);
  }
}
.product_completo_section_9 .product_completo_section_9_info_title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #525252;
  margin-bottom: 9px;
}
.product_completo_section_9 .product_completo_section_9_info_content {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 120%;
  letter-spacing: -0.025em;
  color: #8a939f;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .product_completo_section_9 .product_completo_section_9_info_content {
    font-size: 15px;
  }
}
.product_completo_section_9 .product_completo_section_9_info_content p {
  margin-bottom: 11px;
}
.product_completo_section_9
  .product_completo_section_9_info_content
  p:last-child {
  margin-bottom: 0;
}
.product_completo_section_10 {
  padding-top: 80px;
  padding-bottom: 68px;
}
@media (max-width: 767px) {
  .product_completo_section_10 {
    padding-top: 28px;
    padding-bottom: 32px;
  }
}
.product_completo_section_10 .product_completo_section_10_inner_wrap {
  display: block;
  margin: auto;
  max-width: 1089px;
}
@media (min-width: 768px) {
  .product_completo_section_10 .product_completo_section_10_inner_wrap {
    padding: 0 32px;
  }
}
@media (max-width: 767px) {
  .product_completo_section_10 .product_completo_section_10_inner_wrap {
    padding: 0 24px;
  }
}
.product_completo_section_10 .reviews_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .product_completo_section_10 .reviews_title {
    margin-bottom: 16px;
  }

  .app_supervegan .resume .yellow_sublitle {
    display: none;
  }
}
.product_completo_section_10 .reviews_title_big_font {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.04em;
  color: #ffb020;
  font-size: calc(28px + 10 * ((100vw - 350px) / 1090));
  text-transform: capitalize;
  margin-right: 13px;
}
@media (min-width: 1440px) {
  .product_completo_section_10 .reviews_title_big_font {
    font-size: 38px;
  }
}
@media (max-width: 350px) {
  .product_completo_section_10 .reviews_title_big_font {
    font-size: 28px;
  }
}
.product_completo_section_10 .reviews_title_small_font {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #525252;
  opacity: 0.32;
  font-size: calc(22px + 14 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .product_completo_section_10 .reviews_title_small_font {
    font-size: 36px;
  }
}
@media (max-width: 350px) {
  .product_completo_section_10 .reviews_title_small_font {
    font-size: 22px;
  }
}
@media (min-width: 768px) {
  .product_completo_section_10 .comments_section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.product_completo_section_10
  .comments_section
  .product_completo_comment_statistic_wrap {
  width: 305px;
  padding: 42px 32px 34px;
  border-radius: 4px;
  z-index: 10;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  background: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(rgba(227, 233, 237, 0.15)),
      to(rgba(227, 233, 237, 0.15))
    ),
    #fff;
  background: linear-gradient(
      0deg,
      rgba(227, 233, 237, 0.15),
      rgba(227, 233, 237, 0.15)
    ),
    #fff;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
@media (max-width: 767px) {
  .product_completo_section_10
    .comments_section
    .product_completo_comment_statistic_wrap {
    padding: 23px;
    width: 100%;
    border: 1px solid #c6e39d;
    margin-bottom: 18px;
  }
}
.product_completo_section_10
  .comments_section
  .product_completo_comment_statistic_rating_stars_wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.product_completo_section_10 .average_rating_int {
  margin-bottom: 0;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 100%;
  color: #fff;
  text-shadow: 0 1px 3px rgba(82, 82, 82, 0.2);
  padding: 10px 10px 8px;
  background: #ffb020;
  border-radius: 3px;
  margin-right: 15px;
}
.product_completo_section_10 .number_of_comments {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: -0.02em;
  color: #9da9b9;
  margin-top: 5px;
}
.product_completo_section_10 .average_star_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 8px;
}
.product_completo_section_10 .average_star_number {
  color: #9da9b9;
  width: 20px;
}
.product_completo_section_10 .average_star_number,
.product_completo_section_10 .average_star_percentage {
  margin-bottom: 0;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: -0.02em;
}
.product_completo_section_10 .average_star_percentage {
  color: #525252;
  width: 40px;
  padding-left: 10px;
}
.product_completo_section_10 .progress_bar {
  width: calc(100% - 60px);
  height: 4px;
  background: #e8ebef;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
}
.product_completo_section_10 .progress_bar div {
  height: 100%;
  position: relative;
  background: #ffb020;
}
.product_completo_section_10 .product_completo_comments_outter_wrap {
  position: relative;
}
@media (max-width: 767px) {
  .product_completo_section_10 .product_completo_comments_outter_wrap {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .product_completo_section_10 .product_completo_comments_outter_wrap {
    width: calc(100% - 305px);
    padding-left: 38px;
    z-index: 5;
  }
  .product_completo_section_10 .product_completo_comments_outter_wrap:before {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    width: 99999px;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    z-index: 7;
  }
}
.product_completo_section_10 .product_completo_comments_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 768px) {
  .product_completo_section_10 .product_completo_comments_head {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
.product_completo_section_10
  .product_completo_comments_head_number_of_comments {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.05em;
  color: #9da9b9;
}
.product_completo_section_10 .product_completo_comments_carousel {
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .product_completo_section_10
    .product_completo_comments_carousel.need_desktop_stage_padding
    .owl-stage {
    left: -47px;
  }
}
@media (max-width: 767px) {
  .product_completo_section_10
    .product_completo_comments_carousel.need_mobile_stage_padding
    .owl-stage {
    left: -29px;
  }
}
.product_completo_section_10 .product_completo_comments_carousel .owl-stage {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}
.product_completo_section_10 .product_completo_comments_carousel .owl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.product_completo_section_10 .product_completo_comments_carousel .item {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}
.product_completo_section_10
  .product_completo_comments_carousel
  .item
  .rating_item_excerpt,
.product_completo_section_10
  .product_completo_comments_carousel
  .item
  .rating_item_full {
  padding: 24px 18px 14px;
  background: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(rgba(150, 201, 80, 0.02)),
      to(rgba(150, 201, 80, 0.02))
    ),
    #fff;
  background: linear-gradient(
      0deg,
      rgba(150, 201, 80, 0.02),
      rgba(150, 201, 80, 0.02)
    ),
    #fff;
  border: 1px solid #c6e39d;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.product_completo_section_10
  .product_completo_comments_carousel
  .item
  .rating_item_full {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
  min-height: 100%;
}
@media (max-width: 767px) {
  .product_completo_section_10
    .product_completo_comments_carousel
    .item
    .rating_item_full {
    display: none !important;
  }
}
.product_completo_section_10
  .product_completo_comments_carousel
  .item:hover
  .rating_item_full {
  opacity: 1;
  visibility: visible;
}
.product_completo_section_10 .product_completo_comments_carousel .owl-nav {
  display: none;
}
.product_completo_section_10 .product_completo_comment_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 6px;
}
.product_completo_section_10 .product_completo_comment_head .rating-stars i {
  color: #ffb020;
}
.product_completo_section_10
  .product_completo_comment_head
  .product_completo_comment_date {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #8a939f;
}
.product_completo_section_10 .supervegan-comment-text {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.03em;
  color: #000;
  margin-bottom: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-bottom: 10px;
}
.product_completo_section_10 .supervegan-comment-author {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #525252;
  margin-bottom: 3px;
  text-transform: capitalize;
}
.product_completo_section_10 .verified_order {
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.product_completo_section_10 .verified_order i {
  font-size: 15px;
  color: #8a939f;
  margin-right: 7px;
}
.product_completo_section_10 .verified_order span {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 24px;
  color: #8a939f;
}
.product_completo_section_10 .product_completo_comments_footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .product_completo_section_10 .product_completo_comments_footer {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.product_completo_section_10 a.open_review_popup {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #000;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
}
@media (max-width: 767px) {
  .product_completo_section_10 a.open_review_popup {
    margin-bottom: 16px;
    display: block;
  }
}
.product_completo_section_10 a.open_review_popup:hover {
  color: #3ca047;
}
.product_completo_section_10 .rating_carousel_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product_completo_section_10 .rating_carousel_nav .rating_carousel_next,
.product_completo_section_10 .rating_carousel_nav .rating_carousel_prev {
  border-radius: 30px;
  position: relative;
}
@media (min-width: 768px) {
  .product_completo_section_10 .rating_carousel_nav .rating_carousel_next,
  .product_completo_section_10 .rating_carousel_nav .rating_carousel_prev {
    width: 42px;
    height: 42px;
    border: 2px solid #e3e9ed;
  }
}
@media (max-width: 767px) {
  .product_completo_section_10 .rating_carousel_nav .rating_carousel_next,
  .product_completo_section_10 .rating_carousel_nav .rating_carousel_prev {
    width: 20px;
    height: 20px;
    background: #e3e9ed;
  }
}
.product_completo_section_10 .rating_carousel_nav .rating_carousel_next i,
.product_completo_section_10 .rating_carousel_nav .rating_carousel_prev i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .product_completo_section_10 .rating_carousel_nav .rating_carousel_next i,
  .product_completo_section_10 .rating_carousel_nav .rating_carousel_prev i {
    color: #525252;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .product_completo_section_10 .rating_carousel_nav .rating_carousel_next i,
  .product_completo_section_10 .rating_carousel_nav .rating_carousel_prev i {
    color: 3000;
    font-size: 6px;
    color: #000;
  }
}
.product_completo_section_10
  .rating_carousel_nav
  .rating_carousel_next.disabled,
.product_completo_section_10
  .rating_carousel_nav
  .rating_carousel_prev.disabled {
  opacity: 0.5;
}
.product_completo_section_10 .rating_carousel_nav .rating_carousel_prev {
  margin-right: 10px;
}
@media (max-width: 767px) {
  .product_completo_section_10 .rating_carousel_nav .rating_carousel_prev {
    margin-right: 24px;
  }
}
.product_completo_wrap .rating_stars {
  position: relative;
}
.product_completo_wrap .rating_stars i:last-child {
  margin-right: 0;
}
.product_completo_wrap .rating_stars .rating_base i {
  color: #969696;
}
.product_completo_wrap .rating_stars .rating_filled {
  position: absolute;
  top: 0;
  overflow: hidden;
}
.product_completo_wrap .rating_stars .rating_filled i {
  color: #ffb020;
}
.product_completo_wrap .rating_stars.rating_stars_size_1 {
  width: 94px;
  height: 19px;
}
.product_completo_wrap .rating_stars.rating_stars_size_1 i {
  margin-right: 1.9px;
  font-size: 13px;
}
.product_completo_wrap
  .rating_stars.rating_stars_size_1
  .rating_filled
  .ratting_filled_inner_wrap {
  width: 94px;
}
.product_completo_wrap .rating_stars.rating_stars_size_2 {
  width: 120px;
  height: 20px;
}
.product_completo_wrap .rating_stars.rating_stars_size_2 i {
  margin-right: 1.9px;
  font-size: 18px;
}
.product_completo_wrap
  .rating_stars.rating_stars_size_2
  .rating_filled
  .ratting_filled_inner_wrap {
  width: 120px;
}
.product_completo_section_11 {
  background: #f5f5f5;
  padding-top: 80px;
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .product_completo_section_11 {
    padding-top: 35px;
    padding-bottom: 27px;
    background: #fbfbfb;
  }
}
.product_completo_section_11 .product_completo_section_11_inner_wrap {
  margin: auto;
  max-width: 1089px;
}
@media (min-width: 768px) {
  .product_completo_section_11 .product_completo_section_11_inner_wrap {
    padding: 0 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 767px) {
  .product_completo_section_11 .product_completo_section_11_inner_wrap {
    padding: 0 24px;
  }
}
@media (min-width: 768px) {
  .product_completo_section_11 .product_completo_section_11_title_wrap {
    width: 34.765625%;
    padding-right: 32px;
  }
}
@media (max-width: 767px) {
  .product_completo_section_11 .product_completo_section_11_title_wrap {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .product_completo_section_11 .product_completo_section_11_content {
    width: 65.234375%;
  }
}
@media (max-width: 767px) {
  .product_completo_section_11 .product_completo_section_11_content {
    width: 100%;
  }
}
.product_completo_section_11 .faqs_title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.04em;
  color: #dd5631;
  font-size: calc(28px + 10 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .product_completo_section_11 .faqs_title {
    font-size: 38px;
  }
}
@media (max-width: 350px) {
  .product_completo_section_11 .faqs_title {
    font-size: 28px;
  }
}
.product_completo_section_11 .faqs_claim {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #dd5631;
  font-size: calc(20px + 4 * ((100vw - 350px) / 1090));
  margin-bottom: 30px;
}
@media (min-width: 1440px) {
  .product_completo_section_11 .faqs_claim {
    font-size: 24px;
  }
}
@media (max-width: 350px) {
  .product_completo_section_11 .faqs_claim {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .product_completo_section_11 .faqs_claim {
    padding-left: 28px;
  }
}
.product_completo_section_11 .faqs_list {
  padding-left: 0;
}
.product_completo_section_11 .faqs_list li {
  list-style: none;
  margin-bottom: 26px;
  position: relative;
}
@media (max-width: 767px) {
  .product_completo_section_11 .faqs_list li {
    margin-bottom: 18px;
  }
}
.product_completo_section_11 .faq_question {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: #121212;
  padding-left: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 3px;
  padding-bottom: 3px;
}
@media (max-width: 767px) {
  .product_completo_section_11 .faq_question {
    font-size: 14px;
  }
}
.product_completo_section_11 .faq_question:before {
  width: 14px;
  height: 2px;
  position: absolute;
  background: #000;
  top: 11px;
  left: 0;
  content: "";
}
.product_completo_section_11 .faq_question:after {
  width: 2px;
  height: 14px;
  position: absolute;
  background: #000;
  top: 5px;
  left: 6px;
  content: "";
  display: none;
}
.product_completo_section_11 .faq_question.collapsed:after {
  display: block;
}
.product_completo_section_11 .faq_answer {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: 0;
}
.product_completo_section_11 .faq_answer.show {
  padding-top: 7px;
  opacity: 1;
}
@media (min-width: 768px) {
  .product_completo_section_11 .faq_answer {
    padding-left: 28px;
  }
}
.product_completo_section_11 .faq_answer p {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 145%;
  letter-spacing: -0.02em;
  color: #756c60;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .product_completo_section_11 .faq_answer p {
    color: #756c60;
    font-size: 13px;
  }
}
.product_completo_section_11 .faq_answer p a {
  color: #756c60;
}
.product_completo_section_11 .faq_answer p a:hover {
  color: #3ca047;
}
.product_completo_section_11 .faq_answer p:last-child {
  margin-bottom: 0;
}
.product_completo_section_12 {
  padding: 88px 0;
  background: #fff;
}
@media (max-width: 767px) {
  .product_completo_section_12 {
    padding: 32px 0;
  }
}
.product_completo_section_12 .product_completo_section_12_head {
  margin: auto;
  max-width: 1170px;
  display: block;
}
@media (min-width: 768px) {
  .product_completo_section_12 .product_completo_section_12_head {
    padding: 0 32px;
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .product_completo_section_12 .product_completo_section_12_head {
    padding: 0 24px;
    margin-bottom: 25px;
  }
}
.product_completo_section_12 .product_completo_section_12_title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.04em;
  color: #08b556;
  margin-bottom: 5px;
  font-size: calc(26px + 12 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .product_completo_section_12 .product_completo_section_12_title {
    font-size: 38px;
  }
}
@media (max-width: 350px) {
  .product_completo_section_12 .product_completo_section_12_title {
    font-size: 26px;
  }
}
.product_completo_section_12 .product_completo_section_12_text {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #525252;
  margin-bottom: 0;
  font-size: calc(16px + 2 * ((100vw - 350px) / 1090));
}
@media (min-width: 1440px) {
  .product_completo_section_12 .product_completo_section_12_text {
    font-size: 18px;
  }
}
@media (max-width: 350px) {
  .product_completo_section_12 .product_completo_section_12_text {
    font-size: 16px;
  }
}
.product_completo_section_12 .product_completo_section_12_content {
  margin: auto;
  max-width: 1170px;
  display: block;
}
@media (min-width: 768px) {
  .product_completo_section_12 .product_completo_section_12_content {
    padding: 0 32px;
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .product_completo_section_12 .product_completo_section_12_content {
    padding: 0 0 0 24px;
    margin-bottom: 30px;
  }
}
.product_completo_section_12 .product_completo_articles_carousel .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  min-width: 100%;
}
@media (max-width: 767px) {
  .product_completo_section_12 .product_completo_articles_carousel .owl-stage {
    left: -33px;
  }
}
.product_completo_section_12 .product_completo_articles_carousel .item {
  position: relative;
}
.product_completo_section_12 .product_completo_articles_carousel .owl-nav {
  display: none;
}
@media (min-width: 768px) {
  .product_completo_section_12 .product_completo_articles_carousel .owl-item {
    opacity: 0;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
  }
  .product_completo_section_12
    .product_completo_articles_carousel
    .owl-item.active {
    opacity: 1;
  }
}
.product_completo_section_12 .product_completo_article_picture {
  width: 100%;
  /*padding-bottom: 69.97084548104957%;*/
  border-radius: 4px;
  -webkit-box-shadow: 0 16px 24px rgba(0, 0, 0, 0.14);
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.14);
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  position: relative;
  margin-bottom: 23px;
  display:block;
  height:240px;
  line-height:240px;
  overflow:hidden;
}

.product_completo_section_12 .product_completo_article_picture img {
  min-height: 240px;
  position: relative;
  margin: -50% auto;
  width: 100%;
  height:auto;
  vertical-align:middle;
}
@media (max-width: 767px) {
  .product_completo_section_12 .product_completo_article_picture {
    margin-bottom: 11px;
  }
}
.product_completo_section_12 .product_completo_article_tag {
  padding: 2px 5px;
  background: #fff;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04),
    0 2px 6px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.04),
    0 0 1px rgba(0, 0, 0, 0.04);
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  text-transform: uppercase;
  color: #000;
  position: absolute;
  top: 8px;
  right: 8px;
}
.product_completo_section_12 .product_completo_article_title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: #000;
  font-size: calc(15px + 5 * ((100vw - 350px) / 1090));
  margin-bottom: 7px;
}
@media (min-width: 1440px) {
  .product_completo_section_12 .product_completo_article_title {
    font-size: 20px;
  }
}
@media (max-width: 350px) {
  .product_completo_section_12 .product_completo_article_title {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .product_completo_section_12 .product_completo_article_title {
    line-height: 1.6;
    margin-bottom: 3px;
  }
}
.product_completo_section_12 .product_completo_article_text {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #525252;
  margin-bottom: 0;
  color: rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
@media (max-width: 767px) {
  .product_completo_section_12 .product_completo_article_text {
    font-size: 11px;
    line-height: 19px;
  }
}
.product_completo_section_12 .product_completo_section_12_view_more {
  width: calc(100% - 48px);
  margin: auto;
  display: block;
  max-width: 252px;
  height: 44px;
  line-height: 42px;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: #525252;
  border: 1px solid #9da9b9;
  border-radius: 50px;
  text-align: center;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.product_completo_section_12 .product_completo_section_12_view_more:hover {
  background: #000;
  border: 1px solid #000;
  color: #fff;
}
@media (max-width: 767px) {
  .product_completo_section_12 .product_completo_section_12_view_more {
    letter-spacing: -0.03em;
  }
}
.product_completo_fixed_bar_desktop {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 2010;
  background: hsla(0, 0%, 100%, 0.8);
  -webkit-box-shadow: -0.0932678px -2.99855px 80px rgba(0, 0, 0, 0.1),
    -0.0472168px -1.51802px 34.875px rgba(0, 0, 0, 0.0675),
    -0.0186536px -0.59971px 13px rgba(0, 0, 0, 0.05),
    -0.00408047px -0.131187px 4.625px rgba(0, 0, 0, 0.0325);
  box-shadow: -0.0932678px -2.99855px 80px rgba(0, 0, 0, 0.1),
    -0.0472168px -1.51802px 34.875px rgba(0, 0, 0, 0.0675),
    -0.0186536px -0.59971px 13px rgba(0, 0, 0, 0.05),
    -0.00408047px -0.131187px 4.625px rgba(0, 0, 0, 0.0325);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  padding: 8px 24px;
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  opacity: 0;
  -webkit-transform: translate3d(0, 110%, 0);
  transform: translate3d(0, 110%, 0);
}
@media (max-width: 767px) {
  .product_completo_fixed_bar_desktop {
    display: none;
  }
}
.product_completo_fixed_bar_desktop.active {
  opacity: 1;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.product_completo_fixed_bar_desktop .product_completo_miniature_picture {
  width: 52px;
  height: 52px;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}
.product_completo_fixed_bar_desktop .product_completo_miniature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 340px;
}
.product_completo_fixed_bar_desktop .product_completo_miniature_title {
  margin-bottom: 0;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #525252;
}
.product_completo_fixed_bar_desktop .product_completo_miniature_weight_option {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.03em;
  color: #9da9b9;
  margin-bottom: 0;
  display: none;
}
.product_completo_fixed_bar_desktop
  .product_completo_miniature_weight_option.active {
  display: block;
}
.product_completo_fixed_bar_desktop .price_wrap {
  width: 340px;
}
.product_completo_fixed_bar_desktop .product_completo_nav {
  text-align: center;
}
.product_completo_fixed_bar_desktop .product_completo_nav a {
  display: inline-block;
  padding: 3px 7px;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #525252;
  cursor: pointer;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.product_completo_fixed_bar_desktop .product_completo_nav a.active,
.product_completo_fixed_bar_desktop .product_completo_nav a:hover {
  color: #1e8e20;
}
.product_completo_fixed_bar_desktop .price_item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  display: none;
}
.product_completo_fixed_bar_desktop .price_item.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product_completo_fixed_bar_desktop .price_item .the_price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-right: 30px;
}
.product_completo_fixed_bar_desktop
  .price_item
  .the_price
  .product_completo_oldprice {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: -0.03em;
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
  color: #9da9b9;
}
.product_completo_fixed_bar_desktop
  .price_item
  .the_price
  .produto_completo_price {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #1e8e20;
  white-space: nowrap;
}
.product_completo_fixed_bar_desktop .price_item .add_to_cart_fixed_bar {
  width: 230px;
  height: 46px;
  line-height: 46px;
  white-space: nowrap;
  text-align: center;
  -webkit-box-shadow: 0 16px 24px rgba(150, 201, 80, 0.2),
    0 2px 6px rgba(150, 201, 80, 0.12), 0 0 1px rgba(0, 0, 0, 0.04);
  box-shadow: 0 16px 24px rgba(150, 201, 80, 0.2),
    0 2px 6px rgba(150, 201, 80, 0.12), 0 0 1px rgba(0, 0, 0, 0.04);
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 1px 3px rgba(82, 82, 82, 0.2);
  background: #96c950;
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.product_completo_fixed_bar_desktop .price_item .add_to_cart_fixed_bar:hover {
  background: #894b9b;
  border: 1px solid #894b9b;
}
.product_completo_fixed_bar_desktop .price_item .add_to_cart_fixed_bar.no_stock,
.product_completo_fixed_bar_desktop
  .price_item
  .add_to_cart_fixed_bar.no_stock:hover {
  background: #dd5631;
  border: 1px solid rgba(0, 0, 0, 0.05);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 16px 24px rgba(221, 86, 49, 0.2),
    0 2px 6px rgba(221, 86, 49, 0.12), 0 0 1px rgba(0, 0, 0, 0.04);
  box-shadow: 0 16px 24px rgba(221, 86, 49, 0.2),
    0 2px 6px rgba(221, 86, 49, 0.12), 0 0 1px rgba(0, 0, 0, 0.04);
}
.product_completo_bottom_bar_mobile {
  display: none;
  position: fixed;
  bottom: 0;
  z-index: 2010;
  left: 0;
  width: 100%;
  padding: 16px;
  background: #1e8e20;
  -webkit-box-shadow: 0 20.0333px 26.7111px rgba(30, 142, 32, 0.14),
    0 13.3556px 20.0333px rgba(30, 142, 32, 0.1),
    0 1.66944px 5.00833px rgba(30, 142, 32, 0.08),
    0 0 0.834722px rgba(30, 142, 32, 0.04);
  box-shadow: 0 20.0333px 26.7111px rgba(30, 142, 32, 0.14),
    0 13.3556px 20.0333px rgba(30, 142, 32, 0.1),
    0 1.66944px 5.00833px rgba(30, 142, 32, 0.08),
    0 0 0.834722px rgba(30, 142, 32, 0.04);
  border-radius: 8px 8px 0 0;
}
@media (min-width: 768px) {
  .product_completo_bottom_bar_mobile {
    display: none;
  }
}
@media (max-width: 767px) {
  .product_completo_bottom_bar_mobile.active {
    display: block;
  }
}
.product_completo_bottom_bar_mobile.no_stock {
  background: #dd5631;
  -webkit-box-shadow: 0 20.0333px 26.7111px rgba(221, 86, 49, 0.14),
    0 13.3556px 20.0333px rgba(221, 86, 49, 0.1),
    0 1.66944px 5.00833px rgba(221, 86, 49, 0.08),
    0 0 0.834722px rgba(221, 86, 49, 0.04);
  box-shadow: 0 20.0333px 26.7111px rgba(221, 86, 49, 0.14),
    0 13.3556px 20.0333px rgba(221, 86, 49, 0.1),
    0 1.66944px 5.00833px rgba(221, 86, 49, 0.08),
    0 0 0.834722px rgba(221, 86, 49, 0.04);
}
.product_completo_bottom_bar_mobile .price_item {
  width: 100%;
  height: 35px;
  position: relative;
}
.product_completo_bottom_bar_mobile .price_item .the_price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.product_completo_bottom_bar_mobile .price_item .product_completo_oldprice {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  line-height: 14px;
  letter-spacing: -0.02em;
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
  color: #fff;
  opacity: 0.8;
  text-shadow: 0 1px 3px hsla(0, 0%, 68%, 0.2);
}
.product_completo_bottom_bar_mobile .price_item .produto_completo_price {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: -0.02em;
  color: #fff;
  opacity: 0.8;
  text-shadow: 0 1px 3px hsla(0, 0%, 68%, 0.2);
}
.product_completo_bottom_bar_mobile .price_item .add_to_cart_fixed_bar_mobile {
  padding: 0 10px;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.02em;
  text-align: center;
  color: #fff;
  text-shadow: 0 1px 3px hsla(0, 0%, 68%, 0.2);
  width: calc(100% - 120px);
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
}
.product_completo_bottom_bar_mobile
  .price_item
  .product_completo_miniature_weight_option {
  text-align: right;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  opacity: 0.8;
  text-shadow: 0 1px 3px hsla(0, 0%, 68%, 0.2);
  margin-bottom: 0;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.product_completo_preparacao_popup_wrap {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
}
.product_completo_preparacao_popup_wrap.active {
  visibility: visible;
  z-index: 2020;
  opacity: 1;
}
@media (min-width: 768px) {
  .product_completo_preparacao_popup_wrap {
    display: none !important;
  }
}
.product_completo_preparacao_popup_wrap
  .product_completo_preparacao_popup_dark_overlay {
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
}
.product_completo_preparacao_popup_wrap
  .product_completo_preparacao_popup_inner_wrap {
  width: 100%;
  height: calc(100vh - 56px);
  max-height: 520px;
  position: absolute;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e3e9ed;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 8px 8px 0 0;
}
.product_completo_preparacao_popup_wrap
  .product_completo_preparacao_popup_inner_wrap
  .product_completo_preparacao_popup_carousel_wrap {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.product_completo_preparacao_popup_wrap
  .product_completo_preparacao_popup_title {
  margin-bottom: 0;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #525252;
  padding: 24px 44px 16px;
}
@media (max-width: 767px) {
  .product_completo_preparacao_popup_wrap
    .product_completo_preparacao_popup_title {
    letter-spacing: -0.04em;
  }
}
.product_completo_preparacao_popup_wrap .close_full_screen_preparacao_popup {
  color: #8a939f;
  position: absolute;
  padding: 5px;
  font-size: 12px;
  top: 23px;
  right: 23px;
}
.product_completo_preparacao_popup_wrap
  .product_completo_preparacao_popup_carousel_wrap {
  height: calc(100% - 114px);
  overflow-y: scroll;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.product_completo_preparacao_popup_wrap
  .product_completo_preparacao_popup_carousel_wrap::-webkit-scrollbar {
  display: none;
}
.product_completo_preparacao_popup_wrap
  .close_full_screen_preparacao_popup_button {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 56px;
  height: 56px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #fff !important;
  text-shadow: 0 1px 3px rgba(82, 82, 82, 0.2);
  background: #96c950;
  border: 1px solid rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  border-radius: 16px 16px 0 0;
}
.product_completo_preparacao_popup_wrap
  .product_completo_preparacao_popup_carousel
  .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product_completo_preparacao_popup_wrap
  .product_completo_preparacao_popup_carousel
  .owl-item
  .item {
  padding-top: 24px;
  padding-bottom: 24px;
}
.product_completo_preparacao_popup_wrap
  .product_completo_preparacao_popup_carousel
  .owl-nav {
  display: none !important;
}
.product_completo_preparacao_popup_wrap
  .product_completo_preparacao_popup_carousel
  .product_completo_preparacao_popup_item_title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 110%;
  text-align: center;
  letter-spacing: -0.04em;
  color: #2e2f2f;
  padding: 0 30px;
}
.product_completo_preparacao_popup_wrap
  .product_completo_preparacao_popup_carousel
  .product_completo_preparacao_popup_text {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: #666;
  padding: 0 16px;
}
.product_completo_preparacao_popup_wrap
  .product_completo_preparacao_popup_carousel
  .product_completo_preparacao_popup_image_outter_wrap {
  width: calc(100% - 60px);
  max-width: 191px;
  margin: 0 auto 22px;
}
.product_completo_preparacao_popup_wrap
  .product_completo_preparacao_popup_carousel
  .product_completo_preparacao_popup_image_inner_wrap {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
}
.product_completo_preparacao_popup_wrap
  .product_completo_preparacao_popup_carousel
  .product_completo_preparacao_popup_image_inner_wrap
  .product_completo_preparacao_popup_image_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 1000px;
  overflow: hidden;
  z-index: 2;
  background-color: #e1e1e1;
}
.product_completo_preparacao_popup_wrap
  .product_completo_preparacao_popup_carousel
  .product_completo_preparacao_popup_image_inner_wrap
  .product_completo_preparacao_popup_image_wrap
  .product_completo_preparacao_popup_image {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: calc(100% + 2px);
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.product_completo_preparacao_popup_wrap
  .product_completo_preparacao_popup_carousel
  .product_completo_preparacao_popup_image_inner_wrap
  .product_completo_preparacao_popup_image_shadow_wrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 95%;
  height: 95%;
  z-index: 1;
}
.product_completo_preparacao_popup_wrap
  .product_completo_preparacao_popup_carousel
  .product_completo_preparacao_popup_image_inner_wrap
  .product_completo_preparacao_popup_image_shadow_wrap
  .product_completo_preparacao_popup_image_shadow {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 1000px;
  opacity: 0.7;
  -webkit-filter: blur(30px);
  filter: blur(30px);
}
@media (max-width: 767px) {
  .product_completo_preparacao_popup_wrap
    .product_completo_preparacao_popup_carousel
    .product_completo_preparacao_popup_image_inner_wrap
    .product_completo_preparacao_popup_image_shadow_wrap
    .product_completo_preparacao_popup_image_shadow {
    -webkit-filter: blur(24.6281px);
    filter: blur(24.6281px);
  }
}
.product_completo_ratings_popup_wrap {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
}
.product_completo_ratings_popup_wrap.active {
  visibility: visible;
  z-index: 2020;
  opacity: 1;
}
@media (min-width: 768px) {
  .product_completo_ratings_popup_wrap {
    display: none !important;
  }
}
.product_completo_ratings_popup_wrap
  .product_completo_ratings_popup_dark_overlay {
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
}
.product_completo_ratings_popup_wrap
  .product_completo_ratings_popup_inner_wrap {
  width: 100%;
  max-height: calc(100vh - 56px);
  position: absolute;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e3e9ed;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 8px 8px 0 0;
  padding-top: 52px;
}
.product_completo_ratings_popup_wrap .close_full_screen_ratings_popup {
  color: #8a939f;
  position: absolute;
  padding: 5px;
  font-size: 12px;
  top: 16px;
  right: 15px;
}
.product_completo_ratings_popup_wrap
  .product_completo_ratings_popup_carousel_wrap {
  max-height: 400px;
  overflow-y: scroll;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.product_completo_ratings_popup_wrap
  .product_completo_ratings_popup_carousel_wrap::-webkit-scrollbar {
  display: none;
}
.product_completo_ratings_popup_wrap .product_completo_ratings_popup_carousel {
  width: 100%;
}
.product_completo_ratings_popup_wrap
  .product_completo_ratings_popup_carousel
  .owl-stage {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product_completo_ratings_popup_wrap
  .product_completo_ratings_popup_carousel
  .owl-item {
  width: 100%;
  padding: 0 16px 32px;
}
.product_completo_ratings_popup_wrap
  .product_completo_ratings_popup_carousel
  .item {
  width: 100%;
  background: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(rgba(150, 201, 80, 0.02)),
      to(rgba(150, 201, 80, 0.02))
    ),
    #fff;
  background: linear-gradient(
      0deg,
      rgba(150, 201, 80, 0.02),
      rgba(150, 201, 80, 0.02)
    ),
    #fff;
  border: 1px solid #c6e39d;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 26px 16px 20px;
}
.product_completo_ratings_popup_wrap
  .product_completo_ratings_popup_carousel
  .owl-nav {
  display: none !important;
}
.product_completo_ratings_popup_wrap .product_completo_comment_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 6px;
}
.product_completo_ratings_popup_wrap
  .product_completo_comment_head
  .rating-stars
  i {
  color: #ffb020;
}
.product_completo_ratings_popup_wrap
  .product_completo_comment_head
  .product_completo_comment_date {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #8a939f;
}
.product_completo_ratings_popup_wrap .supervegan-comment-text {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.03em;
  color: #000;
  margin-bottom: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-bottom: 10px;
}
.product_completo_ratings_popup_wrap .supervegan-comment-author {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #525252;
  margin-bottom: 3px;
  text-transform: capitalize;
}
.product_completo_ratings_popup_wrap .verified_order {
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.product_completo_ratings_popup_wrap .verified_order i {
  font-size: 15px;
  color: #8a939f;
  margin-right: 7px;
}
.product_completo_ratings_popup_wrap .verified_order span {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 24px;
  color: #8a939f;
}
.product_completo_ratings_popup_wrap
  .full_screen_ratings_popup_navigation_wrap {
  background: #96c950;
  border: 1px solid rgba(0, 0, 0, 0.05);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  border-radius: 16px 16px 0 0;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.product_completo_ratings_popup_wrap
  .full_screen_ratings_popup_navigation_wrap
  .full_screen_ratings_popup_navigation_next,
.product_completo_ratings_popup_wrap
  .full_screen_ratings_popup_navigation_wrap
  .full_screen_ratings_popup_navigation_prev {
  line-height: 56px;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 1px 3px rgba(82, 82, 82, 0.2);
  padding: 0 24px;
}
.product_completo_ratings_popup_wrap
  .full_screen_ratings_popup_navigation_wrap
  .full_screen_ratings_popup_navigation_next:hover,
.product_completo_ratings_popup_wrap
  .full_screen_ratings_popup_navigation_wrap
  .full_screen_ratings_popup_navigation_prev:hover {
  color: #fff;
}
.product_completo_comment_form .product_completo_comment_form_inner_wrap {
  background: #fff;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: calc(100% - 40px);
  max-width: 800px;
}
.product_completo_youtube_wrap {
  width: 100%;
  height: 0;
  padding-bottom: 140%;
  position: relative;
  border-radius: 5.1017px;
  -webkit-box-shadow: 0 11.9893px 55.151px rgba(0, 0, 0, 0.07);
  box-shadow: 0 11.9893px 55.151px rgba(0, 0, 0, 0.07);
}
.product_completo_youtube_wrap:before {
  content: "";
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 8.51277px 12.3187px rgba(0, 0, 0, 0.0417275);
  box-shadow: 0 8.51277px 12.3187px rgba(0, 0, 0, 0.0417275);
  position: absolute;
  top: 0;
  left: 0;
}
.product_completo_youtube_wrap:after {
  content: "";
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 7.39582px 3.6676px rgba(0, 0, 0, 0.0282725);
  box-shadow: 0 7.39582px 3.6676px rgba(0, 0, 0, 0.0282725);
  position: absolute;
  top: 0;
  left: 0;
}
.product_completo_youtube_wrap .product_completo_youtube_play_button {
  width: 67px;
  height: 67px;
  background: #1e8e20;
  border: 4px solid #fff;
  -webkit-filter: drop-shadow(0 18.2776px 28.6707px rgba(0, 0, 0, 0.26)),
    drop-shadow(0 6.67161px 10.4653px rgba(0, 0, 0, 0.179395)),
    drop-shadow(0 3.23894px 5.08069px rgba(0, 0, 0, 0.144636)),
    drop-shadow(0 1.58779px 2.49065px rgba(0, 0, 0, 0.115364)),
    drop-shadow(0 0.627815px 0.984807px rgba(0, 0, 0, 0.0806048));
  filter: drop-shadow(0 18.2776px 28.6707px rgba(0, 0, 0, 0.26)),
    drop-shadow(0 6.67161px 10.4653px rgba(0, 0, 0, 0.179395)),
    drop-shadow(0 3.23894px 5.08069px rgba(0, 0, 0, 0.144636)),
    drop-shadow(0 1.58779px 2.49065px rgba(0, 0, 0, 0.115364)),
    drop-shadow(0 0.627815px 0.984807px rgba(0, 0, 0, 0.0806048));
  border-radius: 120px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 20;
}
.product_completo_youtube_wrap .product_completo_youtube_play_button i {
  position: absolute;
  top: 50%;
  left: 21px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 29px;
  color: #fff;
}
.yt-loading-overlay {
    position: absolute; inset: 0;
    display:flex; align-items:center; justify-content:center;
    background: rgba(0,0,0,0.35); z-index: 20;
}
.yt-spinner {
    width:26px; height:26px; border-radius:50%;
    border:3px solid rgba(255,255,255,0.35); border-top-color:#fff;
    animation: yt-spin 1s linear infinite;
}
@keyframes yt-spin { to { transform: rotate(360deg); } }

.product_completo_youtube_wrap .product_completo_youtube_title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 20.7815px;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 0 41.5631px rgba(0, 0, 0, 0.84),
    0 0 13.2386px rgba(0, 0, 0, 0.510222), 0 0 3.38662px rgba(0, 0, 0, 0.329778),
    0 1.59858px 3.99645px rgba(0, 0, 0, 0.2),
    0 1.59858px 3.99645px rgba(0, 0, 0, 0.2);
  bottom: 0;
  left: 0;
  z-index: 10;
  position: absolute;
  margin-bottom: 0;
  line-height: 1;
  width: 100%;
  padding: 0 25px 20px;
}
.product_completo_youtube_wrap .product_completo_youtube_thumbnail {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  border-radius: 5.1017px;
  overflow: hidden;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.product_completo_youtube_wrap
  .product_completo_youtube_thumbnail
  div.product_completo_youtube_thumbnail_image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-size: cover;
  background-position: 50%;
}
.product_completo_youtube_wrap .product_completo_youtube_video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  border-radius: 5.1017px;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  visibility: visible;
}
.product_completo_youtube_wrap .product_completo_youtube_video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}
.product_completo_youtube_wrap
  div.product_completo_youtube_thumbnail_image_overlay_shadow {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(transparent),
      color-stop(58.85%, rgba(0, 0, 0, 0.045625)),
      to(rgba(0, 0, 0, 0.73))
    ),
    rgba(0, 0, 0, 0.05);
  background: linear-gradient(
      180deg,
      transparent,
      rgba(0, 0, 0, 0.045625) 58.85%,
      rgba(0, 0, 0, 0.73)
    ),
    rgba(0, 0, 0, 0.05);
}
.product_completo_youtube_wrap.active .product_completo_youtube_video {
  opacity: 1;
}
.product_completo_youtube_wrap.active .product_completo_youtube_thumbnail {
  opacity: 0;
}
.product_completo_youtube_wrap.active iframe {
  display: block;
}
.product_completo_nutritionalclaims_popup_wrap {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
}
.product_completo_nutritionalclaims_popup_wrap.active {
  visibility: visible;
  z-index: 2020;
  opacity: 1;
}
.product_completo_nutritionalclaims_popup_wrap
  .product_completo_preparacao_nutritionalclaims_title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 110%;
  letter-spacing: -0.04em;
  color: #a9c600;
  padding-left: 22px;
  padding-top: 51px;
  padding-right: 22px;
}
@media (min-width: 768px) {
  .product_completo_nutritionalclaims_popup_wrap {
    display: none !important;
  }
}
.product_completo_nutritionalclaims_popup_wrap
  .product_completo_nutritionalclaims_popup_dark_overlay {
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
}
.product_completo_nutritionalclaims_popup_wrap
  .product_completo_nutritionalclaims_popup_inner_wrap {
  width: 100%;
  height: auto;
  max-height: calc(100% - 52px);
  position: absolute;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e3e9ed;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 8px 8px 0 0;
}
.product_completo_nutritionalclaims_popup_wrap
  .product_completo_nutritionalclaims_popup_inner_wrap
  .product_completo_nutritionalclaims_popup_carousel_wrap {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-bottom: 25px;
}
.product_completo_nutritionalclaims_popup_wrap
  .product_completo_nutritionalclaims_popup_title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: #08b556;
  padding: 0 22px 8px;
}
.product_completo_nutritionalclaims_popup_wrap
  .product_completo_nutritionalclaims_popup_text {
  padding: 0 22px;
}
.product_completo_nutritionalclaims_popup_wrap
  .product_completo_nutritionalclaims_popup_text,
.product_completo_nutritionalclaims_popup_wrap
  .product_completo_nutritionalclaims_popup_text
  p {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #525252;
  margin-bottom: 0;
}
.product_completo_nutritionalclaims_popup_wrap
  .close_full_screen_nutritionalclaims_popup {
  color: #8a939f;
  position: absolute;
  padding: 5px;
  font-size: 12px;
  top: 23px;
  right: 23px;
}
.product_completo_nutritionalclaims_popup_wrap
  .product_completo_nutritionalclaims_popup_carousel_wrap {
  height: calc(100% - 114px);
  overflow-y: scroll;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.product_completo_nutritionalclaims_popup_wrap
  .product_completo_nutritionalclaims_popup_carousel_wrap::-webkit-scrollbar {
  display: none;
}
.product_completo_nutritionalclaims_popup_wrap
  .product_completo_nutritionalclaims_popup_carousel
  .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.product_completo_nutritionalclaims_popup_wrap
  .close_full_screen_nutritionalclaims_popup_button {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 56px;
  height: 56px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #fff !important;
  text-shadow: 0 1px 3px rgba(82, 82, 82, 0.2);
  background: #96c950;
  border: 1px solid rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  border-radius: 16px 16px 0 0;
}
.product_completo_nutritionalclaims_popup_wrap
  .full_screen_nutritionalclaims_popup_navigation_wrap {
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 16px 16px 0 0;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.product_completo_nutritionalclaims_popup_wrap
  .full_screen_nutritionalclaims_popup_navigation_wrap
  .full_screen_nutritionalclaims_popup_navigation_next,
.product_completo_nutritionalclaims_popup_wrap
  .full_screen_nutritionalclaims_popup_navigation_wrap
  .full_screen_nutritionalclaims_popup_navigation_prev {
  line-height: 56px;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: #525252;
  text-shadow: 0 1px 3px rgba(82, 82, 82, 0.2);
  padding: 0 24px;
}
.product_completo_nutritionalclaims_popup_wrap
  .full_screen_nutritionalclaims_popup_navigation_wrap
  .full_screen_nutritionalclaims_popup_navigation_next:hover,
.product_completo_nutritionalclaims_popup_wrap
  .full_screen_nutritionalclaims_popup_navigation_wrap
  .full_screen_nutritionalclaims_popup_navigation_prev:hover {
  color: #525252;
}
.product_completo_featured_ingredients_popup_wrap {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
}
.product_completo_featured_ingredients_popup_wrap.active {
  visibility: visible;
  z-index: 2020;
  opacity: 1;
}
.product_completo_featured_ingredients_popup_wrap
  .product_completo_preparacao_featured_ingredients_title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 110%;
  letter-spacing: -0.04em;
  color: #a9c600;
  padding-left: 22px;
  padding-top: 51px;
  padding-right: 22px;
}
@media (min-width: 768px) {
  .product_completo_featured_ingredients_popup_wrap {
    display: none !important;
  }
}
.product_completo_featured_ingredients_popup_wrap
  .product_completo_featured_ingredients_popup_dark_overlay {
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
}
.product_completo_featured_ingredients_popup_wrap
  .product_completo_featured_ingredients_popup_inner_wrap {
  width: 100%;
  height: auto;
  max-height: calc(100% - 52px);
  position: absolute;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e3e9ed;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 8px 8px 0 0;
}
.product_completo_featured_ingredients_popup_wrap
  .product_completo_featured_ingredients_popup_inner_wrap
  .product_completo_featured_ingredients_popup_carousel_wrap {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-bottom: 25px;
  overflow-y: scroll;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.product_completo_featured_ingredients_popup_wrap
  .product_completo_featured_ingredients_popup_inner_wrap
  .product_completo_featured_ingredients_popup_carousel_wrap::-webkit-scrollbar {
  display: none;
}
.product_completo_featured_ingredients_popup_wrap
  .product_completo_featured_ingredients_popup_title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: #08b556;
  padding: 0 22px 8px;
}
.product_completo_featured_ingredients_popup_wrap
  .product_completo_featured_ingredients_popup_text {
  padding: 0 22px;
  overflow: hidden;
}
.product_completo_featured_ingredients_popup_wrap
  .product_completo_featured_ingredients_popup_text,
.product_completo_featured_ingredients_popup_wrap
  .product_completo_featured_ingredients_popup_text
  p {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #525252;
  margin-bottom: 0;
}
.product_completo_featured_ingredients_popup_wrap
  .close_full_screen_featured_ingredients_popup {
  color: #8a939f;
  position: absolute;
  padding: 5px;
  font-size: 12px;
  top: 23px;
  right: 23px;
}
.product_completo_featured_ingredients_popup_wrap
  .product_completo_featured_ingredients_popup_carousel_wrap {
  height: calc(100% - 114px);
}
.product_completo_featured_ingredients_popup_wrap
  .product_completo_featured_ingredients_popup_carousel {
  overflow: hidden;
}
.product_completo_featured_ingredients_popup_wrap
  .product_completo_featured_ingredients_popup_carousel
  .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.product_completo_featured_ingredients_popup_wrap
  .close_full_screen_featured_ingredients_popup_button {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 56px;
  height: 56px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #fff !important;
  text-shadow: 0 1px 3px rgba(82, 82, 82, 0.2);
  background: #96c950;
  border: 1px solid rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  border-radius: 16px 16px 0 0;
}
.product_completo_featured_ingredients_popup_wrap
  .full_screen_featured_ingredients_popup_navigation_wrap {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 16px 16px 0 0;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.product_completo_featured_ingredients_popup_wrap
  .full_screen_featured_ingredients_popup_navigation_wrap
  .full_screen_featured_ingredients_popup_navigation_next,
.product_completo_featured_ingredients_popup_wrap
  .full_screen_featured_ingredients_popup_navigation_wrap
  .full_screen_featured_ingredients_popup_navigation_prev {
  line-height: 56px;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: #525252;
  padding: 0 24px;
}
.product_completo_featured_ingredients_popup_wrap
  .full_screen_featured_ingredients_popup_navigation_wrap
  .full_screen_featured_ingredients_popup_navigation_next:hover,
.product_completo_featured_ingredients_popup_wrap
  .full_screen_featured_ingredients_popup_navigation_wrap
  .full_screen_featured_ingredients_popup_navigation_prev:hover {
  color: #525252;
}
.product_completo_comment_view_more_button {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #525252;
}
.product_completo_tooltip_description_mobile_outter_wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  visibility: hidden;
  z-index: -20;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media (min-width: 768px) {
  .product_completo_tooltip_description_mobile_outter_wrap {
    display: none;
  }
}
.product_completo_tooltip_description_mobile_outter_wrap.active {
  visibility: visible;
  z-index: 2020;
  opacity: 1;
}
.product_completo_tooltip_description_mobile_outter_wrap
  .product_completo_featured_ingredients_popup_dark_overlay {
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
}
.product_completo_tooltip_description_mobile_outter_wrap
  .product_completo_tooltip_description_mobile_inner_wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000 url(/img/product_completo_tooltip_background.png) no-repeat
    50% / cover;
  padding: 24px 24px 8px;
  -webkit-box-shadow: 0 69px 80px rgba(0, 0, 0, 0.07),
    0 26.5778px 25.4815px rgba(0, 0, 0, 0.0425185),
    0 5.62222px 6.51852px rgba(0, 0, 0, 0.0274815);
  box-shadow: 0 69px 80px rgba(0, 0, 0, 0.07),
    0 26.5778px 25.4815px rgba(0, 0, 0, 0.0425185),
    0 5.62222px 6.51852px rgba(0, 0, 0, 0.0274815);
  border-radius: 8px 8px 0 0;
}
.product_completo_tooltip_description_mobile_outter_wrap
  .product_completo_hover_tooltip_description_title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 9px;
  padding-right: 30px;
}
.product_completo_tooltip_description_mobile_outter_wrap
  .product_completo_hover_tooltip_description_text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: #adadad;
  margin-bottom: 0;
}
.product_completo_tooltip_description_mobile_outter_wrap
  .close_full_screen_featured_ingredients_popup {
  position: absolute;
  top: 26px;
  right: 24px;
  line-height: 18px;
  width: 16px;
  font-size: 10px;
  color: #fff;
}
.product_completo_nutritionalclaims_popup_desktop_wrap {
  position: fixed;
  z-index: 9020;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
}
.product_completo_nutritionalclaims_popup_desktop_wrap.active {
  visibility: visible;
  z-index: 2020;
  opacity: 1;
}
.product_completo_nutritionalclaims_popup_desktop_wrap.active
  .product_completo_nutritionalclaims_popup_desktop_inner_wrap {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  opacity: 1;
}
@media (max-width: 767px) {
  .product_completo_nutritionalclaims_popup_desktop_wrap {
    display: none;
  }
}
.product_completo_nutritionalclaims_popup_desktop_wrap
  .product_completo_nutritionalclaims_popup_desktop_dark_overlay {
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
}
.product_completo_nutritionalclaims_popup_desktop_wrap
  .product_completo_nutritionalclaims_popup_desktop_inner_wrap {
  height: 100vh;
  width: 480px;
  background: #fff;
  padding-top: 70px;
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transform: translate3d(100px, 0, 0);
  transform: translate3d(100px, 0, 0);
  opacity: 0;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.product_completo_nutritionalclaims_popup_desktop_wrap
  .product_completo_nutritionalclaims_popup_desktop_inner_wrap
  .product_completo_nutritionalclaims_popup_desktop_scrollable_section {
  padding-top: 14px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
  overflow-y: scroll;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-left: 48px;
  padding-right: 48px;
  height: 100%;
}
.product_completo_nutritionalclaims_popup_desktop_wrap
  .product_completo_nutritionalclaims_popup_desktop_inner_wrap
  .product_completo_nutritionalclaims_popup_desktop_scrollable_section::-webkit-scrollbar {
  display: none;
}
.product_completo_nutritionalclaims_popup_desktop_wrap
  .close_full_screen_nutritionalclaims_desktop_popup {
  font-size: 14px;
  color: #8a939f;
  position: absolute;
  top: 36px;
  right: 36px;
}
.product_completo_nutritionalclaims_popup_desktop_wrap
  .product_completo_preparacao_nutritionalclaims_desktop_title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 110%;
  letter-spacing: -0.04em;
  color: #a9c600;
  margin-bottom: 36px;
}
.product_completo_nutritionalclaims_popup_desktop_wrap
  .product_completo_nutritionalclaims_popup_title {
  padding-right: 33px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: #08b556;
  margin-bottom: 0;
}
.product_completo_nutritionalclaims_popup_desktop_wrap
  .product_completo_nutritionalclaims_popup_text,
.product_completo_nutritionalclaims_popup_desktop_wrap
  .product_completo_nutritionalclaims_popup_text
  p {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #525252;
  margin-bottom: 0;
}
.product_completo_nutritionalclaims_popup_desktop_wrap
  .product_completo_nutritionalclaims_popup_item_accordeon_icon {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 4px;
  right: 0;
  cursor: pointer;
}
.product_completo_nutritionalclaims_popup_desktop_wrap
  .product_completo_nutritionalclaims_popup_item_accordeon_icon:after,
.product_completo_nutritionalclaims_popup_desktop_wrap
  .product_completo_nutritionalclaims_popup_item_accordeon_icon:before {
  content: "";
  position: absolute;
  background: #525252;
  border-radius: 10px;
}
.product_completo_nutritionalclaims_popup_desktop_wrap
  .product_completo_nutritionalclaims_popup_item_accordeon_icon:before {
  width: 100%;
  height: 2px;
  top: calc(50% - 1px);
}
.product_completo_nutritionalclaims_popup_desktop_wrap
  .product_completo_nutritionalclaims_popup_item_accordeon_icon:after {
  left: calc(50% - 1px);
  height: 100%;
  width: 2px;
  display: none;
}
.product_completo_nutritionalclaims_popup_desktop_wrap
  .product_completo_nutritionalclaims_popup_text_wrap {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  opacity: 0;
}
.product_completo_nutritionalclaims_popup_desktop_wrap
  .product_completo_nutritionalclaims_popup_item {
  position: relative;
  top: 4px;
  margin-bottom: 30px;
}
.product_completo_nutritionalclaims_popup_desktop_wrap
  .product_completo_nutritionalclaims_popup_item.active
  .product_completo_nutritionalclaims_popup_text_wrap {
  opacity: 1;
  max-height: 900px;
  overflow: hidden;
}
.product_completo_nutritionalclaims_popup_desktop_wrap
  .product_completo_nutritionalclaims_popup_item.active
  .product_completo_nutritionalclaims_popup_item_accordeon_icon:after {
  display: block;
}
.product_completo_nutritionalclaims_popup_desktop_wrap
  .full_screen_nutritionalclaims_popup_desktop_navigation_wrap {
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 24px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 0 5px rgba(82, 82, 82, 0.08),
    0 10px 40px rgba(82, 82, 82, 0.1);
  box-shadow: 0 0 5px rgba(82, 82, 82, 0.08), 0 10px 40px rgba(82, 82, 82, 0.1);
  border-radius: 16px 16px 0 0;
}
.product_completo_nutritionalclaims_popup_desktop_wrap
  .full_screen_nutritionalclaims_popup_desktop_navigation_wrap
  .full_screen_nutritionalclaims_popup_desktop_navigation_next,
.product_completo_nutritionalclaims_popup_desktop_wrap
  .full_screen_nutritionalclaims_popup_desktop_navigation_wrap
  .full_screen_nutritionalclaims_popup_desktop_navigation_prev {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: -0.02em;
  color: #525252;
  cursor: pointer;
}
.product_completo_nutritionalclaims_popup_desktop_wrap
  .product_completo_nutritionalclaims_popup_accordeon {
  padding-bottom: 18px;
}
.product_completo_ingredients_popup_desktop_wrap {
  position: fixed;
  z-index: 9020;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
}
.product_completo_ingredients_popup_desktop_wrap.active {
  visibility: visible;
  z-index: 2020;
  opacity: 1;
}
.product_completo_ingredients_popup_desktop_wrap.active
  .product_completo_ingredients_popup_desktop_inner_wrap {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  opacity: 1;
}
@media (max-width: 767px) {
  .product_completo_ingredients_popup_desktop_wrap {
    display: none;
  }
}
.product_completo_ingredients_popup_desktop_wrap
  .product_completo_ingredients_popup_desktop_dark_overlay {
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
}
.product_completo_ingredients_popup_desktop_wrap
  .product_completo_ingredients_popup_desktop_inner_wrap {
  height: 100vh;
  width: 480px;
  background: #fff;
  padding-top: 70px;
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transform: translate3d(100px, 0, 0);
  transform: translate3d(100px, 0, 0);
  opacity: 0;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.product_completo_ingredients_popup_desktop_wrap
  .product_completo_ingredients_popup_desktop_inner_wrap
  .product_completo_ingredients_popup_desktop_scrollable_section {
  padding-top: 14px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
  overflow-y: scroll;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-left: 48px;
  padding-right: 48px;
}
.product_completo_ingredients_popup_desktop_wrap
  .product_completo_ingredients_popup_desktop_inner_wrap
  .product_completo_ingredients_popup_desktop_scrollable_section::-webkit-scrollbar {
  display: none;
}
.product_completo_ingredients_popup_desktop_wrap
  .close_full_screen_ingredients_desktop_popup {
  font-size: 14px;
  color: #8a939f;
  position: absolute;
  top: 36px;
  right: 36px;
}
.product_completo_ingredients_popup_desktop_wrap
  .product_completo_preparacao_ingredients_desktop_title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 110%;
  letter-spacing: -0.04em;
  color: #a9c600;
  margin-bottom: 36px;
}
.product_completo_ingredients_popup_desktop_wrap
  .product_completo_ingredients_popup_title {
  padding-right: 33px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: #08b556;
  margin-bottom: 0;
}
.product_completo_ingredients_popup_desktop_wrap
  .product_completo_ingredients_popup_text,
.product_completo_ingredients_popup_desktop_wrap
  .product_completo_ingredients_popup_text
  p {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #525252;
  margin-bottom: 0;
}
.product_completo_ingredients_popup_desktop_wrap
  .product_completo_ingredients_popup_item_accordeon_icon {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 4px;
  right: 0;
  cursor: pointer;
}
.product_completo_ingredients_popup_desktop_wrap
  .product_completo_ingredients_popup_item_accordeon_icon:after,
.product_completo_ingredients_popup_desktop_wrap
  .product_completo_ingredients_popup_item_accordeon_icon:before {
  content: "";
  position: absolute;
  background: #525252;
  border-radius: 10px;
}
.product_completo_ingredients_popup_desktop_wrap
  .product_completo_ingredients_popup_item_accordeon_icon:before {
  width: 100%;
  height: 2px;
  top: calc(50% - 1px);
}
.product_completo_ingredients_popup_desktop_wrap
  .product_completo_ingredients_popup_item_accordeon_icon:after {
  left: calc(50% - 1px);
  height: 100%;
  width: 2px;
}
.product_completo_ingredients_popup_desktop_wrap
  .product_completo_ingredients_popup_text_wrap {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  opacity: 0;
}
.product_completo_ingredients_popup_desktop_wrap
  .product_completo_ingredients_popup_item {
  position: relative;
  top: 4px;
  margin-bottom: 30px;
}
.product_completo_ingredients_popup_desktop_wrap
  .product_completo_ingredients_popup_item.active
  .product_completo_ingredients_popup_text_wrap {
  opacity: 1;
  max-height: 900px;
  overflow: hidden;
}
.product_completo_ingredients_popup_desktop_wrap
  .product_completo_ingredients_popup_item.active
  .product_completo_ingredients_popup_item_accordeon_icon:after {
  display: none;
}
.product_completo_ingredients_popup_desktop_wrap
  .full_screen_ingredients_popup_desktop_navigation_wrap {
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 24px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 0 5px rgba(82, 82, 82, 0.08),
    0 10px 40px rgba(82, 82, 82, 0.1);
  box-shadow: 0 0 5px rgba(82, 82, 82, 0.08), 0 10px 40px rgba(82, 82, 82, 0.1);
  border-radius: 16px 16px 0 0;
}
.product_completo_ingredients_popup_desktop_wrap
  .full_screen_ingredients_popup_desktop_navigation_wrap
  .full_screen_ingredients_popup_desktop_navigation_next,
.product_completo_ingredients_popup_desktop_wrap
  .full_screen_ingredients_popup_desktop_navigation_wrap
  .full_screen_ingredients_popup_desktop_navigation_prev {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: -0.02em;
  color: #525252;
  cursor: pointer;
}
.product_completo_ingredients_popup_desktop_wrap
  .product_completo_ingredients_popup_accordeon {
  padding-bottom: 18px;
}
.ratings_form_outter_wrap {
  max-height: 0;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  overflow: hidden;
}
.ratings_form_outter_wrap.active {
  max-height: 999px;
}
@media (min-width: 768px) {
  .ratings_form_wrap {
    background: rgba(227, 233, 237, 0.4);
    border-radius: 8px;
    padding: 48px 24px;
    margin-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .ratings_form_wrap {
    padding: 0 8px 64px;
    margin-bottom: 50px;
  }
}
.ratings_form_wrap .ratings_form {
  width: 100%;
  max-width: 528px;
  margin: auto;
  text-align: center;
}
.ratings_form_wrap .ratings_form_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .ratings_form_wrap .ratings_form_head {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .ratings_form_wrap .ratings_form_head {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.ratings_form_wrap .ratings_form_title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: -0.03em;
  margin-bottom: 0;
  color: #000;
  text-align: left;
}
@media (max-width: 767px) {
  .ratings_form_wrap .ratings_form_title {
    margin-bottom: 49px;
  }
}
.ratings_form_wrap .rating_textarea {
  width: 100%;
  border: 1px solid #e3e9ed;
  border-radius: 4px;
  padding: 12px;
  height: 75px;
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #8a939f;
}
.ratings_form_wrap .rating_textarea.error {
  background: rgba(255, 71, 34, 0.2);
  border: 1px solid #dd5631;
}
.ratings_form_wrap .rating_textarea:focus {
  outline: none;
  border: 1px solid #e3e9ed;
}
.ratings_form_wrap .rating_textarea::-webkit-input-placeholder {
  color: #8a939f;
  opacity: 1;
}
.ratings_form_wrap .rating_textarea::-moz-placeholder {
  color: #8a939f;
  opacity: 1;
}
.ratings_form_wrap .rating_textarea::-ms-input-placeholder {
  opacity: 1;
}
.ratings_form_wrap .rating_textarea::placeholder {
  color: #8a939f;
  opacity: 1;
}
.ratings_form_wrap .rating_textarea:-ms-input-placeholder,
.ratings_form_wrap .rating_textarea::-ms-input-placeholder {
  color: #8a939f;
}
@media (max-width: 767px) {
  .ratings_form_wrap .rating_textarea {
    height: 92px;
  }
}
.ratings_form_wrap .rating_submit_button {
  background: #96c950;
  border: 1px solid rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  border-radius: 50px;
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 1px 3px rgba(82, 82, 82, 0.2);
  padding: 11px 40px 10px;
  -webkit-transition: background 0.35s ease;
  transition: background 0.35s ease;
  cursor: pointer;
}
@media (max-width: 767px) {
  .ratings_form_wrap .rating_submit_button {
    width: 100%;
    max-width: 286px;
  }
}
.ratings_form_wrap .rating_submit_button:hover {
  background: #3ca047;
}
.ratings_form_wrap .ratings_form_stars_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.ratings_form_wrap .ratings_form_stars_wrap.error {
  -webkit-animation-name: stars_error_animation;
  animation-name: stars_error_animation;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-iteration-count: 5;
  animation-iteration-count: 5;
}
@media (max-width: 767px) {
  .ratings_form_wrap .ratings_form_stars_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.ratings_form_wrap .ratings_form_stars_wrap .ratings_form_stars {
  font-size: 0;
}
.ratings_form_wrap .ratings_form_stars_wrap .ratings_form_stars i {
  font-size: 21px;
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
.ratings_form_wrap .ratings_form_stars_wrap .ratings_form_stars i.icomoon-star {
  color: #8a939f;
}
.ratings_form_wrap
  .ratings_form_stars_wrap
  .ratings_form_stars
  i.icomoon-star-filled {
  color: #ffb020;
}
.ratings_form_wrap .rating_select_text {
  -ms-user-select: none;
  user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
}
.ratings_form_wrap .rating_number_wrap {
  padding: 10px 0;
  background: #ffb020;
  border-radius: 3px;
  width: 36px;
  position: relative;
}
@media (min-width: 768px) {
  .ratings_form_wrap .rating_number_wrap {
    margin-left: 5px;
  }
}
@media (max-width: 767px) {
  .ratings_form_wrap .rating_number_wrap {
    margin-bottom: 9px;
  }
}
.ratings_form_wrap .rating_number_wrap .rating_number_placeholder {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 100%;
  color: #fff;
  width: 100%;
  text-align: center;
  text-shadow: 0 1px 3px rgba(82, 82, 82, 0.2);
}
.ratings_form_wrap .rating_number {
  display: none;
}
.ratings_form_wrap h5 {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  letter-spacing: -0.03em;
  color: #000;
}
.no_comments_message_wrap {
  text-align: center;
  background: rgba(227, 233, 237, 0.4);
  border-radius: 8px;
}
@media (min-width: 768px) {
  .no_comments_message_wrap {
    padding: 32px;
  }
}
@media (max-width: 767px) {
  .no_comments_message_wrap {
    padding: 24px 16px;
  }
}
.no_comments_message_wrap .no_comments_message {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: #000;
}
.no_comments_message_wrap a.open_review_popup {
  display: inline-block;
  line-height: 44px;
  height: 44px;
  white-space: nowrap;
  background: #fff;
  border: 1px solid #e3e9ed;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 50px;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  padding: 0 45px;
  color: #525252;
  margin-bottom: 0;
}
.no_comments_message_wrap a.open_review_popup:hover {
  background: #96c950;
  color: #fff;
}
.no_comments_message_outter_wrap {
  max-height: 0;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  overflow: hidden;
}
.no_comments_message_outter_wrap.active {
  max-height: 999px;
}
@-webkit-keyframes stars_error_animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.12);
    transform: scale(1.12);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes stars_error_animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.12);
    transform: scale(1.12);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.podup_items_count {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #9da9b9;
  margin-bottom: 0;
}
.fixed_mobile_navigation_wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(rgba(152, 202, 80, 0.05)),
      to(rgba(152, 202, 80, 0.05))
    ),
    hsla(0, 0%, 100%, 0.8);
  background: linear-gradient(
      0deg,
      rgba(152, 202, 80, 0.05),
      rgba(152, 202, 80, 0.05)
    ),
    hsla(0, 0%, 100%, 0.8);
  -webkit-box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.15),
    -0.00408047px -0.131187px 4.625px rgba(0, 0, 0, 0.0325);
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.15),
    -0.00408047px -0.131187px 4.625px rgba(0, 0, 0, 0.0325);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  overflow-y: hidden;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media (min-width: 768px) {
  .fixed_mobile_navigation_wrap {
    display: none;
  }
}
.fixed_mobile_navigation_wrap::-webkit-scrollbar {
  display: none;
}
.fixed_mobile_navigation_wrap .fixed_mobile_navigation {
  display: inline-block;
  white-space: nowrap;
  padding-left: 10px;
  padding-right: 10px;
}
.fixed_mobile_navigation_wrap .fixed_mobile_navigation a {
  line-height: 49px;
  height: 49px;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.02em;
  color: #525252;
  padding: 0 8px;
  display: inline-block;
}
.fixed_mobile_navigation_wrap
  .fixed_mobile_navigation
  a.trigger_scroll_to_mobile_fixed.active {
  color: #1e8e20;
}
.back_to_top_arrow i {
  -webkit-transform: rotate(-45deg) !important;
  transform: rotate(-45deg) !important;
  font-size: 10px;
}
.gallery_navigation_thumbnail i {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 14px;
  color: #96c950;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.item_gallery_navigation {
  background: #fff;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border-radius: 4px;
  border: 1px solid hsla(0, 0%, 91%, 0.5);
}
.item_gallery_navigation .item_gallery_navigation_inner_wrap {
  padding: 10px;
  max-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 558px;
  width: 100%;
}
.item_gallery_navigation .gallery_navigation_title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 110%;
  text-align: center;
  letter-spacing: -0.04em;
  color: #846503;
  margin-bottom: 32px;
}
.item_gallery_navigation .gallery_navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: calc(100% + 8px);
  margin: 0 -4px;
}
.item_gallery_navigation .gallery_navigation a {
  margin: 0 4px;
  width: calc(50% - 8px);
  padding: 20px 30px;
  border-radius: 4px;
  margin-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 980px) {
  .item_gallery_navigation .gallery_navigation a {
    padding: 10px;
  }
}
.item_gallery_navigation .gallery_navigation a .gallery_navigation_icon_1 {
  margin-right: 8px;
}
.item_gallery_navigation .gallery_navigation a .gallery_navigation_inner_text {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 100%;
  font-family: 'DM Sans', sans-serif;
  color: #525252;
  font-weight: 500;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  letter-spacing: -0.02em;
  padding-right: 10px;
}
@media (max-width: 980px) {
  .item_gallery_navigation
    .gallery_navigation
    a
    .gallery_navigation_inner_text {
    padding-right: 5px;
  }
}
.item_gallery_navigation
  .gallery_navigation
  a
  .gallery_navigation_inner_text
  span.gallery_navigation_count {
  color: #8a939f;
}
.item_gallery_navigation .gallery_navigation a .gallery_navigation_icon_2 {
  font-size: 6px;
  color: #8a939f;
}
.item_gallery_navigation .gallery_navigation a.gallery_navigation_beneficios {
  background: rgba(30, 142, 32, 0.1);
}
.item_gallery_navigation
  .gallery_navigation
  a.gallery_navigation_beneficios
  .gallery_navigation_icon_1 {
  color: #1e8e20;
  font-size: 14px;
}
.item_gallery_navigation
  .gallery_navigation
  a.gallery_navigation_alegacoes_nutricionais {
  background: rgba(57, 184, 179, 0.1);
}
.item_gallery_navigation
  .gallery_navigation
  a.gallery_navigation_alegacoes_nutricionais
  .gallery_navigation_icon_1 {
  color: #39b8b3;
  font-size: 18px;
}
.item_gallery_navigation .gallery_navigation a.gallery_navigation_preparacao {
  background: rgba(169, 198, 0, 0.1);
}
.item_gallery_navigation
  .gallery_navigation
  a.gallery_navigation_preparacao
  .gallery_navigation_icon_1 {
  color: #a9c600;
  font-size: 18px;
}
.item_gallery_navigation .gallery_navigation a.gallery_navigation_ingredientes {
  background: rgba(132, 101, 3, 0.1);
}
.item_gallery_navigation
  .gallery_navigation
  a.gallery_navigation_ingredientes
  .gallery_navigation_icon_1 {
  color: #846503;
  font-size: 11px;
}
.item_gallery_navigation .gallery_navigation a.gallery_navigation_receitas {
  background: rgba(8, 181, 86, 0.1);
}
.item_gallery_navigation
  .gallery_navigation
  a.gallery_navigation_receitas
  .gallery_navigation_icon_1 {
  color: #08b556;
  font-size: 13px;
}
.item_gallery_navigation .gallery_navigation a.gallery_navigation_avaliacoes {
  background: rgba(255, 181, 32, 0.1);
}
.item_gallery_navigation
  .gallery_navigation
  a.gallery_navigation_avaliacoes
  .gallery_navigation_icon_1 {
  color: #ffb520;
  font-size: 14px;
}
.item_gallery_navigation .gallery_navigation a.gallery_navigation_faqs {
  background: rgba(208, 65, 55, 0.1);
}
.item_gallery_navigation
  .gallery_navigation
  a.gallery_navigation_faqs
  .gallery_navigation_icon_1 {
  color: #d04137;
  font-size: 13px;
}
.full_screen_preparacao_popup_navigation_wrap {
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 16px 16px 0 0;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.full_screen_preparacao_popup_navigation_wrap
  .full_screen_preparacao_popup_navigation_next,
.full_screen_preparacao_popup_navigation_wrap
  .full_screen_preparacao_popup_navigation_prev {
  line-height: 56px;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: #525252;
  text-shadow: 0 1px 3px rgba(82, 82, 82, 0.2);
  padding: 0 24px;
}
.full_screen_preparacao_popup_navigation_wrap
  .full_screen_preparacao_popup_navigation_next:hover,
.full_screen_preparacao_popup_navigation_wrap
  .full_screen_preparacao_popup_navigation_prev:hover {
  color: #525252;
}


/*RITA NEW*/
.widget-order-summary {
  border-radius: 4px;
  width: 100%;
  margin-left: 7px;
  border: 1px solid #E3E9ED;
}
.widget-title-new {
  font-family: 'Barlow';
  margin-bottom: 0px;
  padding: 12px 24px;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #000000;
  background-color: #F9FBFB;
  border-bottom: 1px solid #E3E9ED;
}
.table-widget-margin {
  padding: 0px 0px;
  background-color: #ffffff;
  padding-top: 16px;
}
.progress-container {
  background-color: #ffffff;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05), 0px 0px 15px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  width: 100%;
  padding: 16px 0;
  margin-bottom: 30px;
}
.progress {
  border-radius: 20px;
  background-color: #E3E9ED;
  font-size: 13px;
  font-weight: 500;
  line-height: 6px;
}
.free-shipping-font {
  font-weight: 500;
  font-size: 15px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: #878A8F;
}
.progress-bar-2 {
  height: 6px;
  background-color: #96c950;
}
.progress-bar-4 {
  height: 6px;
  background-color: #E4785A;
}
.text-order-subtotal {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: #000000;
}
.text-order-shipping{
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #525252;
}
.text-order-shipping.pr-24 span {
  color: #389C23;
}
.text-order-discount {
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #1E8E20;
}
.cart-total {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: #000000;
  text-transform: uppercase;
  background: #F9FBFB;
}
.pl-24 {
  padding-left: 24px !important;
}
.pr-24 {
  padding-right: 24px !important;
}
.table-no-margin {
  margin-bottom: 0px;
}
.btn-finalizar {
  background-color: #96C950 !important;
  width: 100% !important;
  text-transform: capitalize !important;
  margin-left: 7px !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  box-shadow: 0px 3px 30px rgba(82, 82, 82, 0.15) !important;
  border-radius: 50px !important;
  color: #ffffff !important;
  margin-top: 30px !important;
}
.btn-finalizar:hover {
  background-color: #1E8E20 !important;
  width: 100% !important;
  text-transform: capitalize !important;
  margin-left: 7px !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  box-shadow: 0px 3px 30px rgba(82, 82, 82, 0.15) !important;
  border-radius: 50px !important;
  color: #ffffff !important;
}
.cupon-bar {
  background: #ffffff;
  border-radius: 2px;
  margin-bottom: 6px;
  padding: 20px 20px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
  margin-top: 10px;
}
.cupon-text {
  font-weight: 700;
  font-size: 15px;
  line-height: 44px;
  letter-spacing: -0.02em;
  color: #1E8E20;
  padding-left: 35px;
}
p.cupon-text {
  margin: 0px;
}
.cart-item-footer .coupon-tag-icon-small {
  background: url("/img/tag-small.svg") no-repeat center;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 13px;
  left: 27px;
  padding: 0px;
}
.cart-item-footer .icon-points {
  background: url("/img/points.svg") no-repeat center;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 13px;
  left: 27px;
  padding: 0px;
}
.points-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 44px;
  letter-spacing: -0.02em;
  color: #878A8F;
  float: right;
}
p.points-text {
  margin: 0px;
}
.points-text span {
  font-weight: 700;
  color: #000000;
}
.slider-title-red {
  font-weight: 600 !important;
  font-size: 18px !important;
  letter-spacing: -0.03em !important;
  color: #DD5631 !important;
}
.product-weight {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.02em;
}
.cart-product-details-unit-price {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.02em;
}
.cart-product-details-unit-price del {
  text-decoration-line: line-through;
  color: #BABABA;
}
.cupon-input-mobile {
  float: right;
}
.hide-desktop {
  display: none !important;
}
.product_completo_section_5 .product_completo_relacted_products_carousel_novo {
  position: relative;
  visibility: hidden;
}
.product_completo_section_5 .product_completo_relacted_products_carousel_novo.owl-loaded {
  visibility: visible;
}
.product_completo_section_5 .product_completo_relacted_products_carousel_novo .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}
.product_completo_section_5 .product_completo_relacted_products_carousel_novo .owl-item {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.product_completo_section_5 .product_completo_relacted_products_carousel_novo .owl-item.active {
  opacity: 1;
}
.product_completo_section_5 .product_completo_relacted_products_carousel_novo .owl-item .item {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.product_completo_section_5 .product_completo_relacted_products_carousel_novo .product-card-2 {
 -webkit-box-shadow: 0 3.30667px 19.0133px rgba(0, 0, 0, 0.1), 0 0.414046px 2.38076px rgba(0, 0, 0, 0.05);
  box-shadow: 0 3.30667px 19.0133px rgba(0, 0, 0, 0.1), 0 0.414046px 2.38076px rgba(0, 0, 0, 0.05);
  border-radius: 3.30667px;
}
.product_completo_section_5 .product_completo_relacted_products_carousel_novo .product-card-2 .product-card-content-wrap {
  padding: 20px;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.product_completo_section_5 .product_completo_relacted_products_carousel_novo .product-card-2 .product-badge {
  margin-bottom: 4px;
}
.product_completo_section_5 .product_completo_relacted_products_carousel_novo .product-card-2 .product-badge i {
  font-size: calc(10px + 2 * ((100vw - 350px) / 1090));
}
.product_completo_section_5 .product_completo_relacted_products_carousel_novo .product-card-2 .product-badge span {
  font-size: calc(10px + 2 * ((100vw - 350px) / 1090));
}
.product_completo_section_5 .product_completo_relacted_products_carousel_novo .product-card-2 .product-weight {
  font-size: 12px;
  margin-bottom: 3px !important;
  font-size: calc(10px + 3 * ((100vw - 350px) / 1090));
  line-height: 1.230769230769231;
}
.product_completo_section_5 .product_completo_relacted_products_carousel_novo .product-card-2 .product-price {
  font-size: 16px;
  margin-bottom: 0;
}
.product_completo_section_5 .product_completo_relacted_products_carousel_novo .product-card-2 h3.product-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px !important;
  font-size: calc(13px + 3 * ((100vw - 350px) / 1090));
  line-height: 110%;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.product_completo_section_5 .product_completo_relacted_products_carousel_novo .product-card-2 .product-thumb {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.product_completo_section_5 .product_completo_relacted_products_carousel_novo .product-card-2 .rating_stars {
  margin-bottom: 10px !important;
}
.product_completo_section_5 .product_completo_relacted_products_carousel_novo .owl-next,
.product_completo_section_5 .product_completo_relacted_products_carousel_novo .owl-prev {
  width: 40px;
  height: 40px;
  -webkit-box-shadow: 0 0 5px rgba(82, 82, 82, 0.08),
    0 10px 40px rgba(82, 82, 82, 0.1);
  box-shadow: 0 0 5px rgba(82, 82, 82, 0.08), 0 10px 40px rgba(82, 82, 82, 0.1);
  border-radius: 100%;
  position: absolute;
  z-index: 20;
  -webkit-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
  opacity: 1;
  background: #fff;
  cursor: pointer;
}
.product_completo_section_5 .product_completo_relacted_products_carousel_novo .owl-next.disabled,
.product_completo_section_5 .product_completo_relacted_products_carousel_novo .owl-prev.disabled {
  opacity: 0;
}
.product_completo_section_5 .product_completo_relacted_products_carousel_novo .owl-next {
  right: -50px;
}
.product_completo_section_5 .product_completo_relacted_products_carousel_novo .owl-prev {
  left: -50px;
}
.product_completo_section_5 .product_completo_relacted_products_carousel_novo .owl-next,
.product_completo_section_5 .product_completo_relacted_products_carousel_novo .owl-prev {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.product_completo_section_5 .product_completo_relacted_products_carousel_novo .owl-next i,
.product_completo_section_5 .product_completo_relacted_products_carousel_novo .owl-prev i {
  position: absolute;
  font-size: 12px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.dias-semana {
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #969696;
}
.horas {
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #525252;
}
.phone-footer-icon {
  display: inline-block;
  background-image: url(/img/ico-phone-footer.svg);
  width: 16px;
  height: 17px;
  margin-right: 8px;
}
.phone-footer-icon-dark {
  display: none;
}
.email-footer-icon {
  display: inline-block;
  background-image: url(/img/ico-mail-footer.svg);
  width: 16px;
  height: 14px;
  margin-right: 8px;
}
.email-footer {
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: -0.02em;
  color: #525252;
}
.t-40 {
  padding-top: 24px;
  margin-bottom:0px !important
}
.newsletter-submit-footer {
  background: #E3E9ED !important;
  color: #525252 !important;
  width: 80px;
}
.newsletter-submit-footer:hover {
  background: #96c950 !important;
}
.newsletter-submit-footer span {
  top: 15px !important;
  left: 35px !important;
}
#newsdisclaimer {
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: -0.02em;
  color: #878A8F;
}
.mail-placeholder::-webkit-input-placeholder {
  color: #878A8F !important;
  font-weight: 400;
  font-size: 16px;
  line-height: 44px;
  letter-spacing: -0.02em;
}
.mail-placeholder:-ms-input-placeholder {
  color: #878A8F !important;
  font-weight: 400;
  font-size: 16px;
  line-height: 44px;
  letter-spacing: -0.02em;
}
.mail-placeholder::placeholder {
  color: #878A8F !important;
  font-weight: 400;
  font-size: 16px;
  line-height: 44px;
  letter-spacing: -0.02em;
}
.text-direitos-1 {
  font-family: 'Barlow';
  font-weight: 500 !important;
  font-size: 14px !important;
  line-height: 120% !important;
  color: #FBF6EC;
  padding-bottom: 0px !important;
  padding-top: 4px !important;
  opacity: 0.7;
  text-align: right;
}
.text-direitos-2 {
  font-family: 'Barlow';
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #FBF6EC;
  opacity: 0.7;
  padding-top: 0px !important;
  padding-bottom: 16px !important;
  text-align: left;
}
.text-direitos-1-center {
  margin: 0 120px;
}
img.desaturate {
  filter:         grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter:    grayscale(100%);
  -ms-filter:     grayscale(100%);
  -o-filter:      grayscale(100%);
  padding-top: 26px;
}
.pad-lr-80 {
  padding-right: 110px !important;
  padding-left: 110px !important;
}
.pad-lr-checkout {
  padding-right: 0px !important;
  padding-left: 0px !important;
}
.pad-lr-48 {
  padding-right: 48px !important;
  padding-left: 48px !important;
}
.payment-badges {
  padding-top: 24px;
  display: block;
}
.payment-badges-mobile {
  display: none;
}
.trustpilot-widget {
  padding-top: 20px;
}
.grey-container {
  width: 100%;
  background-color: #FDFCFA;
  padding-top: 40px;
}
.header-checkout {
  background: #ffffff !important;
  box-shadow: 0px 0px 15px rgb(0 0 0 / 5%);
  padding: 10px 20px !important;
  height: 74px;
  z-index: 10;
}
.checkout-progress-bar {
  width: 50%;
  margin: 0px auto;
  padding: 0px 200px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin: 0 70px;
  position: relative;
}
.progressbar {
  counter-reset: step;
  margin-top: 8px !important;
  margin-bottom: 0px !important;
  padding-left: 0px !important;
  line-height: unset !important;
}
.progressbar li {
  list-style-type: none;
  width: 25%;
  float: left;
  font-weight: 700;
  font-size: 14px;
  position: relative;
  text-align: center;
  text-transform: capitalize;
  color: #878A8F;
}
.progressbar li:before {
  width: 10px;
  height: 10px;
  content: counter(step);
  counter-increment: step;
  line-height: 30px;
  border: 2px solid #E3E9ED;
  background-color: #E3E9ED;
  display: block;
  text-align: center;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  content: '';
}
.progressbar li:after {
  width: 86%;
  height: 2px;
  content: '';
  position: absolute;
  background-color: #E3E9ED;
  top: 4px;
  left: -43%;
  z-index: -1;
}
.progressbar li:first-child:after {
  content: none;
}
.progressbar li.active {
  color: #000000;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.02em;
  text-transform: capitalize;
}
.progressbar li.active:before {
  border-color: #1E8E20;
  background-color: #ffffff;
}
.progressbar li.active + li:after {
  background-color: #E3E9ED;
}
.page-title-2 {
  width: 100%;
  margin-bottom: 32px;
  margin-top: 16px;
  padding: 0px;
  background-color: #fff;
}
.icon-envio {
  display: inline-block;
  background-image: url(/img/icon-envio.svg);
  width: 24px;
  height: 24px;
  margin-right: 16px;
}
.icon-payment {
  display: inline-block;
  background-image: url(/img/payment-icon.svg);
  width: 24px;
  height: 24px;
  margin-right: 16px;
}
.icon-complete {
  display: inline-block;
  background-image: url(/img/order-complete.svg);
  width: 24px;
  height: 24px;
  margin-right: 16px;
}
.envio-title {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: -0.51px;
  color: #654724;
  margin-bottom: 8px !important;
}
.envio-subtitle {
  font-family: garage-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 28px;
  line-height: 24px;
  color: #000000;
  margin-bottom: 48px;
}
.sidebar-new {
  width: 100%;
  max-width: 360px;
  margin-top: -140px;
}
.delivery-container {
  display: grid;
  grid-auto-flow: column;
  margin-bottom: 32px;
}
.pickup-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.pickup-box {
  flex: 1 0 42%;
  padding: 32px;
  background: #FFFFFF;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  margin-right: 16px;
  margin-bottom: 16px;
  position: relative;
}
.pickup-box.active {
  background: #EAF4DC;
  border: 3px solid #96C950;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.05);
}
.delivery-box {
  flex: 1;
  padding: 32px;
  background: #FFFFFF;
  box-shadow: 0px 9px 25px rgba(0, 0, 0, 0.07), 0px 1.12694px 3.13039px rgba(0, 0, 0, 0.035);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  height: 100%;
}
.delivery-box:hover {
  background: #F7FFEC;
}
.delivery-box:first-child {
  margin-right: 30px;
}
.delivery-box:last-child {
  margin-right: 10%;
}
.delivery-box-left {
  flex: 1;
  padding: 32px;
  background: #FFFFFF;
  box-shadow: 0px 9px 25px rgba(0, 0, 0, 0.07), 0px 1.12694px 3.13039px rgba(0, 0, 0, 0.035);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  height: 100%;
  margin-right: 30px;
}
.delivery-box-right {
  flex: 1;
  padding: 32px;
  background: #FFFFFF;
  box-shadow: 0px 9px 25px rgba(0, 0, 0, 0.07), 0px 1.12694px 3.13039px rgba(0, 0, 0, 0.035);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  height: 100%;
  margin-right: 30px;
}
.delivery-box-left {
  flex: 1;
  padding: 32px;
  background: #FFFFFF;
  box-shadow: 0px 9px 25px rgba(0, 0, 0, 0.07), 0px 1.12694px 3.13039px rgba(0, 0, 0, 0.035);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  height: 100%;
  margin-right: 30px;
}
.delivery-box-right {
  flex: 1;
  padding: 32px;
  background: #FFFFFF;
  box-shadow: 0px 9px 25px rgba(0, 0, 0, 0.07), 0px 1.12694px 3.13039px rgba(0, 0, 0, 0.035);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  height: 100%;
  margin-right: 30px;
}
.ico-entregar {
  display: inline-block;
  background-image: url(/img/icon-entregar.svg);
  width: 24px;
  height: 24px;
  position: absolute;
}
.ico-levantar {
  display: inline-block;
  background-image: url(/img/icon-levantar.svg);
  width: 24px;
  height: 24px;
  margin-right: 10px;
  position: absolute;
}
.title-delivery {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.34px;
  color: #2B1E0F;
  display: inline-block;;
  margin-bottom: 8px;
  margin-left: 34px;
}
.title-pickup {
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #525252;
  margin-bottom: 8px;
}
.text-delivery {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  color: #9B7836;
  line-height: 150%;
  letter-spacing: -0.04em;
}
.text-pickup {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: #878A8F;
  margin: 0px;
}
.need-help {
  font-weight: 500;
  font-size: 12px;
  line-height: 120%;
  color: #878A8F;
}
.shipping-box {
  cursor: pointer;
  min-height: 120px;
  background-color: #ffffff;
  margin-bottom: 32px;
  border: 3px solid #fff;
  box-sizing: border-box;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.05);
}
.shipping-box:hover {
  background-color: #EAF4DC;
  border: 3px solid #96C950;
}
.active-shipping-box {
  background-color: #EAF4DC;
  border: 3px solid #96C950;
  box-sizing: border-box;
  border-radius: 4px;
  min-height: 120px;
  margin-bottom: 32px;
}
.active-shipping-box-icon {
  position: absolute;
  right: -1px;
  top: -1px;
  transform: rotate(90deg);
  height: 0;
  width: 0;
  border-bottom: 60px solid transparent;
  border-left: 60px solid #96C950;
  float: left;
  z-index: 1;
}
.active-shipping-box-icon::before {
  content: url(https://i.ibb.co/5Tk0hrY/Vector-Stroke.png);
  position: relative;
  z-index: 2;
  left: -40px;
  top: 15px;
  background-color: #0000;
  display: block;
  transform: rotate(-90deg);
}
.inner-shipping {
  padding: 24px 9px;
}
.columns-shipping {
  display: flex;
  flex: 1;
}
.main-shipping {
  flex: 1;
  order: 2;
  display: table;
}
.v-align-shipping {
  display: table-cell;
  vertical-align: middle;
}
.main-shipping h1 {
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #000000;
  padding-left: 16px;
  margin-bottom: 8px !important;
}
.main-shipping p {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #525252;
  padding-left: 16px;
  margin-bottom: 0px;
}
.main-shipping p span {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #000000;
  float: right;
}
.sidebar-first {
  width: auto;
  order: 1;
}
.sidebar-first img {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0px 0px 5px rgba(82, 82, 82, 0.08)) drop-shadow(0px 10px 40px rgba(82, 82, 82, 0.1));
}
.container-back {
  width: 100%;
  height: 86px;
  background-color: #FFFCEC;
}
.footer-back {
  background-color: #FFFCEC;
  padding-top: 20px;
}
.btn-back-desktop {
  margin-top: 20px;
  margin-bottom: 0px;
  margin-right: 0px;
  width: 44px;
  background-color: #FFFFFF;
  border: 1px solid #E3E9ED;
  border-radius: 56px;
  font-size: 22px;
  padding: 0px;
  text-align: center;
  line-height: 36px;
  color: #525252;
}
.btn-back-desktop > i {
  margin-top: 0px !important;
}
.icon-arrow-left:before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  border: solid #000000;
  border-width: 1px 0px 0px 1px;
  display: inline-block;
  padding: 4px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  margin-left: 4px;
}
.hide-on-desktop {
  display: none !important;
}
.custom-control-description {
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: -0.02em;
  color: #525252;
}
.dados-faturacao {
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #000000;
}
.btn-guardar {
  background-color: #ffffff !important;
  border: 1px solid #E3E9ED !important;
  border-radius: 50px !important;
  color: #9DA9B9 !important;
  font-weight: 700;
  font-size: 15px;
  line-height: 15px !important;
  letter-spacing: -0.02em;
  padding: 14px 40px !important;
  text-transform: inherit !important;
}
.btn-guardar:hover {
  background-color: #96C950 !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  border-radius: 50px !important;
  box-shadow: 0px 3px 30px rgba(82, 82, 82, 0.15);
  color: #ffffff !important;
}
.adress-box {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  background-color: #ffffff;
  margin: 0px 12px;
}
.text-capitalize {
  text-transform: capitalize;
}
.selecionar {
  display: inline-block;
  padding-top: 24px;
  cursor: pointer;
}
.selecionar p {
  margin-left: 22px;
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #525252;
  margin-bottom: 0px;
}
.horario {
  display: inline-block;
  /*padding-left: 24px;*/
  cursor: pointer;
  margin-top: 10px;
}
.horario p {
  margin-left: 22px;
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #525252;
  margin-bottom: 0px;
}
.selecionar-icon {
  display: inline-block;
  background-image: url(/img/icon-selecionar.svg);
  width: 16px;
  height: 16px;
  margin-right: 10px;
  position: absolute;
}
.horario-icon {
  display: inline-block;
  background-image: url(/img/icon-horario.svg);
  width: 16px;
  height: 16px;
  margin-right: 10px;
  position: absolute;
}
.pickup-search-text {
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #878A8F;
}
.pickup-search {
  padding-right: 16px;
  padding-bottom: 32px;
  position: relative;
}
.search-field {
  position: relative;
}
.search-field button {
  border: none;
  background: none;
  position: absolute;
  top: 14px;
  right: 20px;
  cursor: pointer;
}
.w-50-rita {
  width: 50%;
}
.card-new {
  height: 132px;
  padding: 0px 0px !important;
  border-bottom-color: transparent;
}
.card-new h6 {
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 700;
  font-size: 20px;
  line-height: 132px;
  letter-spacing: -0.02em;
  color: #525252 !important;
}
.card-new h6 a {
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 700;
  font-size: 20px;
  line-height: 132px;
  letter-spacing: -0.02em;
  color: #525252 !important;
}
.card-new button {
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 700;
  font-size: 20px;
  line-height: 132px;
  letter-spacing: -0.02em;
  color: #525252 !important;
  padding: 0px;
}
.card-new h6 img {
  border-radius: 4px;
  margin-right: 16px;
  margin-left: 20px;
}
.btn-success-checkout {
  background-color: #96C950 !important;
  width: 190px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  line-height: 18px !important;
  letter-spacing: -0.02em !important;
  color: #FFFFFF !important;
}
.btn-success-checkout:hover {
  background-color: #1E8E20 !important;
}
.cc-form-field {
  font-family: 'DM Sans', sans-serif !important;
  padding: 24px 24px;
  border: 1px solid #E3E9ED;
  border-radius: 4px;
  background-color: #fff;
  color: #525252;
  font-weight: 500;
  font-size: 15px;
}
.title-sucesso {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: #000000;
}
.info-pagamento {
  background: #FFFFFF;
  box-shadow: 0px 2px 15px rgb(0 0 0 / 5%);
  border-radius: 4px;
  padding: 16px;
}
.info-pagamento h5 {
  font-weight: 700;
  font-size: 16px;
  line-height: 36px;
  letter-spacing: -0.02em;
  color: #525252;
  margin-bottom: 12px;
}
.info-pagamento img {
  max-height: 36px;
  width: auto;
  margin-right: 8px;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 5%);
  border-radius: 4px;
}
.info-pagamento p {
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #878A8F;
  text-align: left;
  margin: 8px 0px 0px 0px;
}
.info-pagamento p span {
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  float: right;
  letter-spacing: -0.06em;
  color: #525252;
}
.frase-cancelamento {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.03em;
  color: #878A8F;
  padding-top: 8px;
}
.name-success {
  font-weight: 700 !important;
  font-size: 18px !important;
  line-height: 120% !important;
  letter-spacing: -0.02em !important;
  color: #525252 !important;
  padding-bottom: 10px;
}
.h100-box {
  height: calc(100% - 30px);
}
.table-order-complete thead th {
  border-bottom: none !important;
  padding: 32px 0px 8px 0px !important;
  border-width: 0px !important;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: #000000;
}
.table-order-complete tbody tr {
  background: #FFFFFF;
  box-shadow: 0px 0px 15px rgb(0 0 0 / 5%);
  border-radius: 4px;
}
.shopping-cart .product-item {
  display: table;
  width: 100%;
  min-width: 150px;
  margin-top: 5px;
  margin-bottom: 3px;
}
.shopping-cart .table-order-complete .product-item .product-thumb {
  width: 110px !important;
  padding-right: 0px !important;
  display: table-cell;
  vertical-align: top;
}
.shopping-cart .table-order-complete .product-item .product-thumb > img {
  max-width: 110px !important;
  height: auto;
}
.shopping-cart .product-item .product-thumb > img {
  display: block;
  width: 100%;
}
.shopping-cart .product-item .product-info {
  display: table-cell;
  vertical-align: top;
}
.shopping-cart .table-order-complete .product-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  color: #2A203D;
  margin-top: 20px;
  padding-top: 10px;
  margin-bottom: 0px;
}
.shopping-cart .product-item .product-title > a {
  -webkit-transition: color .3s;
  transition: color .3s;
  color: #2b2b2b;
  line-height: 1.5;
  text-decoration: none;
}
.shopping-cart .table-order-complete .product-item .product-info p {
  font-weight: 500;
  font-size: 14px !important;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: #525252;
}
.shopping-cart .table-order-complete .product-item .product-info p span {
  display: initial !important;
  color: #9DA9B9;
  font-size: 14px;
}
.text-price-cart-success {
  font-weight: 700 !important;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.03em;
  color: #000000;
  margin-right: 40px !important;
}
.btn-back-to-shop {
  background-color: #FFFFFF;
  border: 1px solid #E3E9ED;
  border-radius: 56px;
  font-weight: 700;
  font-size: 15px;
  line-height: 44px;
  letter-spacing: -0.02em;
  color: #525252;
  min-width: 210px;
  margin-left: 0px;
  margin-top: 15px;
  margin-right: 0px;
}
.btn-back-to-shop-mobile {
  background-color: #FFFFFF;
  border: 1px solid #E3E9ED;
  border-radius: 56px;
  font-weight: 700;
  font-size: 15px;
  line-height: 44px;
  letter-spacing: -0.02em;
  color: #525252;
  min-width: 210px;
  margin-left: 0px;
}
.btn-end-order {
  background-color: #96C950;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 3px 30px rgba(82, 82, 82, 0.15);
  border-radius: 56px;
  font-weight: 700;
  font-size: 15px;
  line-height: 44px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  text-shadow: 0px 1px 3px rgba(82, 82, 82, 0.2);
  min-width: 210px;
}
.btn-end-order:hover {
  background-color: #1E8E20;
  color: #FFFFFF !important;
}
.category-points {
  position: absolute;
  left: 135px;
  top: 2px;
  width: 100%;
}
.icon-points-category {
  background: url(/img/points-grey.svg) no-repeat center;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 0px;
}
.icon-points-category-red {
  background: url(/img/points-red.svg) no-repeat center;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 0px;
}
.icon-points-category-orange{
  background: url(/img/points-orange.svg) no-repeat center;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 0px;
}
.view_more_points_super_vegan {
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.03em !important;
  font-feature-settings: 'ss04' on, 'ss02' on;
  color: #9DA9B9 !important;
}
a.category-points-text {
  margin: 0px;
  display:none;
}
a.category-points-text.active{
  margin: 0px;
  display:block;
}
.category-points-text {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: -0.03em;
  color: #9B7836;
  padding-left: 20px;
  font-family: 'Barlow';
}
.category-points-text:hover {
  color: #525252;
  text-decoration: underline;
}
.category-points-product {
  position: relative;
  margin-right: 18px;
}
.category-points-product_margin {
  margin-top: 3px;
}
.category-points-text-2 {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.02em;
  color: #878A8F;
}
.points-title {
  font-weight: 700;
  font-size: 30px;
  line-height: 110%;
  letter-spacing: -0.04em;
  color: #069145;
}
.points-subtitle {
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: #08B556;
}
.points-text-modal {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #525252;
  padding-top: 16px;
}
a.points-link {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  text-decoration-line: underline;
  color: #525252;
  padding-top: 16px;
}
.card-new h5 a {
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 500;
  font-size: 18px;
  line-height: 105px;
  letter-spacing: -0.02em;
  color: #000000 !important;
  padding-left: 30px;
}
.card-new h5 p {
  margin: 0 0 0px;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: -0.01em;
  color: #878A8F;
  padding-top: 16px;
}
.card-new h5 img {
  box-shadow: 0px 0px 10px rgb(0 0 0 / 5%);
  border-radius: 4px;
  margin-right: 16px;
}
.h-100-points {
  height: 105px !important;
}
.metodo-pagamento {
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: #000000;
  padding-top: 32px;
  padding-bottom: 24px;
  margin: 0 0 0px;
}
.pad-48 {
  padding: 32px 48px !important;
}
.text-credito {
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #525252;
  display: inline-block;
}
.text-credito-2 {
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #525252;
  display: inline-block;
}
.text-credito span {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #000000;
}
.text-credito-pontos {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #878A8F;
  display: inline-block;
  float: right;
}
.text-credito-pontos-2 {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #878A8F;
  display: inline-block;
  float: right;
}
.amount-selector {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.02em;
  color: #878A8F;
  border: 1px solid #9DA9B9;
  border-radius: 56px;
  padding: 12px 24px;
  background-color: #ffffff;
  filter: drop-shadow(0px 3px 30px rgba(82, 82, 82, 0.05));
  text-align: center;
  cursor: pointer;
}
.amount-selector:hover {
  color: #525252;
  border: 1px solid #96C950;
  background-color: #EAF4DC;
}
.amount-selector:active {
  color: #ffffff;
  border: 1px solid #96C950;
  background-color: #96C950;
}
.margin-bt-center {
  margin-left: 8px;
  margin-right: 8px;
}
.new-form-control {
  padding: 20px 22px !important;
  border-radius: 0px !important;
  line-height: 44px !important;
  height: 44px;
  min-width: 320px
}
.ml-8px {
  margin-left: 8px;
}
.btn-usar {
  background-color: #FFFFFF;
  border: 1px solid #E3E9ED;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: #9DA9B9;
  width: unset;
}
.btn-usar:hover {
  background-color: #96C950;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 3px 30px rgba(82, 82, 82, 0.15);
  color: #ffffff;
}
.btn-usar.btn-usar-change-color {
  background-color: #96C950;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 3px 30px rgba(82, 82, 82, 0.15);
  color: #ffffff;
}
.amount-selector {
  width: initial;
}
.mr-mobile {
  margin-right: 8px !important;
}
.container-form-valor {
  flex-grow: 1;
  padding-top: 0px;
}
span.pontos-usados {
  background: url(/img/pontos-usados.svg) no-repeat center;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  display: inline-block;
  position: relative;
  top: 2px;
}
.valor-descontado {
  width: 100%;
  line-height: 48px;
  border: 2px solid #96C950;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: #1E8E20;
  padding-left: 20px;
  /*background: url(/img/balde-lixo.png) no-repeat center right 20px;*/
  cursor: pointer;
}
.h100-box-2 {
  height: 100%;
}
.icon-orders-myaccount {
  background: url(/img/icon-orders.svg) no-repeat left;
  width: 16px;
  height: 16px;
  position: relative;
  left: 0px;
  padding: 0px;
  top: -1px;
}
.icon-points-myaccount {
  background: url(/img/points-grey-my-account.svg) no-repeat left;
  width: 16px;
  height: 16px;
  position: relative;
  left: 0px;
  padding: 0px;
  top: -1px;
}
.icon-personaldata-myaccount {
  background: url(/img/icon-personaldata.svg) no-repeat left;
  width: 16px;
  height: 16px;
  position: relative;
  left: 0px;
  padding: 0px;
  top: -1px;
}
.icon-address-myaccount {
  background: url(/img/icon-address.svg) no-repeat left;
  width: 16px;
  height: 16px;
  position: relative;
  left: 0px;
  padding: 0px;
  top: -1px;
}
.icon-password-myaccount {
  background: url(/img/icon-password.svg) no-repeat left;
  width: 16px;
  height: 16px;
  position: relative;
  left: 0px;
  padding: 0px;
  top: -1px;
}
.icon-logout {
  background: url(/img/icon-logout.svg) no-repeat left;
  width: 16px;
  height: 16px;
  position: relative;
  left: 0px;
  padding: 0px;
  top: -1px;
}
.icon-customer-myaccount {
  background: url(/img/icon-customer.svg) no-repeat left;
  width: 16px;
  height: 16px;
  position: relative;
  left: 0px;
  padding: 0px;
  top: -1px;
}
.icon-notification-myaccount {
  background: url(/img/icon-notification.svg) no-repeat left;
  width: 16px;
  height: 16px;
  position: relative;
  left: 0px;
  padding: 0px;
  top: -1px;
}
.icon-admin-myaccount {
  position: relative;
  top: -3px;
}
.icon-globe {
  position: relative;
  top: -3px;
}
.list-myaccount {
  font-family: 'Barlow';
  font-weight: 500 !important;
  font-size: 15px !important;
  line-height: 18px;
  letter-spacing: -0.02em;
  color: #684E33;
}
.list-myaccount i {
  color: #525252;
  width: 20px;
}
.list-group-item-new-padding {
  padding: 18px 24px !important;
}
.bt-sair {
  padding-left: 40px;
  padding-right: 40px;
  margin-top: 24px !important;
}
.margin-my-account {
  margin-top: 4.5rem!important;
}
a.list-group-item.list-group-item-new-padding:hover {
  background-color: ##FBF6EC;
}
a.list-group-item.list-group-item-new-padding:hover span.list-myaccount {
  color: #525252;
}
a.list-group-item.list-group-item-new-padding:hover i.icon-globe {
  filter: invert(37%) sepia(85%) saturate(658%) hue-rotate(9deg) brightness(95%) contrast(88%);
}
a.list-group-item.list-group-item-new-padding:hover i.icon-orders-myaccount {
  filter: invert(37%) sepia(85%) saturate(658%) hue-rotate(9deg) brightness(95%) contrast(88%);
}
a.list-group-item.list-group-item-new-padding:hover i.icon-points-myaccount {
  filter: invert(37%) sepia(85%) saturate(658%) hue-rotate(9deg) brightness(95%) contrast(88%);
}
a.list-group-item.list-group-item-new-padding:hover i.icon-personaldata-myaccount {
  filter: invert(37%) sepia(85%) saturate(658%) hue-rotate(9deg) brightness(95%) contrast(88%);
}
a.list-group-item.list-group-item-new-padding:hover i.icon-address-myaccount {
  filter: invert(37%) sepia(85%) saturate(658%) hue-rotate(9deg) brightness(95%) contrast(88%);
}
a.list-group-item.list-group-item-new-padding:hover i.icon-password-myaccount {
  filter: invert(37%) sepia(85%) saturate(658%) hue-rotate(9deg) brightness(95%) contrast(88%);
}
a.list-group-item.list-group-item-new-padding:hover i.icon-customer-myaccount {
  filter: invert(37%) sepia(85%) saturate(658%) hue-rotate(9deg) brightness(95%) contrast(88%);
}
a.list-group-item.list-group-item-new-padding:hover i.icon-partner-my-account {
  filter: invert(37%) sepia(85%) saturate(658%) hue-rotate(9deg) brightness(95%) contrast(88%);
}
a.list-group-item.list-group-item-new-padding:hover i.icon-notification-myaccount {
  filter: invert(37%) sepia(85%) saturate(658%) hue-rotate(9deg) brightness(95%) contrast(88%);
}
a.list-group-item.list-group-item-new-padding:hover i.icon-admin-myaccount {
  filter: invert(37%) sepia(85%) saturate(658%) hue-rotate(9deg) brightness(95%) contrast(88%);
}
a.list-group-item.list-group-item-new-padding:hover i.icon-heart {
  filter: invert(37%) sepia(85%) saturate(658%) hue-rotate(9deg) brightness(95%) contrast(88%);
}

a.list-group-item.list-group-item-new-padding.active {
  background-color: #fff2e1;
}
a.list-group-item.list-group-item-new-padding.active span.list-myaccount {
  color: #525252;
}
a.list-group-item.list-group-item-new-padding.active i.icon-globe {
  filter: invert(37%) sepia(85%) saturate(658%) hue-rotate(9deg) brightness(95%) contrast(88%);
}
a.list-group-item.list-group-item-new-padding.active i.icon-orders-myaccount {
  filter: invert(37%) sepia(85%) saturate(658%) hue-rotate(9deg) brightness(95%) contrast(88%);
}
a.list-group-item.list-group-item-new-padding.active i.icon-points-myaccount {
  filter: invert(37%) sepia(85%) saturate(658%) hue-rotate(9deg) brightness(95%) contrast(88%);
}
a.list-group-item.list-group-item-new-padding.active i.icon-personaldata-myaccount {
  filter: invert(37%) sepia(85%) saturate(658%) hue-rotate(9deg) brightness(95%) contrast(88%);
}
a.list-group-item.list-group-item-new-padding.active i.icon-address-myaccount {
  filter: invert(37%) sepia(85%) saturate(658%) hue-rotate(9deg) brightness(95%) contrast(88%);
}
a.list-group-item.list-group-item-new-padding.active i.icon-password-myaccount {
  filter: invert(37%) sepia(85%) saturate(658%) hue-rotate(9deg) brightness(95%) contrast(88%);
}
a.list-group-item.list-group-item-new-padding.active i.icon-customer-myaccount {
  filter: invert(37%) sepia(85%) saturate(658%) hue-rotate(9deg) brightness(95%) contrast(88%);
}
a.list-group-item.list-group-item-new-padding.active i.icon-partner-my-account {
  filter: invert(37%) sepia(85%) saturate(658%) hue-rotate(9deg) brightness(95%) contrast(88%);
}
a.list-group-item.list-group-item-new-padding.active i.icon-notification-myaccount {
  filter: invert(37%) sepia(85%) saturate(658%) hue-rotate(9deg) brightness(95%) contrast(88%);
}
a.list-group-item.list-group-item-new-padding.active i.icon-admin-myaccount {
  filter: invert(37%) sepia(85%) saturate(658%) hue-rotate(9deg) brightness(95%) contrast(88%);
}
a.list-group-item.list-group-item-new-padding.active i.icon-heart {
  filter: invert(37%) sepia(85%) saturate(658%) hue-rotate(9deg) brightness(95%) contrast(88%);
}
.mtop-40px {
  margin-top: 40px;
}
#points-container {
  padding-bottom: 40px;
}
#points-container .table-responsive {
  overflow-x: unset;
}
.header-list-points {
  width: 100%;
  /* padding: 0 0 0 16px; */
  display: flex;
  justify-content: space-between;
  background-color: #FBFAF1;
  margin-bottom: 20px;
  border-radius: 10px;
  padding: 7px 17px;
  align-items: center;
}
.header-list-points-left {
  display: inline-block;
}
.header-list-points-right {
  display: inline-block;
  float: right;
}
.header-list-points-title {
  font-family: garage-gothic, sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  color: #2B1E0F;
  margin: 0 0 0px;
}
.header-list-points-link {
  font-family: 'Barlow';
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.02em;
  text-decoration-line: underline;
  color: #878A8F;

  margin: 0;
}
.header-list-points-total {
  font-family: 'Barlow';
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: #878A8F;
  text-align: right;
  margin: 0;
}
.header-list-points-total-number {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  text-align: right;
  letter-spacing: -0.04em;
  color: #389C23;
  margin: 0 0 0px;
}

.header-list-points-total-points-text {
  font-family: 'Barlow';
  font-weight: 700;
  font-size: 13px;
  line-height: 100%;
  color: #362A19;
  margin-bottom: 2px;
}

.header-list-points-total-points {
  font-family: 'Barlow';
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  color: #5AA846;
  margin-right: 10px;
}

.header-list-points-total-points-see-more {
  font-family: 'Barlow';
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  color: #362A18;
  text-decoration: underline;
}

.header-list-points-total-points-see-more:hover {
  color: #5AA846;
}

.header-list-points-total-points-see-more-image {
  height: 12px;
  margin-left: 3px;
}

.header-list-points-vertical-align {
  display: flex;
  align-items: center;
  min-height: 49px;
}

.header-list-points-my-code-copy {
  background-color: #362A18;
  padding: 6px 8px;
  border-radius: 80px;
  font-family: 'Barlow';
  font-weight: 700;
  font-size: 11px;
  line-height: 100%;
  color: #FFFFFF;
  cursor: pointer;
}

.header-list-points-my-code-copy img {
  margin-left: 3px;
  margin-bottom: 4px;
  height: 14px;
}

.header-list-points-my-code-container-icons {
  margin-top: 5px;
}

.header-list-points-my-code-container-icons a img{
  height: 25px;
}

.header-list-points-share-container {
  background-color: #5AA846;
  border-radius: 10px;
  padding: 20px 30px;
  cursor: pointer;
}

.header-list-points-mobile {
  display: none;
}

.header-list-points-share-container.header-list-points-share-container-modal{
  padding: 0;
  width: 100%;
  margin-bottom: 20px;
  /*display: -webkit-box;*/
  /*display: -ms-flexbox;*/
  /*display: -webkit-flex;*/
  display: flex;
  justify-content: center;
  /*-webkit-box-pack: justify;*/
  /*-webkit-justify-content: space-between;*/
  /*-ms-flex-pack: justify;*/
  /*justify-content: space-between;*/
}

.header-list-points-share-container-border {
  position: relative;
  display: inline-block;
  /*background-image: url(img/share-code-border.png);*/
  background-size: contain;
  background-repeat: no-repeat;
  padding: 0 10px;
  font-family: 'Barlow';
  font-weight: bold;
  font-size: 20px;
  color: white;
}

.header-list-points-share-container-border img {
  position: absolute;
  top: -15px;
  left: -10px;
  z-index: 2;
  pointer-events: none;
}

body.share-code-backdrop .modal-backdrop.show {
  background-color: rgba(0, 0, 0, 0.5); /* ou o tom acinzentado que quiser */
}

.share-code-modal {
  background-color: rgba(0, 0, 0, 0.5);
}
.share-code-modal .modal-dialog {
  max-width: 670px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0 auto;
}

.share-code-modal-content{
  background-color: #5AA846;
  border-radius: 15px;
  text-align: center;
}

.share-code-modal-close-icon {
  position: absolute;
  right: -25px;
  top: -30px;
  cursor: pointer;
}

.share-code-modal-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.share-code-modal-show-code-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 5px 30px;
  gap: 20px;
  width: 80%;
  max-width: 100%;
}

.share-code-modal-show-code-container img {
  width: auto;
}

.header-list-points-share-icon-modal {
  margin-left: 4px;
  margin-bottom: 14px;
  height: 56px;
}

.share-code-modal-personal-code {
  font-family: 'Barlow';
  font-weight: 700;
  font-size: 40px;
  color: #5AA846;
  line-height: 100%;
}

.share-code-modal-copy-code {
  background-color: #5AA846;
  color: white;
  border: none;
  padding: 5px 20px;
  cursor: pointer;
  font-family: 'Barlow';
  font-weight: 700;
  font-size: 40px;
  border-radius: 15px;
  line-height: 1;
}

.share-code-modal-copy-code:hover {
  background-color: #4e963c;
}

.share-code-modal-group-icons {
  margin-top: 20px;
  margin-bottom: 30px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: center;
  -ms-flex-pack: justify;
  justify-content: center;
  gap: 50px;
}

.header-list-points-share-container-border-text-modal {
  font-size: 35px;
  margin-left: 7px;
  letter-spacing: -0.04em;
}

.share-code-modal-inside-container {
  width: 71%;
}

.share-code-modal-main-text {
  font-family: 'Barlow';
  font-weight: bold;
  color: white;
  font-size: 33px;
  letter-spacing: -0.04em;
  line-height: 35px;
}

.share-code-modal-second-text {
  font-family: 'Barlow';
  font-weight: bold;
  color: white;
  font-size: 23px;
  letter-spacing: -0.04em;
  line-height: 35px;
}

.header-list-points-share-megaphone {
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  height: 30px;
}

.header-list-points-share-icon {
  margin-left: 13px;
  margin-bottom: 5px;
  height: 32px;
}

.external-link {
  background: url(/img/external-link.svg) no-repeat center;
  display: inline-block;
  width: 16px;
  height: 16px;
  position: relative;
  left: 5px;
  top: 3px;
  padding: 0px;
}
.external-link-2 {
  background: url(/img/external-link.svg) no-repeat center;
  display: inline-block;
  width: 16px;
  height: 16px;
  position: relative;
  left: 5px;
  top: 2px;
  padding: 0px;
}
table.my-table  {
  background-color: #F7F7F7;
}
table.my-table tbody tr td {
  background-color: #ffffff;
  border-bottom: 6px solid #F7F7F7;

  font-family: 'Barlow';
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.02em;
  color: #2B1E0F;
}
table.my-table tbody tr {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: #525252;
}
table.my-table thead th {
  border-bottom: none;
  border-top: none;

  font-family: 'Barlow';
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.02em;
  color: #2B1E0F;
}
table.my-table td, table.my-table th {
  border-top: none;
}
.color-red {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.03em;
  color: #DD5631;
}
.color-green {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.03em;
  color: #1E8E20;
}
.view-credids {
  margin-top: 40px;
  font-weight: 500;
  font-size: 13px;
  line-height: 150%;
  text-align: center;
  letter-spacing: -0.04em;
  color: #9DA9B9;
}
.load-more {
  padding: 14px 50px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: #525252;
  background-color: #FFFFFF;
  border: 1px solid #E3E9ED;
  border-radius: 50px;
  transition: all 0.2s;
  cursor: pointer;
  margin-top: 20px;
  margin-bottom: 32px;
}
.load-more:hover {
  background-color: #96C950;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 3px 30px rgba(82, 82, 82, 0.15);
  color: #FFFFFF;
}
.progress-points {
  width: 200px;
  margin: auto;
}
.progress-bar-3 {
  height: 2px;
  background-color: #96c950;
}
.faq-container {
  background-color: #F5F5F5;
  padding: 80px 0px;
}
.faq-title {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  font-size: 38px;
  line-height: 110%;
  letter-spacing: -0.03em;
  color: #B98E58;

  padding-right: 40px;
  padding-left: 60px;
  padding-top: 10px;
}
@media (max-width: 992px) {
  .faq-title {
    padding: 0 20px 32px;
  }
}

.accordion {
  position: relative;
  margin: 0px auto;
  width: 100%;
  padding-right: 60px;
}
[id*="open-accordion"], [id*="close-accordion"] {
  line-height: 60px;
  height: 60px;
  display: block;
  margin: 0 auto;
  position: relative;
  width: 99%;
}
[id*="close-accordion"] {
  display: none;
}
.accordion a {
  font-family: 'Barlow';
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: #121212;

  padding-left: 0px;
  text-decoration: none;
  text-shadow: none;
}
.fix-margin-accordeon {
  padding-left: 40px !important;
}
[id*="open-accordion"]:after, [id*="close-accordion"]:after {
  content: "+";
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 999;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  font-size: 40px;
  color: #121212;
}
.target-fix {
  display: block;
  top: 0;
  left: 0;
  position: fixed;
}
.accordion-content {
  font-weight: 400;
  font-size: 14px;
  line-height: 145%;
  letter-spacing: -0.02em;
  color: #756C60;
  height: 0;
  margin: -1px auto 0;
  padding: 0px 35px;
  position: relative;
  overflow: hidden;
  transition: all 0.1s ease;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
}
.accordion-content p {
  font-family: 'Barlow';
  font-weight: 400;
  font-size: 16px;
  line-height: 145%;
  letter-spacing: -0.02em;
  color: #756C60;
}
.accordion span:target ~ .accordion-content {
  display: block;
  height: auto;
  padding-bottom: 0px;
  padding-top: 0px;
  margin-top: -15px;
}
.accordion span:target ~ [id*="close-accordion"] {
  display: block;
}
.accordion span:target ~ [id*="open-accordion"] {
  display: none;
}
.accordion span:target ~ [id*="close-accordion"]:after {
  content: '-';
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
.termos p {
  display: inline-block;

  font-family: 'Barlow';
  font-weight: 400;
  font-size: 14px;
  line-height: 145%;
  letter-spacing: -0.02em;
  color: #756C60;
}
.mobile-table-column {
  float: left;
}
.mobile-table-row {
  background-color: #ffffff;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
  display: inline-block;
  padding: 20px 16px 0px 16px;
}
.mobile-table-row:after {
  content: “”;
  display: table;
  clear: both;
}
.col-right, .col-left {
  width: 25%;
}
.col-middle {
  width: 50%;
  padding-left: 8px;
  padding-right: 8px;
}
.link-order-id {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: #525252;
}
.desktop-lr-margin {
  margin: 40px 16px 0px 16px;
}
.button-payment {
  background:none;
  border:none;
  cursor:pointer;
  width: 100%;
  text-align: left;
}
.btn-shipping-box {
  height: fit-content;
  line-height: initial;
  margin-top: 0px;
  margin-bottom: 0px;
}
.pb24 {
  margin-bottom: 24px !important;
}
.color-alert {
  color: #DD5631 !important;
}
p.message-points {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: #878A8F;
  margin: 15px 0px 0px 0px;
  padding-bottom: 15px;
}
p.message-points span {
  color: #000000;
}
select#country_address {
  padding: 0px 24px !important;
}
select#country_address option {
  color: #000000;
}
.order-number {
  float: right;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.04em;
  color: #9DA9B9;
}
.recomendado-container {
  position: relative;
    width: 100%;
    height: 18px;
}
.recomendado-container p {
  font-weight: 500;
  font-size: 13px;
  color: #525252;
}
.recomendado-container p span {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  color: #2B1E0F;
}

.recomendado-container span {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  color: #2B1E0F;
}
.recomendado {
  font-family: 'Barlow', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  color: #FBF6EC;

  position: absolute;
  right: 0px;
  bottom: 0px;
  height: 18px;
  text-align: center;
  background-color: #389C23;
  padding: 0px 5px 20px 5px;
}
select#countrycreate {
  padding: 0px 24px;
}
select#sendToCountry {
  padding: 0px 24px;
}
select#stores {
  padding: 0px 24px;
}
select#size {
  padding: 0px 24px;
}
select#subject {
  padding: 0px 24px;
}
textarea.form-control {
  padding: 0px 24px;
}
i.icon-bag {
  position: relative;
  top: -4px;
}

a.cat-new-branding {
  color: #2b2b2b !important;
}

/**********************************************MEDIA QUERIES RITA*******************************************************/

@media (max-width:1680px) {
  .pad-lr-80 {
    padding-right: 100px !important;
    padding-left: 100px !important;
  }
}
@media (max-width: 1440px) {
  .product_completo_section_5 .product_completo_relacted_products_carousel_novo .product-card-2 .product-weight {
    font-size: 13px;
  }
  .product_completo_section_5 .product_completo_relacted_products_carousel_novo .product-card-2 .product-badge span {
    font-size: 12px;
  }
  .product_completo_section_5 .product_completo_relacted_products_carousel_novo .product-card-2 .product-badge i {
    font-size: 12px;
  }
  .product_completo_section_5 .product_completo_relacted_products_carousel_novo .product-card-2 h3.product-title {
    font-size: 16px;
  }
  .pad-lr-80 {
    padding-right: 80px !important;
    padding-left: 80px !important;
  }
}
@media (max-width:1280px) {
  .pad-lr-80 {
    padding-right: 70px !important;
    padding-left: 70px !important;
  }
}
@media (max-width: 1024px) {
  .pad-lr-checkout {
    padding-right: 60px !important;
    padding-left: 60px !important;
  }
  .main-navigation-desktop {
    display: none !important;
  }
  .cart-item-footer .icon-points {
    left:20px;
  }
  .cart-item-footer .coupon-tag-icon-small {
    left:20px;
  }
  .product_completo_section_5 .product_completo_relacted_products_carousel_novo .owl-next,
  .product_completo_section_5 .product_completo_relacted_products_carousel_novo .owl-prev {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .product_completo_section_5 .product_completo_relacted_products_carousel_novo .product-card-2 h3.product-title {
    line-height: 1.2;
    letter-spacing: -0.03em;
  }
  .product_completo_section_5 .product_completo_relacted_products_carousel_novo .product-card-2 .product-badge {
    margin-bottom: 1px;
    padding: 0 9px;
    height: 22px;
  }
  .product_completo_section_5 .product_completo_relacted_products_carousel_novo .product-card-2 .product-card-content-wrap {
    padding: 12px;
  }
  .product_completo_section_5 .product_completo_relacted_products_carousel_novo .product-card-2 h3.product-title {
    font-weight: 700;
    letter-spacing: -0.03em;
  }
  .product_completo_section_5 .product_completo_relacted_products_carousel_novo .owl-next,
  .product_completo_section_5 .product_completo_relacted_products_carousel_novo .owl-prev {
    top: 105px;
  }
  .product_completo_section_5 .product_completo_relacted_products_carousel_novo .owl-next.disabled,
  .product_completo_section_5 .product_completo_relacted_products_carousel_novo .owl-prev.disabled {
    opacity: 0;
  }
  .product_completo_section_5 .product_completo_relacted_products_carousel_novo .owl-next i,
  .product_completo_section_5 .product_completo_relacted_products_carousel_novo .owl-prev i {
    position: absolute;
    font-size: 12px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .product_completo_section_5 .product_completo_relacted_products_carousel_novo .owl-prev {
    left: -50px;
  }
  .product_completo_section_5 .product_completo_relacted_products_carousel_novo .owl-prev {
    left: 15px;
  }
  .product_completo_section_5 .product_completo_relacted_products_carousel_novo .owl-next {
    right: -50px;
  }
  .product_completo_section_5 .product_completo_relacted_products_carousel_novo .owl-next {
    right: 15px;
  }
  .product_completo_section_5 .product_completo_relacted_products_carousel_novo .owl-dots {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 16px 24px 16px 0;
  }
  .product_completo_section_5 .product_completo_relacted_products_carousel_novo .owl-dots .owl-dot {
    width: 7px;
    height: 7px;
    border-radius: 20px;
    background: #e3e9ed;
    display: block;
    margin: 0 3px;
  }
  .product_completo_section_5 .product_completo_relacted_products_carousel_novo .owl-dots .owl-dot.active {
    background: #96c950;
  }
  .product_completo_section_5 .product_completo_relacted_products_carousel_novo .owl-dots .owl-dot span {
    display: none;
  }
}
@media (max-width: 576px) {
  .product_completo_youtube_wrap {
    padding-bottom: 180%;
  }

  .shorts-container {
    max-width: 355px !important;
  }

  .header-list-points-total-points-see-more {
    font-size: 9px;
  }
  .header-list-points-share-container {
    width: 100% !important;
    padding: 40px 10px 22px 10px;
    text-align: center;
    margin: 10px 0;
  }

  .header-list-points-share-container-border {
    font-size: 15px;
  }

  .header-list-points {
    display: none !important;
  }
  .header-list-points-mobile {
    display: flex !important;
    padding: 0;
  }

  .header-list-points-total-points-text {
    font-size: 9px;
    margin-bottom: 0;
    margin-top: 10px;
  }

  .header-list-points-vertical-align {
    margin-bottom: -7px;
  }

  .header-list-points-total-points {
    margin-right: 0;
    font-size: 20px;
  }

  .header-list-points-my-code-copy {
    width: 80%;
    display: block;
    text-align: center;
    padding: 2px 0;
    margin-bottom: 10px;
    font-size: 15px;
  }

  .header-list-points-my-code-copy img {
    margin-left: 2px;
    margin-bottom: 0px;
    height: 18px;
    margin-top: -6px;
  }

  .header-list-points-mobile-left-container {
    padding-right: 5px;
    margin-right: 5px;
    border-right: 1px solid #5AA846;
  }

  .share-code-modal-content {
    max-width: 350px !important;
  }

  .share-code-modal-body {
    padding: 0;
    margin: 20px 0;
  }

  .share-code-modal-show-code-container {
    padding: 5px 10px;
  }

  .share-code-modal-personal-code, .share-code-modal-copy-code, .share-code-modal-main-text {
    font-size: 20px;
  }

  .header-list-points-share-container-border-text-modal {
    font-size: 25px;
    letter-spacing: -0.09em;
  }

  .share-code-modal-inside-container {
    width: 80%;
  }

  .share-code-modal-group-icons a img {
    height: 40px;
  }

  .header-list-points-share-icon-modal {
    margin-left: -2px;
    margin-bottom: 0px;
    height: 43px;
    margin-top: -1px;
  }

  .share-code-modal-main-text {
    line-height: 20px;
    margin-bottom: 8px;
  }
  .share-code-modal-second-text {
    font-size: 15px;
    line-height: 25px;
  }

  .hide-on-desktop-bts {
    display: block !important;
  }
  .main-navigation-desktop {
    display: none !important;
  }
  .toolbar_2 .account a i {
    opacity: 0;
  }
  .delivery-box {
    height: auto;
  }
  .free-shipping-font {
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    padding-top: 8px;
  }
  .shopping-cart-header {
    padding-left: 15px;
    padding-right: 15px;
  }
  .shopping-cart-header h1 {
    margin-bottom: 8px !important;
  }
  .cart-item {
    margin-bottom: 1px !important;
    border-radius: 0px !important;
    box-shadow: none;
    border-top: 2px solid #f1f4f6;
  }
  .offcanvas-wrapper {
    background-color: #FCFEFF !important;
    /*margin-top: 74px;*/
  }
  .cart-mobile-detail a {
    line-height: 18px;
  }
  .cart-product-details-unit-price {
    font-size: 14px;
    line-height: 16px;
  }
  .points-text {
    line-height: 14px;
    padding-left: 25px;
  }
  .cart-item-footer .icon-points {
    left: 40px;
  }
  .cupon-text {
    padding-left: 50px;
  }
  .cart-item-footer .coupon-tag-icon-small {
    left: 40px;
  }
  .cupon-input-mobile {
    float: none !important;
    margin-left: 24px;
    margin-right: 24px;
  }
  .cart-item-footer #coupon-input {
    padding-left: 16px;
  }
  .shopping-cart-footer {
    border-top: none !important;
  }
  .padding-bottom-3x {
    padding-bottom: 0px !important;
  }
  .widget-telefone {
    font-size: 14px;
  }
  .text-dark {
    margin-bottom: 8px !important;
  }
  .hide-mobile {
    display: none !important;
  }
  .hide-desktop {
    display: initial !important;
  }
  .product_completo_section_5 .product_completo_relacted_products_carousel_novo .owl-nav {
    display: block;
  }
  .pad-lr-80 {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  .pad-lr-checkout {
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
  .delivery-box-left {
    margin-right: 0px;
  }
  .progress-container {
    box-shadow: none;
    margin-bottom: 1px;
    flex-direction: column-reverse;
  }
  .payment-badges {
    padding-top: 16px;
  }
  .payment-badges-mobile {
    padding-top: 30px;
    display: block;
    text-align: center;
    border-top: 2px solid #e3e9ed;
  }
  #newsdisclaimer {
    padding-bottom: 20px;
  }
  hr.hr-light {
    display: none;
  }
  .widget-title {
    margin-bottom: 10px;
    padding-bottom: 0px;
    font-size: 20px;
    line-height: 24px;
    padding: 0px 0px;
  }
  #newsdisclaimer {
    font-size: 13px;
  }
  .text-direitos-1 {
    font-size: 14px !important;
    line-height: 18px;
    text-align: left;
    padding-top: 16px !important;
  }

  .text-direitos-1.text-direitos-1-center {
    padding: 0 !important;
    margin: 0;
    text-align: center;
    display: block;
    width: 100%;
  }
  .text-direitos-2 {
    font-size: 14px !important;
    line-height: 120%;
    padding-top: 2px !important;
    padding-bottom: 0px !important;
    text-align: left;
  }
  .px-24-footer-mobile {
    padding-left: 24px;
    padding-right: 24px;
  }
  .horas {
    margin-bottom: 8px;
  }
  .widget-mobile {
    margin-bottom: 0px !important;
  }
  .phone-footer-icon-dark {
    display: inline-block;
    background-image: url(/img/ico-phone-footer-dark.svg);
    width: 10px;
    height: 11px;
    margin-right: 8px;
  }
  .email-footer {
    font-size: 14px;
    line-height: 18px;
  }
  .horas {
    font-size: 14px;
    line-height: 18px;
  }
  .dias-semana {
    font-size: 14px;
    line-height: 18px;
  }
  .widget-categories ul > li > a, .widget-links ul > li > a {
    font-size: 14px;
  }
  .hide-on-mobile {
    display: none !important;
  }
  .progressbar-mobile .active {
    width: 22px;
    height: 22px;
    line-height: 22px;
    font-weight: 700;
    font-size: 14px;
    color: #96C950;
    text-align: center;
  }
  .progressbar-mobile div {
    line-height: 22px;
    float: left;
    width: 22px;
    margin-left: 9px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    color: #E3E9ED;
  }
  .page-title-2 {
    margin-top: 24px;
    padding: 0px 9px;
    background-color: #fff;
  }
  .envio-subtitle {
    margin-left: 0px;
    margin-bottom: 0px !important;
  }
  .steps {
    font-family: 'Barlow Condensed';
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    color: #B79A62;
    margin-left: auto;
    letter-spacing: -0.04em;
    float: right;
  }
  .delivery-container {
    flex-direction: column;
    margin-bottom: 0px;
  }
  .delivery-box:first-child {
    margin-right: 0px;
    margin-bottom: 16px;
  }
  .delivery-box:last-child {
    margin-right: 0%;
    margin-bottom: 16px;
  }
  .active-shipping-box {
    margin-bottom: 16px;
    padding-left: 0px;
    padding-right: 0px;
    min-height: auto;
  }
  .shipping-box {
    margin-bottom: 16px;
  }
  .grey-container {
    padding-top: 24px;
  }
  .main-shipping h1 {
    font-size: 15px;
    line-height: 18px;
  }
  .main-shipping p {
    font-size: 14px;
  }
  .main-shipping p span {
    font-size: 14px;
  }
  .hide-on-desktop {
    display: block !important;
  }
  .pb-footer-mobile {
    padding-bottom: 100px;
  }
  img.desaturate {
    padding-top: 0px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 60%;
  }
  .checkout-footer-mobile {
    width: 100%;
    position: fixed;
    bottom: 0px;
    left: 0px;
    height: 84px;
    background-color: #ffffff;
    z-index: 100;
    padding: 0px 24px !important;
    box-shadow: 0px 3px 30px rgba(82, 82, 82, 0.15);
    border-radius: 10px 10px 0px 0px;
  }
  .mobile-bt-container {
    display: flex;
    margin-top: 20px;
  }
  .continue-mobile {
    flex: 1;
  }
  .continue-mobile button span {
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    text-shadow: 0px 1px 3px rgba(82, 82, 82, 0.2);
  }
  .arrow-back-mobile {
    background: #E3E9ED;
    opacity: 0.5;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 56px;
    text-align: center;
    line-height: 34px;
    font-size: 22px;
    margin-right: 20px;
    flex: 1;
    max-width: 44px;
    height: 44px;
  }
  .btn-no-margins {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
    margin-right: 0px !important;
    margin-left: 0px !important;
    width: 100% !important;
  }
  .form-group label {
    font-weight: 500;
    font-size: 13px;
    letter-spacing: -0.04em;
  }
  .form-control {
    /* padding: 12px 12px; */
    border: 1px solid #E3E9ED;
    font-size: 14px;
    line-height: 42px;
    height: 42px;
  }
  .form-group {
    margin-bottom: 16px;
  }
  .btn-guardar {
    background-color: #E3E9ED !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 14px;
  }
  .btn-guardar span {
    color: #9DA9B9 !important;
  }
  .titulo-nova-morada {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.03em;
    color: #000000;
    margin-bottom: 16px;
  }
  .pickup-box {
    margin-right: 0px;
  }
  .w-50-rita {
    width: 100%;
  }
  .price-sharp {
    font-weight: 500 !important;
    font-size: 14px !important;
    line-height: 120% !important;
    color: #2A203D !important;
  }
  .h100-box {
    height: calc(100% - 15px);
  }
  .info-pagamento h5 {
    margin-bottom: 0px;
  }
  .info-pagamento p span {
    font-size: 14px;
    display: block;
    /*padding-top: 6px;*/
    /*padding-bottom: 18px;*/
  }
  .shopping-cart .table-order-complete .product-item .product-info p {
    line-height: 110%;
    color: #2A203D;
  }
  .shopping-cart .table-order-complete .product-title {
    font-size: 14px;
    padding-top: 0px;
  }
  .shopping-cart .table-order-complete .product-item .product-info p {
    font-size: 12px !important;
  }
  .shopping-cart .table-order-complete .product-item .product-info p span {
    font-size: 12px;
  }
  .widget-order-summary {
    margin-left: 0px;
  }
  .mobile-bt-container-2 {
    margin-top: 10px;
  }
  .btn-back-to-shop {
    min-width: 1px;
    width: 48%;
    margin-top: 8px;
    margin-right: 0px;
  }
  .category-points {
    left: 85px;
    top: 3px;
  }
  .category-points-text-mobile {
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: -0.02em;
    color: #878A8F;
    padding-left: 20px;
  }
  .points-title-mobile {
    font-weight: 700;
    font-size: 22px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #069145;
    padding: 51px 22px 0px 22px;
  }
  .points-subtitle-mobile {
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -0.03em;
    color: #08B556;
    padding: 0 22px;
  }
  .points-text-modal-mobile {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: #525252;
    padding: 16px 22px 0px 22px;
  }
  a.points-link-mobile {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: -0.02em;
    text-decoration-line: underline;
    color: #525252;
    padding: 16px 22px 0px 22px;
  }
  .card-new h5 a {
    font-size: 16px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .card-new h5 p {
    font-size: 14px;
    line-height: 16px;
    padding-top: 8px;
    padding-right: 15px;
  }
  .h-100-points {
    height: 90px !important;
  }
  .metodo-pagamento {
    font-size: 20px;
    padding-bottom: 16px;
    margin: 0 0 0px;
  }
  .text-credito {
    display: block;
    text-align: center;
    margin: 0 0 0px;
    line-height: 20px;
  }
  .text-credito-pontos {
    display: block;
    float: none;
    text-align: center;
    line-height: 18px;
  }
  .text-credito-2 {
    display: block;
    margin: 0 0 0px;
    line-height: 20px;
  }
  .text-credito-pontos-2 {
    display: block;
    float: none;
    line-height: 18px;
  }
  .pad-48 {
    padding: 0px 24px !important;
  }
  .sidebar-new.sidebar-new-mobile{
    margin-bottom: 15px;
  }
  .w100-mobile {
    width: 100%;
  }
  .amount-selector {
    border-radius: 4px;
    width: calc(33.3% - 8px);
  }
  .ml-8px {
    margin-left: 0px;
  }
  .container-form-valor {
    padding-top: 8px;
  }
  .btn-usar {
    width: 100%;
    background-color: #96C950;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0px 3px 30px rgba(82, 82, 82, 0.15);
    color: #ffffff;
  }
  .btn-usar-container {
    width: 100%;
    margin-top: 24px;
  }
  .valor-descontado {
    border-radius: 4px;
  }
  .pad-0-mobile {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .user-info-wrapper {
    border: none;
  }
  .margin-my-account {
    margin-top: -24px !important;
  }
  .accordion {
    padding-right: 0px;
  }
  .accordion-content {
    font-size: 13px;
    padding: 0px 5px 0px 5px;
  }
  .faq-title {
    font-size: 28px;
    padding-right: 60px;
    padding-left: 20px;
    padding-top: 0px;
  }
  .termos p {
    display: block;
    float: none !important;
    margin: 0px 0px 5px;
  }
  .faq-container {
    padding: 30px 0px;
  }
  .header-list-points-right {
    display: block;
    float: none;
  }
  .header-list-points-total {
    text-align: left;
  }
  .header-list-points-total-number {
    text-align: left;
  }
  .mtop-40px {
    margin-top: 24px;
  }
  .delivery-container {
    grid-auto-flow: row;
  }
  .pb24 {
    margin-bottom: 16px !important;
  }
  .desktop-lr-margin {
    margin: 40px 0px 0px 0px;
  }
  .icon-complete {
    margin-right: 10px;
  }
  .order-number {
    font-size: 13px;
    color: #878A8F;
  }
  .inner-shipping {
    padding: 8px 8px;
  }
  .open-order-icon {
    text-align: center;
  }
  .no-bottom-border .table tr:last-child > td {
    border-top: none !important;
    padding-top: 4px;
  }
  .no-bottom-border {
    margin-bottom: 8px;
    margin-top: 8px;
  }
  #summary {
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    max-height: 0px;
    border: 0px solid #E3E9ED;
  }
  #summary.isOpen {
    max-height: 500px;
    border: 1px solid #E3E9ED;
  }
  .text-order-subtotal {
    line-height: 100%;
  }
  .card-new {
    height: 112px;
  }
  .card-new button {
    line-height: 112px;
    font-size: 16px;
  }
  .card-new h6 {
    line-height: 112px;
  }
  .card-new h6 img {
    margin-left: 10px;
  }
  .card-new h6 a {
    line-height: 112px;
    font-size: 16px;
  }
  .card-new h5 a {
    line-height: 60px;
  }

}
@media (max-width: 350px) {
  .product_completo_section_5 .product_completo_relacted_products_carousel_novo .product-card-2 .product-weight {
    font-size: 10px;
  }
  .product_completo_section_5 .product_completo_relacted_products_carousel_novo .product-card-2 .product-badge span {
    font-size: 10px;
  }
  .product_completo_section_5 .product_completo_relacted_products_carousel_novo .product-card-2 .product-badge i {
    font-size: 10px;
  }
  .product_completo_section_5 .product_completo_relacted_products_carousel_novo .product-card-2 h3.product-title {
    font-size: 13px;
  }
}
/*rita*/


/* jorge */
.product_completo_featured_points_popup_wrap {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
}
.product_completo_featured_points_popup_wrap.active {
  visibility: visible;
  z-index: 2020;
  opacity: 1;
}
.product_completo_featured_points_popup_wrap
  .product_completo_preparacao_featured_points_title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 110%;
  letter-spacing: -0.04em;
  color: #a9c600;
  padding-left: 22px;
  padding-top: 51px;
  padding-right: 22px;
}
@media (min-width: 768px) {
  .product_completo_featured_points_popup_wrap {
    display: none !important;
  }
}
.product_completo_featured_points_popup_wrap
  .product_completo_featured_points_popup_dark_overlay {
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
}
.product_completo_featured_points_popup_wrap
  .product_completo_featured_points_popup_inner_wrap {
  width: 100%;
  height: auto;
  max-height: calc(100% - 52px);
  position: absolute;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e3e9ed;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 8px 8px 0 0;
}
.product_completo_featured_points_popup_wrap
  .product_completo_featured_points_popup_inner_wrap
  .product_completo_featured_points_popup_carousel_wrap {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-bottom: 25px;
  overflow-y: scroll;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.product_completo_featured_points_popup_wrap
  .product_completo_featured_points_popup_inner_wrap
  .product_completo_featured_points_popup_carousel_wrap::-webkit-scrollbar {
  display: none;
}
.product_completo_featured_points_popup_wrap
  .product_completo_featured_points_popup_title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: #08b556;
  padding: 0 22px 8px;
}
.product_completo_featured_points_popup_wrap
  .product_completo_featured_points_popup_text {
  padding: 0 22px;
  overflow: hidden;
}
.product_completo_featured_points_popup_wrap
  .product_completo_featured_points_popup_text,
.product_completo_featured_points_popup_wrap
  .product_completo_featured_points_popup_text
  p {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #525252;
  margin-bottom: 0;
}
.product_completo_featured_points_popup_wrap
  .close_full_screen_featured_points_popup {
  color: #8a939f;
  position: absolute;
  padding: 5px;
  font-size: 12px;
  top: 23px;
  right: 23px;
}
.product_completo_featured_points_popup_wrap
  .product_completo_featured_points_popup_carousel_wrap {
  height: calc(100% - 114px);
}
.product_completo_featured_points_popup_wrap
  .product_completo_featured_points_popup_carousel {
  overflow: hidden;
}
.product_completo_featured_points_popup_wrap
  .product_completo_featured_points_popup_carousel
  .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.product_completo_featured_points_popup_wrap
  .close_full_screen_featured_points_popup_button {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 56px;
  height: 56px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #fff !important;
  text-shadow: 0 1px 3px rgba(82, 82, 82, 0.2);
  background: #96c950;
  border: 1px solid rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  border-radius: 16px 16px 0 0;
}
.product_completo_featured_points_popup_wrap
  .full_screen_featured_points_popup_navigation_wrap {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 16px 16px 0 0;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  box-shadow: 0 3px 30px rgba(82, 82, 82, 0.15);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.product_completo_featured_points_popup_wrap
  .full_screen_featured_points_popup_navigation_wrap
  .full_screen_featured_points_popup_navigation_next,
.product_completo_featured_points_popup_wrap
  .full_screen_featured_points_popup_navigation_wrap
  .full_screen_featured_points_popup_navigation_prev {
  line-height: 56px;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: #525252;
  padding: 0 24px;
}
.product_completo_featured_points_popup_wrap
  .full_screen_featured_points_popup_navigation_wrap
  .full_screen_featured_points_popup_navigation_next:hover,
.product_completo_featured_points_popup_wrap
  .full_screen_featured_points_popup_navigation_wrap
  .full_screen_featured_points_popup_navigation_prev:hover {
  color: #525252;
}

.product_completo_points_popup_desktop_wrap {
  position: fixed;
  z-index: 9020;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
}
.product_completo_points_popup_desktop_wrap.active {
  visibility: visible;
  z-index: 9999;
  opacity: 1;
}
.product_completo_points_popup_desktop_wrap.active
  .product_completo_points_popup_desktop_inner_wrap {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  opacity: 1;
}
@media (max-width: 767px) {
  .product_completo_points_popup_desktop_wrap {
    display: none;
  }
}
.product_completo_points_popup_desktop_wrap
  .product_completo_points_popup_desktop_dark_overlay {
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
}
.product_completo_points_popup_desktop_wrap
  .product_completo_points_popup_desktop_inner_wrap {
  height: 100vh;
  width: 480px;
  background: #fff;
  padding-top: 70px;
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transform: translate3d(100px, 0, 0);
  transform: translate3d(100px, 0, 0);
  opacity: 0;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.product_completo_points_popup_desktop_wrap
  .product_completo_points_popup_desktop_inner_wrap
  .product_completo_points_popup_desktop_scrollable_section {
  padding-top: 14px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
  overflow-y: scroll;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-left: 48px;
  padding-right: 48px;
}
.product_completo_points_popup_desktop_wrap
  .product_completo_points_popup_desktop_inner_wrap
  .product_completo_points_popup_desktop_scrollable_section::-webkit-scrollbar {
  display: none;
}
.product_completo_points_popup_desktop_wrap
  .close_full_screen_ingredients_desktop_popup {
  font-size: 14px;
  color: #8a939f;
  position: absolute;
  top: 36px;
  right: 36px;
}
.product_completo_points_popup_desktop_wrap
  .close_full_screen_points_desktop_popup {
  font-size: 14px;
  color: #8a939f;
  position: absolute;
  top: 36px;
  right: 36px;
}
.product_completo_points_popup_desktop_wrap
  .product_completo_preparacao_ingredients_desktop_title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 110%;
  letter-spacing: -0.04em;
  color: #a9c600;
  margin-bottom: 36px;
}
.product_completo_points_popup_desktop_wrap
  .product_completo_points_popup_title {
  padding-right: 33px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: #08b556;
  margin-bottom: 0;
}
.product_completo_points_popup_desktop_wrap
  .product_completo_points_popup_text,
.product_completo_points_popup_desktop_wrap
  .product_completo_points_popup_text
  p {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #525252;
  margin-bottom: 0;
}
.product_completo_points_popup_desktop_wrap
  .product_completo_points_popup_item_accordeon_icon {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 4px;
  right: 0;
  cursor: pointer;
}
.product_completo_points_popup_desktop_wrap
  .product_completo_points_popup_item_accordeon_icon:after,
.product_completo_points_popup_desktop_wrap
  .product_completo_points_popup_item_accordeon_icon:before {
  content: "";
  position: absolute;
  background: #525252;
  border-radius: 10px;
}
.product_completo_points_popup_desktop_wrap
  .product_completo_points_popup_item_accordeon_icon:before {
  width: 100%;
  height: 2px;
  top: calc(50% - 1px);
}
.product_completo_points_popup_desktop_wrap
  .product_completo_points_popup_item_accordeon_icon:after {
  left: calc(50% - 1px);
  height: 100%;
  width: 2px;
}
.product_completo_points_popup_desktop_wrap
  .product_completo_points_popup_text_wrap {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  opacity: 0;
}
.product_completo_points_popup_desktop_wrap
  .product_completo_points_popup_item {
  position: relative;
  top: 4px;
  margin-bottom: 30px;
}
.product_completo_points_popup_desktop_wrap
  .product_completo_points_popup_item.active
  .product_completo_points_popup_text_wrap {
  opacity: 1;
  max-height: 900px;
  overflow: hidden;
}
.product_completo_points_popup_desktop_wrap
  .product_completo_points_popup_item.active
  .product_completo_points_popup_item_accordeon_icon:after {
  display: none;
}
.product_completo_points_popup_desktop_wrap
  .full_screen_ingredients_popup_desktop_navigation_wrap {
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 24px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 0 5px rgba(82, 82, 82, 0.08),
    0 10px 40px rgba(82, 82, 82, 0.1);
  box-shadow: 0 0 5px rgba(82, 82, 82, 0.08), 0 10px 40px rgba(82, 82, 82, 0.1);
  border-radius: 16px 16px 0 0;
}
.product_completo_points_popup_desktop_wrap
  .full_screen_ingredients_popup_desktop_navigation_wrap
  .full_screen_ingredients_popup_desktop_navigation_next,
.product_completo_points_popup_desktop_wrap
  .full_screen_ingredients_popup_desktop_navigation_wrap
  .full_screen_ingredients_popup_desktop_navigation_prev {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: -0.02em;
  color: #525252;
  cursor: pointer;
}
.product_completo_points_popup_desktop_wrap
  .product_completo_points_popup_accordeon {
  padding-bottom: 18px;
}
.pb-40 {
  padding-bottom: 40px;
}


/******************************GREEN DAY RITA*************************************/
/*.greenday p {
  margin: 0 0 0px;
}
.img-fluid-greenday {
  width: 100%;
  height: auto;
}

.light-grey {
  background-color: #F4F7F0;
}
.light-green {
  background-color: #E8EFE1;
}
.light-green p {
  font-family: 'Barlow Condensed';
  font-weight: 400;
  font-size: 22px;
  line-height: 120%;
  color: #2B1E0F;
  padding-bottom: 16px;
}
.pt-32 {
  padding-top: 32px;
  padding-bottom: 32px;
  max-width: 1200px;
}
.pt-48 {
  padding-top: 32px;
  padding-bottom: 32px;
  max-width: 1200px;
}
.date-november {
  font-family: garage-gothic, sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 100%;
  color: #f9bd12;
}
.visit-iswari {
  font-family: garage-gothic, sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #A16734;
}
.green-highlight {
  font-family: garage-gothic, sans-serif !important;
  font-weight: 700 !important;
  font-size: 34px !important;
  color: #1E8E20 !important;
  padding-bottom: 0px !important;
}
.center-col-vert {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 32px;
}
.pr-140 {
  padding-right: 140px;
}
.p-all-32 {
  padding: 32px;
}
.bg-newsletter-greenday {
  background-image: url(/img/greenday/bg-newsletter.jpg);
  background-clip: content-box;
  max-height: 512px;
  min-height: 512px;
  background-size: 100%;
}
.bg-newsletter-greenday p {
  font-family: 'Barlow';
  font-weight: 500;
  font-size: 23px;
  line-height: 140%;
  color: #FBF6EC;
}
.title-white-greenday {
  font-family: garage-gothic, sans-serif !important;
  font-weight: 700 !important;
  font-size: 64px !important;
  line-height: 90% !important;
  color: #FBF6EC !important;
  padding-bottom: 16px;
}
.pt-80 {
  padding-top: 80px;
  padding-bottom: 80px;
  max-width: 1200px;
}
.newsletter-greenday input[type=text] {
  width: 100%;
  padding: 16px 20px 16px 52px;
  margin: 6px 0;
  display: inline-block;
  border: 1px solid #E3E9ED;
  border-radius: 8px;
  box-sizing: border-box;
  line-height: 100%;
}
.newsletter-greenday label {
  margin-bottom: 0px;
  font-family: 'Barlow';
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #FBF6EC;
}
.newsletter-greenday-placeholder::-webkit-input-placeholder {
  font-family: 'Barlow';
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #525252;
  opacity: 0.4;
}
.newsletter-greenday-placeholder:-ms-input-placeholder {
  font-family: 'Barlow';
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #525252;
  opacity: 0.4;
}
.newsletter-greenday-placeholder::placeholder {
  font-family: 'Barlow';
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #525252;
  opacity: 0.4;
}
.newsletter-greenday-placeholder:focus {
  outline: none;
}
.fullname-bg {
  background-color: #ffffff;
  background-image: url(/img/greenday/user.svg);
  background-position: 25px 15px;
  background-repeat: no-repeat;
}
.email-bg {
  background-color: #ffffff;
  background-image: url(/img/greenday/mail.svg);
  background-position: 25px 16px;
  background-repeat: no-repeat;
}
.newsletter-greenday input[type=submit] {
  font-family: garage-gothic, sans-serif !important;
  font-weight: 700;
  font-size: 24px;
  width: 100%;
  background-color: #EDDF2A;
  color: #525252;
  padding: 7px 20px;
  margin: 0px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.text-subs-news {
  font-size: 16px !important;
  line-height: 120% !important;
  letter-spacing: -0.02em;
  margin-top: 8px;
}
.checkbox-greenday {
  display: block;
  position: relative;
  margin-top: 14px;
  margin-bottom: 5px !important;
  padding-left: 22px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: 'Barlow' !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 82% !important;
  letter-spacing: -0.02em !important;
  color: #FFFFFF !important;
}
.checkbox-greenday input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  width: 14px;
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 3px;
}
.checkbox-greenday:hover input ~ .checkmark {
  background-color:  transparent;
}
.checkbox-greenday input:checked ~ .checkmark {
  background-color:  transparent;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.checkbox-greenday input:checked ~ .checkmark:after {
  display: block;
}
.checkbox-greenday .checkmark:after {
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.why {
  background-color: #FBF6EC;
  padding: 32px 0px;
}
.why-bg {
  border-radius: 8px;
  background: rgba(255, 176, 32, 0.2);
  z-index: 0;
}
.why img {
  max-width: initial;
  width: 110%;
  position: relative;
  z-index: 10;
  margin-left: 110px;
  margin-top: -80px;
  margin-bottom: -80px;
}
.why-bg .text {
    padding: 80px 80px 80px 180px;
}
.mt-82 {
  margin-top: 82px;
}
.title-why {
  font-family: garage-gothic, sans-serif !important;
  font-weight: 700 !important;
  font-size: 62px !important;
  line-height: 160% !important;
  color: #2B1E0F !important;
  padding-bottom: 30px;
}
.why-bg .text p {
  font-family: 'Barlow Condensed';
  font-weight: 400;
  font-size: 22px;
  line-height: 160%;
  color: #2B1E0F;
  padding-bottom: 40px;
}
.how-bg {
  border-radius: 8px;
  background: rgba(255, 176, 32, 0.2);
  padding: 70px 70px 40px 70px;
  margin-left: 20px;
}
.how-bg p {
  font-family: 'Barlow Condensed';
  font-weight: 300;
  font-size: 25px;
  line-height: 140%;
  color: #2B1E0F;
  padding-bottom: 30px;
}
.pt-24 {
  padding-top: 24px;
}
.title-how {
  font-family: garage-gothic, sans-serif !important;
  font-weight: 700 !important;
  font-size: 52px !important;
  line-height: 140% !important;
  color: #2B1E0F !important;
}
.why-ecosia {
  border-radius: 8px;
  background: rgba(150, 201, 80, 0.2);
  padding: 70px;
  margin-top: 120px;
  margin-right: 20px;
}
.why-ecosia p {
  font-family: 'Barlow Condensed';
  font-weight: 300;
  font-size: 25px;
  line-height: 140%;
  color: #2B1E0F;
}
.sustainable {
  background: url(/img/greenday/bg-sustainable.jpg) no-repeat top;
  background-size: cover;
  min-height: 660px;
  margin-top: 24px;
  margin-bottom: 40px;
}
.sustainable-deals {
  position: relative;
  padding: 80px 80px 80px 80px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 18.8333px -18.8333px 18.8333px rgba(194, 194, 194, 0.176), inset -18.8333px 18.8333px 18.8333px rgba(255, 255, 255, 0.176);
  backdrop-filter: blur(11.4883px);
  border-radius: 8px;
  right: 70px;
  top: 120px;
}
.container-certificates {
  display: flex;
  margin-top: 32px;
  margin-bottom: 32px;
}
.container-certificates .card-certificates {
  display: flex;
  flex-direction: column;
  width: 25%;
  margin: 0px;
  padding-right: 50px;
}
.image-wrapper-certificates {
  height: 56px;
  padding-bottom: 18px;
  position: relative;
}
.text-certificates {
  font-family: garage-gothic, sans-serif !important;
  font-weight: 700 !important;
  font-size: 20px;
  line-height: 100%;
  color: #2B1E0F;
}
.sustainable-title {
  font-family: 'Barlow Condensed';
  font-weight: 700;
  font-size: 38px;
  color: #6FB723;
  line-height: 100%;
  padding-bottom: 32px;
}
.sustainable-subtitle {
  font-family: 'Barlow Condensed';
  font-weight: 700;
  font-size: 32px;
  color: #2B1E0F;
  line-height: 100%;
}
.sustainable-text {
  font-family: 'Barlow Condensed';
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #2B1E0F;
}
.receber-novidades {
  background: #96C950;
  box-shadow: 0px 3px 30px rgba(82, 82, 82, 0.15);
  border-radius: 4px;
  font-family: 'Barlow Condensed';
  font-weight: 500;
  font-size: 18px;
  line-height: 48px;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  text-shadow: 0px 1px 3px rgba(82, 82, 82, 0.2);
  text-align: center;
  margin-top: 32px;
  cursor: pointer;
}
.ecosia-img-title {
  margin-top: -7px;
  margin-right: 7px;
}
@media (max-width: 1680px) {
  .pt-32 {
    max-width: 900px;
  }
  .pt-48 {
    max-width: 900px;
  }
  .pt-80 {
    max-width: 900px;
  }
  .why img {
    width: 130%;
    position: relative;
    z-index: 10;
    margin-left: 30px;
    margin-top: -80px;
    margin-bottom: -80px;
  }
  .why-bg .text {
    padding: 60px 60px 60px 160px;
  }
  .why-bg .text p {
    font-size: 18px;
  }
  .title-why {
    font-size: 52px !important;
  }
  .how-bg {
    padding: 56px 56px 26px 56px;
  }
  .why-ecosia {
    padding: 56px;
  }
}
@media (max-width: 1440px) {
  .why-bg .text p {
    line-height: 130%;
    padding-bottom: 30px;
  }
  .title-why {
    line-height: 120% !important;
  }
  .sustainable-deals {
    padding: 70px 70px 70px 70px;
    top: 100px;
  }
  .why img {
    width: 125%;
  }
}
@media (max-width: 1280px) {
  .why-bg .text p {
    line-height: 120%;
    padding-bottom: 30px;
  }
  .title-why {
    line-height: 120% !important;
  }
  .sustainable-deals {
    padding: 60px 60px 60px 60px;
    top: 80px;
  }
  .why img {
    width: 125%;
  }
}
@media (max-width: 576px) {
  .center-col-vert {
    position: relative;
    top: initial;
    -ms-transform: initial;
    transform: initial;
    padding-right: 32px;
  }
  .when {
    font-size: 16px;
    line-height: 120%;
    padding-left: 24px;
    padding-right: 24px;
  }
  .date-november {
    font-size: 28px;
    line-height: 100%;
    padding-bottom: 16px;
  }
  .visit-iswari {
    font-size: 28px;
    line-height: 100%;
  }
  .save-trees {
    font-size: 28px;
    line-height: 100%;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 15px;
  }
  .pt-48 {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .light-green p {
    font-size: 18px;
  }
  .green-highlight {
    font-size: 28px !important;
    line-height: 90% !important;
  }
  .bg-newsletter-greenday {
    background-image: url(/img/greenday/bg-newsletter-mobile.jpg);
    max-height: initial;
    min-height: initial;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .pt-80 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .pr-140 {
    padding-right: 0px;
  }
  .title-white-greenday {
    font-size: 48px !important;
    padding-left: 9px;
    padding-right: 9px;
  }
  .bg-newsletter-greenday p {
    font-size: 18px;
    padding-left: 9px;
    padding-right: 9px;
  }
  .newsletter-greenday {
    padding-top: 40px;
    padding-left: 9px;
    padding-right: 9px;
  }
  .newsletter-greenday label {
    font-size: 14px;
  }
  .text-subs-news {
    font-size: 14px !important;
    margin-top: 8px !important;
    padding-left: 0px !important;
  }
  .newsletter-greenday input[type=text] {
    border-radius: 2px;
  }
  .checkbox-greenday {
    font-size: 14px !important;
  }
  .newsletter-greenday input[type=submit] {
    font-size: 19px;
  }
  .p-all-32 {
    padding: 16px;
  }
  .why img {
    width: 115%;
    position: relative;
    z-index: 10;
    margin-left: -30px;
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .why {
    background-color: #ffffff;
    padding: 0px 0px 32px 0px;
  }
  .mt-82 {
    margin-top: 0px;
  }
  .pm-mobile {
    margin-right: -14px;
    margin-left: -14px;
    padding-left: 0px;
    padding-right: 0px;
  }
  .pad-mobile {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .why-bg .text {
    padding: 72px 24px 32px 24px;
  }
  .why-bg {
    margin-top: -100px;
  }
  .title-why {
    font-size: 32px !important;
  }
  .title-why img {
    max-height: 32px !important;
  }
  .how-bg {
    padding: 32px 24px 2px 24px;
    margin-left: 0px;
  }
  .title-how {
    font-size: 32px !important;
  }
  .how-bg p {
    font-size: 18px;
    padding-bottom: 30px;
  }
  .pt-24 {
    padding-top: 0px;
  }
  .why-ecosia {
    padding: 32px 24px 32px 24px;
    margin-top: 24px;
    margin-right: 0px;
  }
  .why-ecosia p {
    font-size: 18px;
  }
  .ecosia-img-title {
    margin-top: -2px;
  }
  .sustainable {
    background: url(/img/greenday/bg-sustainable-mobile.jpg) no-repeat top;
    background-size: contain;
    width: 100%;
    height: auto;
    margin-top: 24px;
    margin-bottom: 340px;
    min-height: initial;
  }
  .sustainable-deals {
    padding: 48px 32px 48px 32px;
    top: 340px;
    right: 0px;
  }
  .sustainable-title {
    font-size: 32px;
  }
  .sustainable-subtitle {
    font-size: 24px;
  }
  .container-certificates {
    flex-direction: column;
  }
  .container-certificates .card-certificates {
    flex-direction: row;
    width: 80%;
    padding-right: 0px;
  }
  .image-wrapper-certificates {
    height: 40px;
    max-width: 48px;
    padding-bottom: 0px;
    position: relative;
  }
  .text-certificates {
    line-height: 40px;
    padding-left: 8px;
    padding-bottom: 16px;
  }
  .sustainable-text {
    font-size: 18px;
  }
  .px-mobile {
    padding-left: 30px;
    padding-right: 30px;
  }
}
*/


/******************************REBRAND 2023*************************************/
.no-bg {
  background: transparent !important;
}
.main-navigation-desktop.no-bg .nav_item > a {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: -0.02em;
  color: #525252;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: inline-block;
  padding-bottom: 1px;
  margin-bottom: 17px;
}
.main-navigation-desktop.no-bg .nav_item > a:hover {
  color: #2b1e0f;
  border-bottom: 2px solid #2b1e0f;
}
.offcanvas-wrapper.no-top-margin {
  margin-top: 0px;
}
.product-weight-kg {
  font-family: 'Barlow';
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  color: #9DA9B9;
  padding-top: 4px;
  margin: 0 0 15px;
}
.flex-container {
  display: flex;
  width: 100%;
}
.flex-child {
  display: flex;
  position: relative;
  flex: 1;
}
.flex-child:first-child {
  margin-right: 40px;
}
.flex-child img {
  width: 100%;
  height: auto;
}
.pt-40 {
  padding-top: 40px;
}
.box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px 16px;
  gap: 24px;
  position: absolute;
  width: 200px;
  height: 250px;
  top: 50%;
  transform: translateY(-50%);
  background: #FFFFFF;
  box-shadow: 40px 40px 80px rgba(0, 0, 0, 0.1);
}
.box.left {
  left: -100px;
}
.box.right {
  right: -100px;
}
.img-height {
  min-height: 81px;
}
.double-banner-title {
  font-family: garage-gothic, sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 110%;
  text-align: center;
  color: #2B1E0F;
  margin: 0 0 0px;
}
.bt-ver-loja {
  background: linear-gradient(0deg, rgba(241, 217, 166, 0.6), rgba(241, 217, 166, 0.6)), #FFFFFF;
  border-radius: 2px;
  width: 100%;
  padding: 12px 0px;
  font-family: 'Barlow Condensed';
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  letter-spacing: 0.01em;
  color: #2B1E0F;
  text-shadow: 0px 1px 3px rgba(82, 82, 82, 0.2);
  cursor: pointer;
}

.slideshow-title {
  position: relative;
}
.slideshow-title p {
  font-family: garage-gothic, sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 140.18%;
  color: #2B1E0F;
  padding: 24px 0px;
  margin: 0 0 0px;
}
.slideshow-container {
  /* position: absolute; */
  left: 15px;
}
.slideshow-container-inner {
  position: relative;
  display: flex;
}
.inner-slides {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 240px;
  margin-right: 24px;
}
.inner-slides .title {
  font-family: 'Barlow';
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  font-size: 15px;
  text-transform: uppercase;
  padding-top: 16px;
  margin-bottom: 4px;
}
.inner-slides .text {
  font-family: 'Barlow Condensed';
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  margin: 0px 0px 8px 0px;
}
.inner-slides .sub-text {
  font-family: 'Barlow';
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: #878A8F;
  margin: 0px 0px 8px 0px;
}
.inner-slides a {
  font-family: 'Barlow';
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: #389C23;
}
.dots-container {
  position: absolute;
  right: 0px;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}
.dot {
  height: 10px;
  width: 10px;
  margin: 0 2px;
  border-radius: 50%;
  display: inline-block;
  background-color: transparent;
  border: 1.5px solid #389C23;
  cursor: pointer;
}
.dot-active {
  height: 12px;
  width: 12px;
  margin: 0 2px;
  border-radius: 50%;
  display: inline-block;
  background-color: #389C23;
  position: relative;
  top: 1px;
}
.white-gradient {
  position: absolute;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 20.83%, rgba(255, 255, 255, 0.95) 57.29%, #FFFFFF 100%);
  width: 150px;
  height: 100%;
  z-index: 1;
  right: 0px;
}
.play {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  z-index: 10;
  cursor: pointer;
}
.circle {
  position: absolute;
  background: #FFFFFF;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.04), 0px 20px 25px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}
.circle.one {
  width: 60px;
  height: 60px;
  opacity: 0.8;
  left: 10px;
  top: 10px;
}
.circle.two {
  width: 70px;
  height: 70px;
  opacity: 0.6;
  left: 5px;
  top: 5px;
}
.circle.three {
  width: 80px;
  height: 80px;
  opacity: 0.4;
}
.play .icon {
  position: absolute;
  width: 16px;
  height: 21px;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.title.recipe {
  color: #FFB520;
}
.title.article {
  color: #1E8E20;
}
.title.video {
  color: #D04137;
}
.title.news {
  color: #39B8B3;
}
a.opp-ver-todos {
  font-family: 'Barlow Condensed';
  font-weight: 600;
  font-size: 19px;
  line-height: 44px;
  letter-spacing: 0.01em;
  text-decoration-line: underline !important;
  color: #B98E58 !important;
  opacity: 0.8;
  float: right;
  margin: 0 0 0px;
}
a.bs-ver-todos {
  font-family: 'Barlow Condensed';
  font-weight: 600;
  font-size: 19px;
  line-height: 44px;
  letter-spacing: 0.01em;
  text-decoration-line: underline !important;
  color: #725946 !important;
  opacity: 0.8;
  float: right;
  margin: 0 0 0px;
}
a.cats-ver-todos {
  font-family: 'Barlow Condensed';
  font-weight: 600;
  font-size: 19px;
  line-height: 44px;
  letter-spacing: 0.01em;
  text-decoration-line: underline !important;
  color: #684E33 !important;
  opacity: 0.8;
  float: right;
  margin: 0 0 0px;
}
.divider-opp {
  opacity: 0.3;
}
.cats-pop {
  font-family: garage-gothic, sans-serif;
  font-weight: 700 !important;
  font-size: 34px !important;
  line-height: 140% !important;
  color: #684E33 !important;
}
a.pop-ver-todos {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  letter-spacing: 0.01em;
  text-decoration-line: underline;
  color: #2B1E0F;
  text-shadow: 0px 1px 3px rgba(82, 82, 82, 0.2);
}
.news-container {
  padding: 32px;
}
.news-bg {
  background: url(/img/bg-news-home.svg) no-repeat top;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 480px;
}
.news-title {
  font-family: garage-gothic, sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 90%;
  color: #FBF6EC;
}
.news-subtitle {
  font-family: 'Barlow';
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: #2B1E0F;
}
.pl-24 {
  padding-left: 24px;
}
.news-subscription label {
  display: block;
}
.news-subscription input.input-email {
  font-family: 'Barlow';
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #525252;
  width: 455px;
  padding: 16px 25px 16px 52px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 1px solid #E3E9ED;
  border-radius: 8px;
  background: url(/img/mail-ico.svg) no-repeat 25px 20px, #ffffff;
}
.news-subscription label.label-email {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #2B1E0F;
  margin-bottom: 0px;
}
.news-subscription .submit-news {
  box-sizing: border-box;
  text-align: center;
  padding: 14px 53px;
  gap: 10px;
  width: 455px;
  height: 53px;
  background: #EDDF2A;
  border: 1px solid #EDDF2A;
  border-radius: 4px;
  font-family: garage-gothic, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0.01em;
  color: #525252;
  cursor: pointer;
}
.news-subscription input#email::placeholder {
  font-family: 'Barlow';
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #525252;
  opacity: 0.4;
}
.container-news-check {
  font-family: 'Barlow';
  font-weight: 400;
  font-size: 16px;
  line-height: 12px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  opacity: 0.8;
  position: relative;
  padding-left: 22px;
  margin-bottom: 24px;
  margin-top: 8px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.container-news-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark-promo-check-container {
  margin-bottom: 20px;
}
.checkmark-promo-check-title {
  font-family: 'Barlow';
  font-weight: 400;
  font-size: 16px;
  line-height: 12px;
  letter-spacing: -0.02em;
  color: #000000;
  margin-top: 10px;
}
.checkmark-promo-check-description {
  font-size: 20px !important;
  color: #EEDF2A;
}
.checkmark-promo-check {
  display: inline !important;
}
.checkmark-promo-check-color {
  border:1px solid #EEDF2A !important;
}
.checkmark-promo-check-color:after {
  border: solid #EEDF2A !important;
  border-width: 0 2px 2px 0 !important;
}

.checkmark-news-check {
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  width: 14px;
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 2px;
}
.container-news-check:hover input ~ .checkmark-news-check {
  background-color: #transparent;
}
.container-news-check input:checked ~ .checkmark-news-check {
  background-color: #transparent;
}
.checkmark-news-check:after {
  content: "";
  position: absolute;
  display: none;
}
.container-news-check input:checked ~ .checkmark-news-check:after {
  display: block;
}
.container-news-check .checkmark-news-check:after {
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.large-banner-box-container {
  width: 100%;
  height: 460px;
  top: 50%;
}
.large-banner-box {
  position: absolute;
  width: 660px;
  height: 460px;
  right: 0px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 18.8333px -18.8333px 18.8333px rgba(194, 194, 194, 0.176), inset -18.8333px 18.8333px 18.8333px rgba(255, 255, 255, 0.176);
  backdrop-filter: blur(11.4883px);
  border-radius: 8px;
  padding: 80px;
}
.padding-large-banner {
  padding: 265px 0px 140px 0px;
}
.large-banner-title {
  font-family: 'Barlow Condensed';
  font-weight: 700;
  font-size: 38px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: #389C23;
}
.large-banner-text {
  font-family: garage-gothic, sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: #2B1E0F;
  margin-bottom: 32px;
}
.organic-foods {
  font-family: garage-gothic, sans-serif;
  font-weight: 700;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.01em;
}
.custo-chamada {
  font-family: 'Barlow';
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #FBF6EC;
}
.li-footer {
  font-family: 'Barlow';
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #FBF6EC;
}
.slider-divider {
  position: absolute;
  bottom: -4px;
  left: 0px;
  width: 100%;
  height: auto;
  z-index: 9000;
}
.slider-divider-bottom {
  position: absolute;
  bottom: 44px;
  left: 0px;
  width: 100%;
  height: auto;
  z-index: 9000;
}
.padding-news-box {
  padding: 70px 210px;
}
.px-24 {
  padding-left: 24px !important;
  padding-right: 24px !important;
}
.v-desktop {
  display: block;
}
.v-mobile {
  display: none;
}
.v-mobile-flex {
  display: none !important;
}
.min-height-75 {
  min-height: 75px;
}
.divider-double-block {
  position: absolute;
  top: -12px;
  left: 0px;
  width: 100%;
  height: auto;
  z-index: 9000;
}
.double-block-container {
  width: 100%;
  background-color: #ffffff;
  position: relative;
}
.divider-top-opportunities {
  position: absolute;
  top: 1px;
  left: 0px;
  width: 100%;
  height: auto;
  z-index: 9000;
}
.min-height-opp {
  min-height: 75px;
}
.divider-best-sellers {
  position: absolute;
  top: -3px;
  left: 0px;
  width: 100%;
  height: auto;
  z-index: 9000;
}
.divider-top-cat {
  position: absolute;
  top: -16px;
  left: 0px;
  width: 100%;
  height: auto;
  z-index: 9000;
}
.top-cat-container {
  width: 100%;
  background-color: #ffffff;
  position: relative;
}
.pad-listproducts-mobile-col-1 {
  padding-top: 0px;
  margin-top: 0px;
}
.pad-listproducts-mobile-col-2 {
  padding-top: 0px;
}
.bg-large-banner {
  background-image: url('/img/large-banner.jpg');
  background-size: cover;
  background-position: center;
}
.divider-footer {
  position: absolute;
  top: -12px;
  left: 0px;
  width: 100%;
  height: auto;
  z-index: 900;
}
.banner-about-us {
  background-image: url('/img/banners/about-us-2023.jpg');
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 1065px;
}
.text-banner-about-us {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 140%;
  text-align: center;
  color: #684E33;
  padding-top: 440px;
  max-width: 920px;
}
.when p {
  margin: 0px 0px 0px 0px;
}
.date-november.brown {
  color: #A16734 !important;
}
.date-november.red {
  color: #97191F !important;
}
.pb-8 {
  padding-bottom: 8px;
}
.bg-light-brown {
  background-color: #F6EEDF;
}
.bg-light {
  background-color: #fbf6ec;
  padding-bottom: 73px;
}
.bg-light h1 {
  font-family: 'Barlow Condensed';
  font-weight: 700;
  font-size: 48px;
  line-height: 58px;
  color: #C79B5D;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 72px;
  margin-bottom: 0px;
}
.bg-light p {
  font-family: garage-gothic, sans-serif;
  font-weight: 700;
  font-size: 120px;
  line-height: 89%;
  text-align: center;
  color: #684E33;
  margin: 0 0 0px;
}
.pad-commitment {
  padding: 0px 350px 0px 350px;
}
.bg-commitment {
  background-image: url('/img/bg-commitment.svg');
  background-repeat: no-repeat;
  background-origin: content-box;
  background-position: 350px 75px;
}
.leftdiv {
  background: rgba(241, 217, 166, 0.8);
  width: 35%;
  height: 100%;
  float: left;
  padding: 80px;
}
.centerdiv {
  width: 30%;
  float: left;
}
.rightdiv {
  background: rgba(241, 217, 166, 0.8);
  width: 35%;
  height: 100%;
  float: left;
  padding: 80px;
}
.bg-mission-vision {
  background-image: url('/img/bg-mission-vision.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  height: 550px;
}
.bg-mission-vision-center {
  background-image: url('/img/bg-mission-vision-center.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}
.bg-mission-vision h1.title {
  font-family: 'Barlow Condensed';
  font-weight: 700;
  font-size: 60px;
  line-height: 90%;
  text-align: center;
  color: #2B1E0F;
  margin-bottom: 0px;
}
.bg-mission-vision h2.subtitle {
  font-family: 'Barlow Condensed';
  font-weight: 700;
  font-size: 33px;
  line-height: 90%;
  text-align: center;
  color: #2B1E0F;
  margin-bottom: 0px;
}
.pb-32 {
  padding-bottom: 32px;
}
.bg-mission-vision p.text {
  font-family: 'Barlow Condensed';
  font-weight: 500;
  font-size: 18px;
  line-height: 127%;
  color: #725946;
}
.bg-mission-vision img {
  display: block;
  margin: auto;
  padding-bottom: 18px;
}
.border-none {
  border: none !important;
  background-color: transparent;
}
.packshots-title {
  font-family: garage-gothic, sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
  color: #2B1E0F;
  margin-bottom: 0px !important;
  text-shadow: 0px 1px 3px rgba(82, 82, 82, 0.2);
}
.pad-16px {
  padding: 16px !important;
}
.pad-16px-2 {
  padding: 16px !important;
}
.packshot-img {
  display: table-cell;
  padding: 0px;
}
.packshot-container {
  width: 100%;
  background-color: #FAF5EC;
  position: relative;
  padding-bottom: 72px;
}
.packshot-ver-todos {
  font-family: 'Barlow';
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  letter-spacing: 0.01em;
  text-decoration-line: underline;
  color: #2B1E0F;
}
.main-title-packshots {
  font-family: 'Barlow Condensed';
  font-weight: 700;
  font-size: 36px;
  line-height: 43px;
  color: #C79B5D;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 72px;
}
.bg-values {
  background-color: #F1D9A6;
  padding-bottom: 56px;
}
.main-title-values {
  font-family: 'Barlow Condensed';
  font-weight: 700;
  font-size: 48px;
  line-height: 58px;
  text-align: center;
  color: #A16734;
  margin-bottom: 56px;
  padding-top: 56px;
}
.box-title-values {
  margin-bottom: 16px;
  font-family: 'Barlow Condensed';
  font-weight: 700;
  font-size: 27px;
  line-height: 32px;
  color: #2B1E0F;
}
.box-p-values {
  font-family: 'Barlow Condensed';
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.01em;
  color: #725946;
  padding: 0px;
}
.pr-72 {
  padding-right: 72px;
}
.max-w-values {
  max-width: 1200px;
}
.bg-journey {
  background-color: #79A13D;
  padding-bottom: 192px;
}
.main-title-journey {
  font-family: 'Barlow Condensed';
  font-weight: 700;
  font-size: 48px;
  line-height: 58px;
  color: #FFC44D;
  padding-top: 64px;
  margin-bottom: 48px;
}
.box-title-journey {
  margin-bottom: 8px;
  font-family: garage-gothic, sans-serif;
  font-weight: 700;
  font-size: 45px;
  line-height: 80%;
  color: #FBF6ED;
}
.box-p-journey {
  font-family: 'Barlow Condensed';
  font-weight: 500;
  font-size: 17px;
  line-height: 24px;
  color: #FFFFFF;
}
.pr-25 {
  padding-right: 25px;
}
.bg-2005 {
  background-image: url('/img/2005.svg');
  background-repeat: no-repeat;
  background-size: 100%;
  padding-top: 50px;
}
.bg-2010 {
  background-image: url('/img/2010.svg');
  background-repeat: no-repeat;
  background-size: 100%;
  padding-top: 110px;
}
.bg-arrow-journey {
  background-image: url('/img/arrow-journey.svg');
  background-repeat: no-repeat;
  padding-top: 68px;
}
.bg-2012 {
  background-image: url('/img/2012.svg');
  background-position: left bottom;
  background-repeat: no-repeat;
  padding-bottom: 104px;
}
.bg-2019 {
  background-image: url('/img/2019.svg');
  background-repeat: no-repeat;
  padding-top: 118px;
}
.bg-arrow-2019 {
  background-image: url('/img/arrow-2019.svg');
  background-position: left bottom;
  background-repeat: no-repeat;
  padding-bottom: 147px;
}
.bg-presente {
  background-image: url('/img/presente.svg');
  background-repeat: no-repeat;
  padding-top: 184px;
}
.img-field {
  position: relative;
  display: block;
  margin: auto;
  top: -100px;
  margin-bottom: -100px;
}
.bg-field {
  background-color: #FBF6EC;
}
.bg-best-ingredients {
  background-color: #FBF6EC;
}
.max-1152 {
  max-width: 1152px;
}
.best-ingredients-title {
  font-family: 'Barlow Condensed';
  font-weight: 700;
  font-size: 48px;
  line-height: 58px;
  color: #499A1C;
  padding-bottom: 64px;
  padding-top: 40px;
  text-align: center;
  margin: 0px;
}
.container-ingredients {
  display: flex;
  margin-top: 0px;
  margin-bottom: 32px;
}
.container-ingredients .card-ingredients {
  flex-direction: column;
  width: 25%;
  margin: 0px;
  padding-right: 50px;
}
.container-ingredients-2 {
  display: flex;
  margin-top: 0px;
  margin-bottom: 32px;
}
.container-ingredients-2 .card-ingredients-2 {
  flex-direction: column;
  width: 25%;
  margin: 0px;
  padding-right: 50px;
}
.container-numbers {
  display: flex;
  margin-top: 0px;
  margin-bottom: 48px;
}
.container-numbers .card-numbers {
  flex-direction: column;
  width: 33%;
  margin: 0px;
}
.pb-21 {
  padding-bottom: 21px;
}
.title-ingredients {
  font-family: 'Barlow Condensed';
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #684E33;
  margin-bottom: 8px;
}
.text-ingredients {
  font-family: 'Barlow Condensed';
  font-weight: 300;
  font-size: 18px;
  line-height: 21px;
  color: #684E33;
}
.text-ingredients-2 {
  font-family: 'Barlow Condensed';
  font-weight: 300;
  font-size: 18px;
  line-height: 21px;
  color: #684E33;
}
.title-ingredients-green {
  font-family: 'Barlow Condensed';
  font-weight: 700;
  font-size: 80px;
  line-height: 80px;
  color: #2A941A;
  margin-bottom: 0px;
}
.title-ingredients-green img {
  position: absolute;
  padding-left: 16px;
}
.subtitle-ingredients-green {
  font-family: 'Barlow Condensed';
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  color: #2A941A;
  margin-bottom: 0px;
}
.bg-map {
  background-image: url('/img/map.jpg');
  background-color: #79A13D;
  background-repeat: no-repeat;
  background-position: top right;
  height: 745px;
}
.map-europe {
  max-width: 270px;
  padding-top: 150px;
}
.map-europe h1 {
  font-family: garage-gothic, sans-serif;
  font-size: 90px;
  line-height: 72px;
  color: #2A9546;
  font-weight: 700;
  margin-bottom: 0px;
}
.map-europe h2 {
  font-family: garage-gothic, sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 80%;
  color: #FBF6ED;
  margin-bottom: 16px;
}
.map-europe p {
  font-family: 'Barlow Condensed';
  font-weight: 500;
  font-size: 17px;
  line-height: 24px;
  color: #FFFFFF;
  padding: 0px 0px 16px 0px;
  margin: 0px;
}
.numbers-title {
  font-family: 'Barlow Condensed';
  font-weight: 700;
  font-size: 48px;
  line-height: 58px;
  color: #684E33;
  padding-bottom: 32px;
  padding-top: 45px;
  text-align: center;
  margin: 0px;
}
.title-numbers {
  font-family: garage-gothic, sans-serif;
  font-weight: 700;
  font-size: 88px;
  line-height: 103px;
  color: #725946;
  margin-bottom: 0px;
  position: relative;
}
.subtitle-numbers {
  font-family: 'Barlow Condensed';
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #725946;
  margin-bottom: 0px;
}
.title-numbers img {
  position: absolute;
  padding-left: 12px;
}
.pad-img-1 img {
  top: 23px;
}
.pad-img-2 img {
  top: 22px;
}
.pad-img-3 img {
  top: 28px;
}
.pad-img-4 img {
  top: 26px;
}
.numbers {
  padding-bottom: 45px;
}
.pt-pb-40 {
  padding-top: 40px;
  padding-bottom: 52px;
}
.divider-about-1 {
  position: absolute;
  top: -9px;
  left: 0px;
  width: 100%;
  height: auto;
  z-index: 9000;
}
.divider-about-2 {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: auto;
  z-index: 9000;
}
.container-ingredients .card-ingredients-3 {
  flex-direction: column;
  width: 33%;
  margin: 0px;
}
a.cat-new-branding {
  color: #2b2b2b !important;
}
.text-center-footer {
  text-align: center !important;
}
.v-desktop-1024 {
  display: block;
}
.v-1024 {
  display: none;
}
.hide-on-desktop-1024 {
  display: none !important;
}

.header_2_search_bar {
  min-height: 50px;
  background-color: #FDFBF7;
  padding: 0 15vw;
  display: none;
  padding-top: 2vw;
}

@media (max-width: 820px) {
  .header_2_search_bar {
    padding: 5vw 5vw 0 5vw;
  }
}

.header_2_search_bar_display{
    display: block;
}

.header_2_search_bar .search-bar-title {
  font-family: 'Barlow';
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.02em;
  color: #2B1E0F;
  padding-bottom: 1.2vw;
  margin: 0;
}

.header_2_search_bar .table_search_results {
  width: 100%;
}

.header_2_search_bar .table_search_results tr {
  width: 100%;
  border-bottom: 1px solid #DDD5C0;
}

.header_2_search_bar .table_search_results tr td {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: -0.02em;
  color: #2B1E0F;
  padding: 16px 0px;
  cursor: pointer;
}

.header_2_search_bar .table_search_results tr td:first-child  {
  width: 95%;
}

.header_2_search_bar .table_search_results tr td:nth-child(2)  {
  text-align: right;
}

.header_2_search_bar .table_search_results tr td mark {
  padding: 0;
  background-color: #ECDE20;
}

@media (max-width: 1680px) {
  .news-bg {
    height: 420px;
  }
  .padding-large-banner {
    padding: 210px 0px 90px 0px;
  }
  .banner-about-us {
    height: 930px;
  }
  .text-banner-about-us {
    padding-top: 385px;
    max-width: 850px;
  }
  .pad-commitment {
    padding: 0px 220px 0px 220px;
  }
  .bg-commitment {
    background-position: 250px 75px;
  }
  .max-w-values {
    max-width: 1080px;
  }
}
@media (max-width: 1440px) {
  .header-list-points-share-container {
    width: 50%;
  }

  .header-list-points-share-icon {
    margin-left: 0;
    margin-top: 10px;
  }
  .news-bg {
    height: 360px;
  }
  .padding-large-banner {
    padding: 120px 0px 70px 0px;
  }
  .main-navigation-desktop {
    padding: 0 0px;
  }
  #site_search {
    margin: 0 20px;
  }
  .banner-about-us {
    height: 800px;
  }
  .text-banner-about-us {
    padding-top: 330px;
    max-width: 780px;
  }
  .pad-commitment {
    padding: 0px 144px 0px 144px;
  }
  .bg-commitment {
    background-position: 110px 75px;
  }
  .max-w-values {
    max-width: 1080px;
  }
  .box-title-journey {
    font-size: 42px;
  }
  .map-europe {
    max-width: 250px;
  }
}
@media (max-width: 1366px) {
  .news-bg {
    height: 340px;
  }
  .padding-large-banner {
    padding: 110px 0px 50px 0px;
  }
  .header_2 {
    padding: 8px 24px;
  }
  .header_2 .site-logo2 {
    width: 145px;
  }
  .toolbar_2 .account {
    margin-right: 0;
  }
  .toolbar_2 .account.header-points {
    margin-right: 9px;
  }
  .banner-about-us {
    height: 760px;
  }
  .text-banner-about-us {
    padding-top: 310px;
    max-width: 720px;
    font-size: 22px;
  }
  .bg-light p {
    font-size: 110px;
  }
  .pad-commitment {
    padding: 0px 136px 0px 136px;
  }
  .bg-commitment {
    background-position: 145px 97px;
    background-size: 85%;
  }
  .bg-map {
    background-position: top center;
  }
}
@media (max-width: 1280px) {
  .news-bg {
    height: 320px;
  }
  .padding-large-banner {
    padding: 80px 0px 40px 0px;
  }
  #site_search input[type="text"] {
    max-width: 270px;
  }
    #site_search input[type="text"].addSize {
        max-width: 700px;

    }
  .main-navigation-desktop.no-bg .nav_item > a {
    font-size: 13px;
  }
  .banner-about-us {
    height: 710px;
  }
  .text-banner-about-us {
    padding-top: 290px;
  }
  .pad-commitment {
    padding: 0px 120px 0px 120px;
  }
  .leftdiv {
    padding: 60px;
  }
  .rightdiv {
    padding: 60px;
  }
  .padding-news-box {
    padding: 20px 210px;
  }
}
@media (max-width: 1024px) {
  .delivery-box-right {
    margin-right: 0px;
  }
  .widget-order-summary {
    margin-left: 0px;
    margin-top: 30px;
  }
  .bg-light {
    padding-bottom: 60px !important;
  }
  .text-banner-about-us {
    padding-top: 230px;
    max-width: 620px;
    font-size: 17px;
  }
  .bg-light p {
    font-size: 70px;
  }
  .banner-about-us {
    height: 560px;
  }
  .bg-mission-vision {
    height: 620px;
  }
  .divider-about-1 {
    top: -6px;
  }
  .img-field {
    top: 0px;
  }
  .v-desktop-1024 {
    display: none;
  }
  .v-1024 {
    display: block;
  }
  .text-center-footer {
    text-align: left !important;
  }
  /*.container {
    width: 960px !important;
  }*/
  .divider-footer {
    top: -7px;
  }
  .slider-divider {
    bottom: -5px;
  }
  .widget-categories ul > li > a, .widget-links ul > li > a {
    font-size: 12px;
  }
  .widget-categories ul > li, .widget-links ul > li {
    margin-bottom: 0px;
    padding-left: 10px;
  }
  .widget-links.widget-footer-list ul > li {
    padding-left: 0;
  }
  .widget-telefone {
    font-size: 12px;
  }
  .li-footer {
    font-size: 12px;
  }
  .custo-chamada {
    font-size: 12px;
  }
  .navi-link-light {
    font-size: 12px;
  }
  .text-direitos-1 {
    font-size: 12px !important;
  }
  .text-direitos-2 {
    font-size: 12px;
    padding-bottom: 0px !important;
  }
  .payment-badges {
    margin-top: 15px;
    text-align: left;
  }
  .phone-footer-icon {
    width: 12px;
    height: 12px;
    background-size: 12px;
    background-repeat: no-repeat;
  }
  .email-footer-icon {
    width: 12px;
    height: 11px;
    background-size: 12px;
    background-repeat: no-repeat;
  }
  [class*=" socicon-"]:before, [class^=socicon-]:before, [data-icon]:before {
    font-size: 18px !important;
  }
  .book-mobile {
    max-height: 45px;
  }
  .logo-footer-1024 {
    max-height: 30px;
  }
  .main-navigation-desktop.no-bg .nav_item > a {
    font-size: 12px;
  }
  .toolbar_2 .account a span {
    display: none;
  }
  .toolbar_2 .cart a span {
    display: none;
  }
  .logo-1024 {
    max-width: 100px;
  }
  .header_2 .site-logo2 {
    width: 110px;
  }
  #site_search input[type="text"] {
    max-width: 120px;
  }
  #site_search input[type="text"] {
    padding: 0px 15px 0px 35px;
  }
  #site_search .icomoon-search1 {
    top: 13px;
  }
  .product-card-2 h3.product-title {
    margin-bottom: 10px;
    flex-grow: initial;
  }
  .product-card-2 .product-weight {
    margin-bottom: 8px;
  }
  .product-card-2 .rating_stars.rating_stars_size_2 i {
    font-size: 14px;
  }
  .category-points-1024 {
    position: relative;
    left: 0px;
    top: 0px;
    width: 100%;
  }
  .product-card-2 .rating_stars {
    margin-bottom: 8px;
  }
  .category-points-text {
    margin-bottom: 8px;
  }
  .product-card-2 .product-price {
    font-size: 16px;
  }
  .product_completo_section_1 .produto_completo_price {
    font-size: calc(24px + 6 * ((100vw - 1024px) / 768));
  }
  .product_completo_section_1 .product_completo_ammount_warp .decrease, .product_completo_section_1 .product_completo_ammount_warp .increase {
    width: 24px;
    font-size: 18px;
    line-height: 30px;
    height: 30px;
  }
  .product_completo_section_1 .product_completo_ammount_warp .product_completo_ammount_input {
    line-height: 30px;
    height: 30px;
    width: 20px;
    font-size: 14px;
  }
  .product_completo_section_1 .add_to_cart_desktop {
    font-size: 13px;
    line-height: 30px;
    height: 30px;
    letter-spacing: 0em;
    padding: 0 20px;
    margin-left: 20px;
    min-width: 180px;
  }
  .product_completo_section_1 .product_completo_ammount_warp {
    margin-left: 20px;
  }
  .cart-counter-mobile {
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    text-shadow: 0px 3.6px 9px rgb(0 0 0 / 20%);
    background-color: #1E8E20;
    border: 2px solid #FFFFFF;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    top: 0px;
    right: -5px;
  }
  .checkout-progress-bar {
    padding: 0px 100px;
  }
  .form-control {
    padding: 0px 24px;
  }
  .btn-finalizar {
    margin-left: 7px !important;
  }
  .btn-finalizar:hover {
    margin-left: 0px !important;
  }
  .btn-back-desktop {
    margin-left: 25px;
  }
  .btn-back-desktop:hover {
    margin-left: 25px;
  }
  .owl-prev > i, .owl-next > i {
    font-size: 712px;
    top: -1px;
    left: 0;
  }
  .offcanvas-wrapper.no-top-margin {
    margin-top: -45px;
  }
  .slider-divider-bottom {
    bottom: 30px;
  }
  .box.left {
    left: -30px;
  }
  .box.right {
    right: -30px;
  }
  .min-height-opp {
    min-height: 95px;
  }
  .divider-double-block {
    top: -8px;
  }
  .padding-news-box {
    padding: 40px 60px;
  }
  .news-title {
    font-size: 36px;
  }
  .news-subscription input.input-email {
    width: 415px;
  }
  .news-subscription .submit-news {
    width: 415px;
  }
}

@media (max-width: 1024px) {
  .product_completo_section_1 .product_completo_carousel_wrap {
    width: calc(45% - 30px);
  }
  .btn-finalizar {
    margin-left: 0px !important;
  }
  .product-card-2 .rating_stars.rating_stars_size_1 i {
    margin-right: 1.9px;
    font-size: 13px;
  }
  .sidebar-new {
    width: 100%;
    max-width: 360px;
    margin-top: -140px;
  }
  .sidebar-new-mobile {
    width: 100%;
    max-width: 100%;
    margin-top: 0px;
  }
  .map-europe h1 {
    font-size: 80px;
  }
  .map-europe h2 {
    font-size: 28px;
  }
  .map-europe p {
    font-size: 16px;
  }
  .map-europe {
    max-width: 250px;
    background-color: rgba(104, 78, 51, .8);
    padding-left: 30px;
    padding-right: 30px;
  }
  .title-numbers {
    font-size: 68px;
  }
  .bg-light p {
    font-size: 60px;
  }
  .leftdiv {
    padding: 40px;
  }
  .rightdiv {
    padding: 40px;
  }
  .bg-mission-vision {
    height: 680px;
  }
  .divider-about-1 {
    top: -4px;
  }
  .divider-about-2 {
    top: -2px;
  }
  .banner-about-us {
    height: 430px;
  }
  .news-subscription input.input-email {
    padding: 6px 20px 6px 52px;
    margin: 6px 0;
    background: url(/img/mail-ico.svg) no-repeat 25px 11px, #ffffff;
  }
  .news-subscription .submit-news {
    padding: 10px 38px;
    height: 38px;
    font-size: 18px;
    line-height: 15px;
  }
  .container-news-check {
    margin-bottom: 12px;
    margin-top: 0px;
  }
  .news-subtitle {
    font-size: 16px;
  }
  .news-title {
    font-size: 28px;
  }
  .padding-news-box {
    padding: 20px 20px;
  }
  .news-bg {
    height: 240px;
  }
  .news-container {
    padding: 10px !important;
  }
  .news-subscription input.input-email {
    width: 320px;
  }
  .news-subscription .submit-news {
    width: 320px;
  }
  .divider-double-block {
    top: -6px;
  }
  .checkout-progress-bar {
    padding: 0px 20px;
  }
  /*.hide-on-desktop-1024 .mobile-bt-container {
    max-width: 160px;
  }*/
  /*.container {
    padding-right: 15px !important;
    padding-left: 15px !important;
    width: 720px !important;
    max-width: 100% !important;
  }*/
  .text-banner-about-us {
    padding-top: 180px;
    max-width: 450px !important;
    font-size: 12px;
  }
  .widget-order-summary {
    margin-left: 0px;
  }
  .accordion {
    position: relative;
    margin: 0px auto;
    width: 100%;
    padding-right: 0px;
  }
  .hide-on-desktop-1024 {
    display: block !important;
  }
  .offcanvas-wrapper.no-top-margin {
    margin-top: -45px;
  }
  .slider-divider-bottom {
    bottom: 30px;
  }
}

@media (max-width: 992px) {
  .hide-on-desktop-1024 {
    display: block !important;
  }
  .sidebar-new {
    max-width: 91%;
    margin-top: 0;
  }
  .product-card-2 .rating_stars.rating_stars_size_1 i {
    margin-right: 0;
    font-size: 9px;
  }
}

@media (max-width: 912px) {
  .hide-on-desktop {
    display: block !important;
  }
  .arrow-back-mobile {
    display: none;
  }
  .btn-finalizar {
    margin-left: 0px !important;
  }
  /*.continue-mobile {
    margin-left: 22px;
  }*/
  .sidebar-new-mobile {
    width: 100%;
    max-width: 100%;
    margin-top: 0px;
  }
  .product_completo_section_1 .produto_completo_price {
    font-size: calc(18px + 6 * ((100vw - 1024px) / 768));
  }
  .product_completo_section_1 .product_completo_oldprice {
    font-size: calc(16px + 4 * ((100vw - 350px) / 1090));
  }
  .product_completo_section_1 .add_to_cart_desktop {
    margin-left: 15px;
  }
  .product_completo_section_1 .product_completo_ammount_warp {
    margin-left: 15px;
  }
  .product_completo_section_1 .product_completo_section_1_content_wrap {
    padding-top: 20px;
    width: 55%;
  }
  .product_completo_section_1 .product_completo_section_1_content_wrap .product_completo_name {
    font-size: calc(22px + 8 * ((100vw - 350px) / 1090));
  }
  .product_completo_section_1 .product_completo_caracteristics_item i {
    font-size: 14px;
    margin-right: 6px;
  }
  .product_completo_section_1 .product_completo_caracteristics_item span {
    font-size: 14px;
  }
  .product_completo_section_1 .product_completo_carousel_wrap {
    width: calc(45% - 30px);
  }
  .product_completo_section_1 .product_completo_caracteristics_wrap {
    grid-template-columns: 30% 30% 30%;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
  /*.pad-lr-80 {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }*/
  .product_completo_section_5 {
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 30px;
    margin-top: 30px;
  }
  .sidebar {
    width: 100%;
    max-width: none;
  }
  #site_search input[type="text"] {
    max-width: initial;
  }
  #site_search input[type="text"] {
    width: 100%;
  }
  .sidebar {
    width: 100%;
    max-width: none;
  }
  .widget-order-summary {
    margin-left: 0px;
    margin-top: 30px;
  }
  .btn-back-to-shop-mobile {
    margin-left: 12px;
  }
}


@media (max-width: 767px) {
  .product_completo_section_1 .produto_completo_price {
    font-size: calc(24px + 6 * ((100vw - 1024px) / 768));
  }
  .product_completo_section_1 .product_completo_oldprice {
    font-size: calc(24px + 4 * ((100vw - 350px) / 1090));
}
  .product_completo_section_1 .product_completo_section_1_content_wrap {
    max-width: 100%;
    width: 100%;
    padding: 24px 16px 28px;
    background: #fff;
    border-radius: 16px 16px 0 0;
  }
  .product_completo_section_1 .product_completo_caracteristics_wrap {
    grid-template-columns: 50% 50%;
    grid-column-gap: 16px;
    grid-row-gap: 8px;
  }
  .product_completo_section_1 .product_completo_carousel_wrap {
    padding-bottom: 15px;
    width: 100%;
    position: relative;
  }
  .product_completo_section_1 .product_completo_carousel_wrap .owl-next,
  .product_completo_section_1 .product_completo_carousel_wrap .owl-prev {
    width: 20px;
    height: 20px;
    background: #fff;
    opacity: 0.95;
    -webkit-box-shadow: 0 1px 3px rgba(82, 82, 82, 0.2);
    box-shadow: 0 1px 3px rgba(82, 82, 82, 0.2);
    border-radius: 100px;
    position: absolute;
    top: 50%;
    margin-top: -10px;
    display: block;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
  }
  .product_completo_section_1
    .product_completo_carousel_wrap
    .owl-next.disabled,
  .product_completo_section_1
    .product_completo_carousel_wrap
    .owl-prev.disabled {
    opacity: 0;
  }
  .product_completo_section_1 .product_completo_carousel_wrap .owl-next i,
  .product_completo_section_1 .product_completo_carousel_wrap .owl-prev i {
    position: absolute;
    font-size: 8px;
    color: #000;
    top: 7px;
  }
  .product_completo_section_1 .product_completo_carousel_wrap .owl-prev {
    left: 5px;
  }
  .product_completo_section_1 .product_completo_carousel_wrap .owl-prev i {
    left: 7px;
  }
  .product_completo_section_1 .product_completo_carousel_wrap .owl-next {
    right: 5px;
  }
  .product_completo_section_1 .product_completo_carousel_wrap .owl-next i {
    right: 7px;
  }
  .product_completo_section_1 .product_completo_carousel_wrap .owl-nav {
    display: block !important;
  }
  .product_completo_section_1
    .product_completo_carousel_wrap
    .product_completo_carousel {
    margin-bottom: 8px;
  }
}
.add-to-cart-button-div label.add-to-cart-one-button {
  width: 98% !important;
}
@media (max-width: 560px) {
  .mobile-footer-width {
    width: 50%;
  }
  .add-to-cart-div {
    /*display: block;*/
    padding: 0 !important;
    margin-right: 0 !important;
  }
  .add-to-cart-button-div label {
    font-size: 13px;
    padding: 7px 0 !important;
    width: 85% !important;
    margin: 0 5px !important;
  }
  .add-to-cart-button-div label.add-to-cart-one-button {
    width: 95% !important;
    padding: 7.5px 0 !important;
  }
  .add-to-cart-button {
    padding: 8px 0px !important;
    margin: 1px 0 !important;
  }
  .add-to-cart-button button, .add-to-cart-button a {
    font-size: 13px;
    width: 88%;
  }
  .hidden-double-box-mobile {
    display: none !important;
  }
  .pickup-box {
    flex: 1 0 51%;
  }
  .delivery-box-left {
    margin-bottom: 16px;
  }
  .delivery-box-right {
    margin-bottom: 16px;
  }
  .delivery-box-right {
    height: auto;
  }
  .delivery-box-left {
    height: auto;
  }
  .arrow-back-mobile {
    display: block;
  }
  .widget-order-summary {
    margin-top: 0px;
    margin-bottom: 30px;
  }
  .product_completo_section_1 .product_completo_section_1_content_wrap .product_completo_name {
    font-size: calc(26px + 8 * ((100vw - 350px)/1090));
  }
  .product_completo_section_1 .product_completo_caracteristics_item i {
    font-size: 17px;
  }
  .product_completo_section_1 .product_completo_caracteristics_item span {
    font-size: 15px;
  }
  .pad-left-footer-mobile {
    padding-left: 0px;
  }
  .pt-32-mobile {
    padding-top: 0px;
  }
  .toolbar_2 .account.header-points a i {
    opacity: 1;
    margin-top: 5px;
  }
  .toolbar_2 .account a i {
    opacity: 0;
  }
  .main-navigation-desktop {
    display: none;
  }
  .slider-divider {
    width: 100%;
  }
  .slider-divider-mobile {
    position: absolute;
    bottom: -7px;
    left: 0px;
    width: 100%;
    height: auto;
    z-index: 9000;
  }
  .offcanvas-wrapper.no-top-margin {
    margin-top: -2px !important;
  }
  .slider-divider-bottom {
    bottom: 64px;
    width: 101%;
    left: -1px;
  }
  .slider-divider-bottom-2 {
    position: absolute;
    left: 0px;
    height: auto;
    z-index: 9000;
    bottom: -32px;
    transform: rotate(180deg);
    width: 100%;
  }
  .padding-news-box {
    padding: 35px 70px;
  }
  .news-subscription input.input-email {
    font-size: 13px;
    width: 100%;
  }
  .news-subscription .submit-news {
    width: 100%;
    font-size: 19px;
  }
  .px-24 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .news-title {
    font-size: 42px;
  }
  .news-subtitle {
    font-size: 18px;
  }
  .news-bg {
    background: url(/img/bg-news-home-mobile.svg) no-repeat top;
    background-size: cover;
    min-height: 765px;
  }
  .force-pad-mobile {
    padding: 0px !important;
  }
  .news-subscription label.label-email {
    font-size: 14px;
  }
  .container-news-check {
    font-size: 14px;
  }
  .header_2 {
    border-bottom: 1px solid #FBF6EC !important;
  }
  .v-desktop {
    display: none;
  }
  .v-mobile {
    display: block;
  }
  .v-mobile-flex {
    display: flex !important;
    padding-top: 4px;
    width: 100%;
  }
  .icomoon-truck:before {
    padding-right: 5px;
  }
  .min-height-75 {
    min-height: 70px;
  }
  .owl-carousel .owl-next, .owl-carousel .owl-prev {
    width: 24px;
    height: 24px;
    opacity: 0.95;
    box-shadow: 0px 50px 134px rgba(0, 0, 0, 0.15), 0px 20.8888px 55.982px rgba(0, 0, 0, 0.107828), 0px 11.1682px 29.9307px rgba(0, 0, 0, 0.0894161), 0px 6.26078px 16.7789px rgba(0, 0, 0, 0.075), 0px 3.32505px 8.91114px rgba(0, 0, 0, 0.0605839), 0px 1.38363px 3.70812px rgba(0, 0, 0, 0.0421718);
  }
  .flex-container {
    flex-wrap: wrap;
  }
  .flex-child {
    flex: 100%;
    padding-top: 24px;
    align-items: center;
    justify-content: center;
  }
  .flex-child:first-child {
    margin-right: 0px;
    padding-top: 0px !important;
  }
  .pt-40 {
    padding-top: 26px;
  }
  .box {
    padding: 8px 16px;
    gap: 8px;
    width: 170px;
    height: 150px;
  }
  .double-banner-title {
    font-size: 20px;
  }
  .box.left {
    left: initial;
  }
  .box.right {
    right: initial;
  }
  .img-height {
    min-height: 60px;
    max-height: 60px;
  }
  .img-height img {
    max-height: 60px;
  }
  .bt-ver-loja {
    background: linear-gradient(0deg, rgba(241, 217, 166, 0.6), rgba(241, 217, 166, 0.6)), #FFFFFF;
    border-radius: 1.52239px;
    padding: 9px 0px;
    font-size: 14px;
    line-height: 17px;
    text-shadow: 0px 0.761194px 2.28358px rgba(82, 82, 82, 0.2);
  }
  .divider-double-block {
    top: -1px;
  }
  a.opp-ver-todos {
    font-size: 16px;
    line-height: 42px;
  }
  .container-opp {
    padding-right: 0px;
    padding-left: 0px;
  }
  .divider-opp {
    padding-left: 15px;
    padding-right: 15px;
  }
  .min-height-opp {
    min-height: 90px;
  }
  .divider-best-sellers {
    top: -6px;
  }
  a.bs-ver-todos {
    font-size: 16px;
  }
  .divider-top-cat {
    top: -7px;
  }
  .pad-listproducts-mobile-col-1 {
    padding-top: 32px;
    margin-top: 10px;
  }
  .pad-listproducts-mobile-col-2 {
    padding-top: 32px;
  }
  #recipes-categories .title {
    font-size: 22px;
  }
  .bg-large-banner {
    background-image: url('/img/small-banner.jpg');
    width: 100%;
    height: 0;
  }
  .padding-large-banner {
    padding: 100% 0px 0px 0px;
  }
  .large-banner-box-container {
    height: 380px;
    top: -80px;
    position: relative;
    margin: 0px 16px;
    width: initial;
  }
  .large-banner-box {
    width: 100%;
    padding: 40px 32px;
    position: relative;
  }
  .large-banner-title {
    font-size: 32px;
  }
  .large-banner-text {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .organic-foods {
    padding-top: 16px;
  }
  .divider-footer {
    position: initial;
    width: 100%;
    height: 4px;
  }
  .site-footer {
    padding-top: 24px;
  }
  .pad-left-footer-mobile {
    padding-left: 24px;
  }
  .pt-32-mobile {
    padding-top: 32px;
  }
  .widget-title-2 {
    font-family: 'Barlow Condensed';
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    width: 100%;
    text-align: center;
    color: #FAF4E5;
    padding-top: 24px;
    margin: 0px 0px 0px 0px;
  }
  .social-mobile-container {
    width: 100%;
    text-align: center;
  }
  .site-footer {
    padding-bottom: 32px;
  }
  .banner-about-us {
    background-image: url(/img/banners/about-us-2023-mobile.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 690px;
  }
  .text-banner-about-us {
    font-size: 18px;
    padding-top: 285px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .pad-commitment {
    padding: 0px 0px 72px 0px;
  }
  .bg-light h1 {
    font-size: 24px;
    line-height: 29px;
    padding-top: 24px;
    padding-bottom: 60px;
    margin-bottom: 0px;
  }
  .bg-light p {
    font-size: 48px;
    line-height: 89%;
    margin: 0 0 0px;
  }
  .bg-commitment {
    background-image: url(/img/bio.svg), url(/img/planet.svg);
    background-repeat: no-repeat, no-repeat;
    background-size: unset;
    background-origin: content-box;
    background-position: top 60px left 40px, right 60px bottom 20px;
  }
  .bg-mission-vision-center {
    background-image: url(/img/bg-mission-vision-center-mobile.jpg);
  }
  .bg-mission-vision {
    height: 100%;
    background-image: none;
  }
  .leftdiv {
    width: 100%;
    height: 100%;
    float: none;
    padding: 24px 32px 32px 32px;
  }
  .centerdiv {
    width: 100%;
    float: none;
    height: 560px;
  }
  .rightdiv {
    width: 100%;
    height: 100%;
    padding: 24px 32px 32px 32px;
  }
  .bg-mission-vision h1.subtitle {
    font-size: 52px;
  }
  .bg-mission-vision h2.subtitle {
    font-size: 26px;
  }
  .bg-mission-vision img {
    padding-bottom: 8px;
  }
  .main-title-packshots {
    line-height: 100%;
    text-align: center;
    margin-bottom: 8px;
    padding-top: 32px;
  }
  .packshots-title {
    font-size: 28px;
    line-height: 27px;
  }
  .pad-16px {
    padding: 24px 0px 8px 0px !important;
  }
  .pad-16px-2 {
    padding: 16px 0px 8px 0px !important;
  }
  .packshot-container {
    padding-bottom: 32px;
  }
  .main-title-values {
    font-size: 36px;
    line-height: 100%;
    margin-bottom: 56px;
    padding-top: 48px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .pr-72 {
    padding: 0px 24px 24px 24px;
  }
  .pr-72-mobile {
    padding: 0px 24px 24px 24px;
  }
  .box-p-values {
    padding: 0px 0px 8px 0px;
    margin: 0px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    display: block;
    display: -webkit-box;
    overflow: hidden !important;
    -webkit-line-clamp: 3;
    background-clip: inherit;
  }
  .box-p-journey {
    padding: 0px 0px 8px 0px;
    margin: 0px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    display: block;
    display: -webkit-box;
    overflow: hidden !important;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    background-clip: inherit;
  }
  .show-more {
    font-family: 'Barlow' !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    line-height: 130% !important;
    letter-spacing: -0.02em !important;
    color: #A16734 !important;
  }
  .show-more-2 {
    font-family: 'Barlow' !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    line-height: 130% !important;
    letter-spacing: -0.02em !important;
    color: #F1D9A6 !important;
  }
  .show-more-3 {
    font-family: 'Barlow' !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    line-height: 130% !important;
    letter-spacing: -0.02em !important;
    color: #B98E58 !important;
  }
  .divider-about-1 {
    top: -4px;
    width: 101%;
  }
  .divider-about-2 {
    top: -4px;
    width: 101%;
  }
  .divider-about-4 {
    top: 0px;
    width: 101%;
  }
  .main-title-journey {
    font-size: 36px;
    line-height: 42px;
    padding-top: 48px;
    margin-bottom: 40px;
  }
  .p-24-mobile {
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 54px;
  }
  .bg-2005 {
    background-image: url('/img/2005-mobile.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    padding-top: 65px;
  }
  .bg-2010 {
    background-image: url('/img/2010-mobile.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    padding-top: 95px;
  }
  .bg-2012 {
    background-image: url('/img/2012-mobile.svg');
    background-position: initial;
    background-repeat: no-repeat;
    padding-bottom: initial;
    padding-top: 50px;
  }
  .bg-2019 {
    background-image: url('/img/2019-mobile.svg');
    background-repeat: no-repeat;
    padding-top: 50px;
  }
  .bg-presente {
    background-image: url('/img/presente-mobile.svg');
    background-repeat: no-repeat;
    padding-top: 60px;
  }
  .box-title-journey {
    margin-bottom: 8px;
    font-size: 34px;
  }
  .img-field {
    top: 0px;
    margin-bottom: 0px;
    width: 100%;
    height: auto;
  }
  .best-ingredients-title {
    font-size: 36px;
    line-height: 100%;
    padding-bottom: 32px;
    padding-top: 40px;
  }
  .container-ingredients {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .container-ingredients .card-ingredients-3 {
    width: 80%;
  }
  .title-ingredients-green {
    font-size: 75px;
    line-height: 100%;
  }
  .title-ingredients-green img {
    max-height: 54px;
    margin-top: 12px;
    padding-left: 8px;
  }
  .subtitle-ingredients-green {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .slideshow-standards {
    position: relative;
    overflow: hidden;
    margin: auto;
    width: calc(342px * 4);
    padding-left: 24px;
    background-color: #FBF6EC;
    height: 270px;
  }
  .slideshow-standards .slide {
    display: inline-block;
    float: left;
    padding-right: 32px;
    max-width: 310px;
  }
  .text-ingredients-2 {
    padding: 0px 0px 8px 0px;
    margin: 0px;
    display: -webkit-box;
    max-height: 67px;
    -webkit-box-orient: vertical;
    display: block;
    display: -webkit-box;
    overflow: hidden !important;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    background-clip: inherit;
  }
  .bg-map {
    background-image: none;
    background-color: #79A13D;
    height: initial;
  }
  .map-mobile {
    padding-top: 24px;
    width: 100%;
  }
  .map-europe {
    max-width: initial;
    padding: 40px 0px;
  }
  .map-europe h1 {
    font-size: 68px;
    line-height: 66px;
  }
  .map-europe p {
    padding: 0px 0px 8px 0px;
  }
  .numbers-title {
    font-size: 36px;
    line-height: 100%;
    padding-bottom: 32px;
    padding-top: 40px;
    text-align: left;
  }
  .max-1152 {
    padding: 0px 24px;
  }
  .title-numbers {
    font-size: 54px;
    line-height: 100%;
  }
  .subtitle-numbers {
    font-size: 18px;
    line-height: 25px;
  }
  .container-numbers .card-numbers {
    width: 50%;
    padding-right: 24px;
  }
  .title-numbers img {
    padding-left: 8px;
  }
  .pad-img-1 img {
    top: 7px;
  }
  .pad-img-2 img {
    top: 7px;
  }
  .pad-img-3 img {
    top: 22px;
  }
  .pad-img-4 img {
    top: 8px;
  }
  .numbers {
    padding-bottom: 10px;
  }
  .divider-double-block-mobile {
    top: -5px;
  }
  .cart-counter-mobile {
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    text-shadow: 0px 3.6px 9px rgba(0, 0, 0, 0.2);
    background-color: #1E8E20;
    border: 2px solid #FFFFFF;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    top: -7px;
    right: -15px;
  }
}

@media (max-width: 414px) {
  .news-bg {
    min-height: 605px;
  }
  .centerdiv {
    height: 414px;
  }
  .slideshow-standards {
    width: calc(262px * 4);
  }
  .slideshow-standards .slide {
    max-width: 230px;
  }
}

@media (max-width: 390px) {
  .news-bg {
    min-height: 570px;
  }
  .banner-about-us {
    height: 650px;
  }
  .text-banner-about-us {
    padding-top: 240px;
  }
  .centerdiv {
    height: 390px;
  }
  .slideshow-standards {
    width: calc(247px * 4);
  }
  .slideshow-standards .slide {
    max-width: 215px;
  }
}

@media (max-width: 375px) {
  .news-bg {
    min-height: 550px;
  }
  .text-banner-about-us {
    padding-top: 240px;
  }
  .banner-about-us {
    height: 625px;
  }
  .centerdiv {
    height: 375px;
  }
  .slideshow-standards {
    width: calc(237px * 4);
  }
  .slideshow-standards .slide {
    max-width: 205px;
  }
}

@media (max-width: 350px) {
  .text-banner-about-us {
    padding-top: 225px;
  }
  .banner-about-us {
    height: 585px;
  }
  .centerdiv {
    height: 350px;
  }
  .slideshow-standards {
    width: calc(224px * 4);
  }
  .slideshow-standards .slide {
    max-width: 192px;
  }
}

.alert-cart-shipping-min-value {
  font-family: garage-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
}

.product-completo-badge-tag-de {
  display: none !important;
}

.product-completo-badge-tag-de.active {
  display: block !important;
}

.full_content_warning {
  display: none;
}

.excerpt_warning {
  display: none;
}
.menu-icons {
  margin-right: 7px;
  margin-bottom: 3px;
  height: 16px;
  width: 16px;
}
.see-all-products-menu {
  color: #684E33 !important;
  text-decoration: underline !important;
  text-decoration-color: #684E33 !important;
}
.add-to-cart-div {
  position: relative;
  align-items: end;
  height: 100%;
  justify-content: space-between;
  padding: 0 10px;
  margin-top: -20px;
}

.add-to-cart-button-div {
  width: 100%;
  text-align: center;
}
.add-to-cart-button-div input[type="checkbox"] {
  opacity: 0.01;
  z-index: 100;
}

.add-to-cart-button-div input[type="checkbox"]:checked+label,
.Checked+label {
  background: #E3FADF;
  border: 1px solid #06B01A;
}

.add-to-cart-button-div label {
  font-family: 'DM Sans', sans-serif;
  color: #272424;
  text-align: center;
  padding: 8px;
  border: 1px solid #C1BCBC;
  cursor: pointer;
  z-index: 90;
  width: 93%;
  margin: 0px 10px;
}

.add-to-cart-button-div label:hover {
  background: #E3FADF;
  border: 1px solid #06B01A;
}

.add-to-cart-button {
  padding: 0 9px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-to-cart-button button, .add-to-cart-button a {
  font-family: 'DM Sans', sans-serif;
  background-color: #06B01A;
  color: #FFFFFF;
  text-align: center;
  padding: 8px;
  width: 95%;
  margin: auto;
  border-radius: 3px;
  height: auto;
  line-height: inherit;
}

.add-to-cart-button button:hover, .add-to-cart-button a:hover {
  color: #FFFFFF;
}

.user-order-table {
  text-align: center;
}

.user-order-table table thead tr th {
  text-align: center;
}

.disabled-action {
  pointer-events: none !important;
}

.custom-toast .iziToast-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-modal-logo {
  height: 30px;
  text-align: center;
  width: 100%;
  margin: 20px 0;
}

.login-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #000;
  cursor: pointer;
  height: 20px;
}

.login-modal-btn-auth {
  background-color: #94712f;
  color: white;
  border-radius: 0;
  margin-top: 5px;
}

.login-modal-btn-auth:hover {
  background-color: #94712f;
}

.login-modal-checkbox-remember {
  font-size: 16px;
  color: #3F3F3F;
  font-family: 'Barlow Condensed';
}

.login-modal-checkbox-remember input{
  margin-right: 5px;
}

.login-modal-forget-password {
  font-size: 16px;
  text-decoration: underline;
  color: #3F3F3F;
}

.login-modal-social-icons {
  margin: 15px 0;
}

.login-modal-social-icons p {
  margin: 0;
  font-size: 14px;
  color: #3F3F3F;
}

.login-modal-social-icons-group {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.login-modal-social-icons .btn-social-icon {
  padding: 0;
  margin:  0;
}

.login-modal-social-icons .btn-social-icon img {
  height: 28px;
  margin-right: 5px;
}

.login-modal-social-icons .btn-social-icon i {
  height: 28px;
  font-size: 30px;
  background: conic-gradient(from -45deg, #ea4335 110deg, #4285f4 90deg 180deg, #34a853 180deg 270deg, #fbbc05 270deg) 73% 55%/150% 150% no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-left: 5px;
}

.login-modal-btn-register {
  background-color: #96C950;
  border-radius: 0;
  color: white;
}

.login-modal-btn-register:hover {
  background-color: #96C950;
}

.login-modal-text-newcostumer {
  font-family: 'Barlow Condensed';
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: #2B1E0F;
  margin-bottom: 0;
}

.checkout-modal-dialog {
  max-width: 850px;
}

.checkout-modal-checkout-description {
  font-family: 'Barlow Condensed';
  font-weight: 400;
  font-size: 14px;
  color: #2B1E0F;
  margin-bottom: 15px;
}

.checkout-modal-left-box {
  border-right: 1px solid black;
}

.login-main-text-box {
  text-align: center;
  margin-bottom: 35px;
}

.login-main-text-box .title-delivery {
  font-size: 28px;
}

.remember-me-login-label {
  text-align: left;
  font: normal normal normal 16px/19px 'Barlow Condensed' !important;
  letter-spacing: 0 !important;
  color: #000000 !important;
  opacity: 1;
}

.remember-me-login-label input {
  font-size: 14px;
}

.social-media-login-text {
  text-align: center;
  font: normal normal normal 16px/19px 'Barlow Condensed' !important;
  letter-spacing: 0px;
  color: #2B2B2B !important;
}

.register-newsletter-text {
  text-align: left;
  font: normal normal normal 20px/24px 'Barlow Condensed' !important;
  letter-spacing: 0px;
  color: #2B1E0F;
}

.register-newsletter-input-label .custom-control-description{
  text-align: left;
  font: 400 14px/17px 'Barlow Condensed' !important;
  letter-spacing: 0px;
  color: #000000;
  opacity: 1;
}

.register-conditions-text {
  text-align: left;
  font: normal 14px/17px 'Barlow Condensed';
  letter-spacing: 0px;
  color: #000000;
}

.register-conditions-text a {
  color: #9B7836;
}

.shorts-container {
  width: 100%;
  max-width: 250px;
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  overflow: hidden;
}

.shorts-container iframe {
  position: relative;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 560px) {
  .checkout-modal-left-box {
    padding: 0 !important;
    border: none;
  }

  .checkout-modal-right-box {
    padding: 0 !important;
    margin-top: 30px;
  }

  .login-modal-checkbox-remember, .login-modal-forget-password {
    font-size: 14px;
  }

}