@import url("https://use.typekit.net/xyy0kuc.css");
@font-face {
  font-family: "GTWalsheim";
  src: url("../fonts/GT-Walsheim-Light.ttf");
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
body,
html {
  overflow-x: hidden;
}

.grecaptcha-badge {
  display: none !important;
}

.noscroll {
  overflow: hidden;
}

img {
  border-radius: 20px;
}

body {
  font-size: 16px;
  font-family: GTWalsheim;
  color: #025f1d;
  font-weight: 400;
  position: relative;
}
@media (min-width: 768px) {
  body {
    font-size: 18px;
  }
}
body a {
  transition: 0.5s;
  color: #ecbaa8;
}
body #moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme {
  background-color: #ecbaa8;
}
body .woocommerce-info,
body .woocommerce-message {
  border-color: #025f1d;
  background-color: rgba(236, 186, 168, 0.18);
}
body .woocommerce-info:before,
body .woocommerce-message:before {
  color: #025f1d;
}
body .woocommerce-info a,
body .woocommerce-message a {
  color: #025f1d;
}
body .woocommerce-info a.button,
body .woocommerce-message a.button {
  background-color: #025f1d;
  color: #fff;
  font-weight: 400;
  border: 1px solid #025f1d;
}
body .woocommerce-info a.button:hover, body .woocommerce-info a.button:focus,
body .woocommerce-message a.button:hover,
body .woocommerce-message a.button:focus {
  background-color: transparent;
  color: #025f1d;
}
body .woocommerce a.button {
  background-color: #025f1d;
  color: #fff;
  font-weight: 400;
  border: 1px solid #025f1d;
}
body .woocommerce a.button:hover, body .woocommerce a.button:focus {
  background-color: transparent;
  color: #025f1d;
}

.yikes-easy-mc-form form {
  margin-top: 25px;
}
.yikes-easy-mc-form form input[type=email],
.yikes-easy-mc-form form input[type=text] {
  border-radius: 3px;
  background-color: #fff;
  border: 1px solid #025f1d;
  padding: 15px 25px;
  border-radius: 10px;
  text-align: center;
}
.yikes-easy-mc-form form input[type=email]:focus,
.yikes-easy-mc-form form input[type=text]:focus {
  outline: 0;
}
.yikes-easy-mc-form form button {
  margin-top: 0;
  background-color: #025f1d;
  color: #fff;
  cursor: pointer;
  font-weight: 400;
  transition: 0.5s;
  border-radius: 10px;
  width: auto;
  margin: 0 auto;
  padding: 10px 25px;
  border: none;
  font-size: 20px;
}
.yikes-easy-mc-form form button:focus {
  outline: 0;
}
.yikes-easy-mc-form form button:hover, .yikes-easy-mc-form form button:focus {
  background-color: #ecbaa8;
}

.popup-product {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000;
  overflow-y: scroll;
  padding: 25px;
}
@media (min-width: 768px) {
  .popup-product {
    overflow: hidden;
  }
}
.popup-product.active {
  opacity: 1;
  visibility: visible;
}
.popup-product .popup-backface {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.popup-product__inner {
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
  background-color: #fff;
  padding: 25px;
  position: relative;
  min-height: 300px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-product__inner .description {
  margin-bottom: 25px;
}
.popup-product__inner--close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.popup-product__inner--close span {
  height: 3px;
  width: 20px;
  display: block;
  position: absolute;
  top: 5px;
  background-color: #025f1d;
}
.popup-product__inner--close span:first-child {
  transform: rotate(45deg);
}
.popup-product__inner--close span:last-child {
  transform: rotate(-45deg);
}
.popup-product__inner .rotate {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px dashed #025f1d;
  animation: spin 4s linear infinite;
  z-index: 100;
}
.popup-product__inner h2 {
  color: #025f1d;
  margin: 0 0 25px 0;
  font-family: gopher, sans-serif;
}
@media (max-width: 767px) {
  .popup-product__inner .add-to-cart {
    display: flex;
  }
}
.popup-product__inner .add-to-cart a {
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #025f1d;
  font-size: 14px;
  width: auto;
  position: relative;
}
@media (max-width: 767px) {
  .popup-product__inner .add-to-cart a {
    justify-content: center;
  }
}
.popup-product__inner .add-to-cart a:hover, .popup-product__inner .add-to-cart a:focus {
  text-decoration: none;
}
.popup-product__inner .add-to-cart a:hover .circle, .popup-product__inner .add-to-cart a:focus .circle {
  background-color: #025f1d;
}
.popup-product__inner .add-to-cart a:hover .circle__inner svg, .popup-product__inner .add-to-cart a:focus .circle__inner svg {
  color: #fff;
}
.popup-product__inner .add-to-cart a span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .popup-product__inner .add-to-cart a span {
    left: 60px;
    width: auto;
  }
}
.popup-product__inner .add-to-cart a .circle {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #025f1d;
  transition: 0.5s;
}
@media (max-width: 767px) {
  .popup-product__inner .add-to-cart a .circle {
    margin-right: 100px;
  }
}
.popup-product__inner .add-to-cart a .circle__inner svg {
  color: #025f1d;
  transition: 0.5s;
  width: 20px;
  height: 20px;
  margin-bottom: 2px;
}
.popup-product__inner .add-to-cart-two {
  margin-top: 15px;
}

@media (max-width: 1023px) {
  .ffc_conv_wrapper:not(.ffc_inline_form) .vff-animate.q-form:not(.q-is-inactive) .ff_conv_section_wrapper {
    height: auto;
  }
}

.f-welcome-screen {
  display: flex;
  flex-wrap: wrap;
  height: auto;
}
.f-welcome-screen .ff_custom_button {
  order: 1;
  position: sticky;
  background-color: #fbf2ef;
  top: 0;
  left: 0;
  width: 100%;
}
.f-welcome-screen .ffc_q_header {
  order: 2;
}
.f-welcome-screen .f-sub {
  order: 3;
}

body .notification-bar {
  background-color: #ecbaa8;
  padding: 10px 25px;
  text-align: center;
}
body .notification-bar p {
  color: #fff;
  margin-bottom: 0;
  font-size: 14px;
}
@media (min-width: 768px) {
  body .notification-bar p {
    font-size: 18px;
  }
}
body.notification .navigation {
  top: 60px;
}
@media (min-width: 1200px) {
  body.notification .navigation {
    top: 80px;
  }
}
body.notification .logo {
  top: 60px;
}
@media (min-width: 1200px) {
  body.notification .logo {
    top: 65px;
  }
}
body.notification .logo img {
  border-radius: 0;
}
body.notification .actions-nav {
  top: 60px;
}
@media (min-width: 1200px) {
  body.notification .actions-nav {
    top: 65px;
  }
}
body .navigation {
  position: absolute;
  top: 30px;
  right: 10px;
  z-index: 100;
  transition: 0.5s;
}
@media (min-width: 1200px) {
  body .navigation {
    right: unset;
    top: 50px;
    left: 25px;
  }
}
body .navigation .hamburger {
  position: relative;
  width: 50px;
  height: 50px;
  z-index: 10;
}
@media (min-width: 1200px) {
  body .navigation .hamburger {
    display: none;
  }
}
body .navigation .hamburger span {
  position: absolute;
  top: 8px;
  left: 10px;
  width: 30px;
  height: 3px;
  background-color: #025f1d;
}
body .navigation .hamburger span:nth-child(2) {
  top: 16px;
}
body .navigation .hamburger span:nth-child(3) {
  top: 24px;
}
@media (max-width: 1199px) {
  body .navigation .primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    background-color: #025f1d;
    z-index: 150;
    transition: 0.5s;
    padding: 100px 25px;
    width: 50%;
    transform: translateX(100vw);
  }
}
@media (max-width: 374px) {
  body .navigation .primary-nav {
    width: 250px;
    transform: translateX(250px);
  }
}
body .navigation .primary-nav.active {
  transform: translateX(0);
}
body .navigation .primary-nav .close-nav {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 22px;
  height: 18px;
}
@media (min-width: 1200px) {
  body .navigation .primary-nav .close-nav {
    display: none;
  }
}
body .navigation .primary-nav .close-nav span {
  position: absolute;
  top: 7px;
  left: 0;
  width: 22px;
  height: 2px;
  background-color: #fff;
  transform: rotate(45deg);
}
body .navigation .primary-nav .close-nav span:nth-child(2) {
  transform: rotate(-45deg);
}
body .navigation .primary-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
body .navigation .primary-nav ul li {
  margin-bottom: 15px;
}
@media (min-width: 1200px) {
  body .navigation .primary-nav ul li {
    margin-bottom: 0;
    float: left;
    margin-left: 15px;
  }
}
body .navigation .primary-nav ul li:first-child {
  margin-left: 0;
}
body .navigation .primary-nav ul li a {
  color: #fff;
  letter-spacing: 1px;
  font-size: 28px;
}
@media (min-width: 1200px) {
  body .navigation .primary-nav ul li a {
    color: #025f1d;
    font-size: 18px;
  }
}
body .navigation .primary-nav ul li a:hover {
  text-decoration: none;
}
@media (min-width: 375px) {
  body .navigation .primary-nav ul.user-account {
    display: none;
  }
}
body .navigation .primary-nav .info-menu {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
  z-index: 10;
  height: auto;
  padding: 25px;
}
@supports (-webkit-touch-callout: none) {
  body .navigation .primary-nav .info-menu {
    bottom: 100px;
  }
}
@media (min-width: 1200px) {
  body .navigation .primary-nav .info-menu {
    display: none;
  }
}
body .navigation .primary-nav .info-menu ul li a {
  font-size: 16px;
}
body .logo {
  position: absolute;
  z-index: 100;
  left: 25px;
  top: 25px;
  z-index: 100;
  transition: 0.5s;
}
@media (min-width: 1200px) {
  body .logo {
    left: 50%;
    transform: translateX(-50%);
  }
}
body .logo img {
  max-width: 100px;
  width: 100%;
}
@media (min-width: 480px) {
  body .logo img {
    max-width: 125px;
  }
}
@media (min-width: 1200px) {
  body .logo img {
    max-width: 300px;
  }
}
body .actions-nav {
  position: absolute;
  right: 75px;
  top: 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  transition: 0.5s;
  z-index: 50;
}
@media (min-width: 1200px) {
  body .actions-nav {
    top: 25px;
    right: 25px;
  }
}
body .actions-nav .order {
  margin-right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #025f1d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  border: 1px solid #025f1d;
}
@media (min-width: 1200px) {
  body .actions-nav .order {
    margin-right: 25px;
    width: 75px;
    height: 75px;
  }
}
body .actions-nav .order:hover {
  background-color: transparent;
}
body .actions-nav .order a:hover {
  text-decoration: none;
}
body .actions-nav .order a:hover .order__inner p {
  color: #025f1d;
}
body .actions-nav .order__inner {
  padding: 15px;
}
body .actions-nav .order__inner p {
  margin: 0;
  color: #fff;
  font-size: 10px;
  transition: 0.5s;
}
@media (min-width: 1200px) {
  body .actions-nav .order__inner p {
    font-size: 16px;
  }
}
body .actions-nav .user {
  margin-right: 15px;
  margin-left: 10px;
  display: none;
}
@media (min-width: 375px) {
  body .actions-nav .user {
    display: block;
  }
}
@media (min-width: 1200px) {
  body .actions-nav .user {
    margin-left: 0;
  }
}
body .actions-nav .user__inner svg {
  width: 25px;
  color: #025f1d;
  height: auto;
}
@media (min-width: 480px) {
  body .actions-nav .user__inner svg {
    width: 30px;
  }
}
body .actions-nav .shoppingcart__inner {
  position: relative;
}
body .actions-nav .shoppingcart__inner .cart-count {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 20px;
  font-size: 10px;
  height: 20px;
  background-color: #025f1d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
body .actions-nav .shoppingcart__inner svg {
  color: #025f1d;
  width: 30px;
}
@media (min-width: 480px) {
  body .actions-nav .shoppingcart__inner svg {
    width: 35px;
  }
}

body.woocommerce-cart footer,
body.woocommerce-checkout footer {
  margin: 0 -25px;
}

.footer {
  background-color: rgba(236, 186, 168, 0.18);
  padding: 50px 0;
  color: #025f1d;
}
.footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer__logo-row {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}
.footer__logo img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.footer__main-row {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .footer__main-row {
    grid-template-columns: 1fr;
  }
}
.footer__contact-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__tagline {
  font-size: 1.25rem;
  font-family: gopher, sans-serif;
  font-weight: bold;
  margin-bottom: 20px;
}
.footer__email a {
  background-color: white;
  padding: 5px 15px;
  border-radius: 40px;
  color: #025f1d;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.5s ease-in-out;
}
.footer__email a svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.footer__email a:hover {
  background-color: #025f1d;
  color: white;
}
.footer__reviews .ti-widget.ti-goog {
  width: fit-content;
}
.footer__reviews .ti-widget.ti-goog > .ti-widget-container {
  margin-bottom: 0;
}
.footer__reviews .ti-widget.ti-goog > .ti-widget-container > .ti-header {
  padding: 10px;
  background-color: #fff !important;
}
.footer__reviews .ti-widget.ti-goog > .ti-widget-container > .ti-header:hover {
  transform: none !important;
}
.footer__reviews .ti-widget.ti-goog img {
  border-radius: 0;
}
.footer__social {
  display: flex;
  gap: 15px;
  align-items: center;
}
.footer .social-icon {
  color: #025f1d;
}
.footer .social-icon svg {
  width: 24px;
  height: 24px;
}
.footer__menus {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  .footer__menus {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.footer__menu h3 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  font-family: gopher, sans-serif;
  font-weight: bold;
}
.footer__menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__menu ul li {
  margin-bottom: 5px;
}
.footer__menu ul li a {
  color: #025f1d;
  text-decoration: none;
  font-size: 1rem;
}
.footer__bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .footer__bottom-row {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
.footer__company {
  font-size: 1rem;
}
.footer__payments {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer__payments img {
  height: 50px;
  width: auto;
}

.whatsapp_icon {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 100;
}
.whatsapp_icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #025f1d;
  color: #fff;
}
.whatsapp_icon a svg {
  width: 30px;
  height: auto;
}

body .header-block {
  width: 100%;
}
@media (min-width: 768px) {
  body .header-block {
    padding: 200px 25px 25px 25px;
  }
}
body .header-block__inner {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 10;
  padding: 100px 25px 50px 25px;
}
@media (max-width: 767px) {
  body .header-block__inner {
    display: flex;
  }
}
@media (min-width: 768px) {
  body .header-block__inner {
    min-height: 500px;
    height: auto;
    padding: 0 0 50px 0;
  }
}
body .header-block__inner:after {
  content: "";
  background-color: #ecbaa8;
  bottom: 0;
  left: 0;
  width: 100%;
  position: absolute;
  height: 100%;
  z-index: -1;
}
@media (min-width: 768px) {
  body .header-block__inner:after {
    height: 80%;
  }
}
body .header-block__inner--content {
  width: 100%;
  padding: 0 15px;
}
body .header-block__inner--content .image {
  text-align: center;
  width: 100%;
  max-width: 150px;
  margin: 0 auto;
}
@media (min-width: 375px) {
  body .header-block__inner--content .image {
    max-width: 200px;
  }
}
@media (min-width: 400px) {
  body .header-block__inner--content .image {
    max-width: 250px;
  }
}
@media (min-width: 768px) {
  body .header-block__inner--content .image {
    max-width: 350px;
  }
}
body .header-block__inner--content .image img {
  width: 100%;
  border-radius: 10px;
  height: auto;
}
body .header-block__inner--content .content {
  text-align: center;
  width: 100%;
  margin-top: -18px;
}
@media (min-width: 768px) {
  body .header-block__inner--content .content {
    margin-top: -25px;
  }
}
body .header-block__inner--content .content h1 {
  font-family: gopher, sans-serif;
  max-width: 250px;
  margin: 0 auto 15px auto;
  width: 100%;
  font-size: 30px;
}
@media (min-width: 480px) {
  body .header-block__inner--content .content h1 {
    font-size: 38px;
    margin: 0 auto 25px auto;
    max-width: 300px;
  }
}
@media (min-width: 768px) {
  body .header-block__inner--content .content h1 {
    font-size: 42px;
  }
}
body .header-block__inner--content .content p {
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  body .header-block__inner--content .content p {
    font-size: 18px;
  }
}
body .header-block__inner--content .content p:last-child {
  margin-bottom: 0;
}
body .header-block__inner--content .content .button {
  text-align: center;
  margin-top: 15px;
  display: flex;
  justify-content: center;
}
@media (min-width: 480px) {
  body .header-block__inner--content .content .button {
    margin-top: 25px;
  }
}
body .header-block__inner--content .content .button a {
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #025f1d;
  padding: 15px;
  border-radius: 50px;
  font-weight: 700;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid #025f1d;
}
@media (min-width: 480px) {
  body .header-block__inner--content .content .button a {
    font-size: 20px;
  }
}
body .header-block__inner--content .content .button a:hover, body .header-block__inner--content .content .button a:focus {
  background-color: transparent;
  color: #025f1d;
  text-decoration: none;
}

body .intro-block {
  width: 100%;
}
@media (max-width: 767px) {
  body .intro-block {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
@media (min-width: 768px) {
  body .intro-block {
    height: auto;
  }
}
body .intro-block__inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: 100px 25px 25px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  body .intro-block__inner {
    padding: 100px 25px;
  }
}
body .intro-block__inner .left,
body .intro-block__inner .right {
  width: 100%;
}
@media (min-width: 768px) {
  body .intro-block__inner .left,
  body .intro-block__inner .right {
    width: 50%;
  }
}
body .intro-block__inner .right {
  margin-top: 15px;
  text-align: center;
}
@media (min-width: 768px) {
  body .intro-block__inner .right {
    text-align: right;
    margin-top: 0;
  }
}
body .intro-block__inner .right .image {
  position: relative;
  max-width: 150px;
  margin: 0 auto;
}
@media (min-width: 375px) {
  body .intro-block__inner .right .image {
    max-width: 200px;
  }
}
@media (min-width: 400px) {
  body .intro-block__inner .right .image {
    max-width: 250px;
  }
}
@media (min-width: 768px) {
  body .intro-block__inner .right .image {
    max-height: initial;
    margin: 0 0 0 auto;
    max-width: 350px;
    width: 100%;
  }
}
body .intro-block__inner .right .image .icon {
  position: absolute;
  top: -25px;
  left: -25px;
}
@media (min-width: 768px) {
  body .intro-block__inner .right .image .icon {
    top: -35px;
    left: -35px;
  }
}
body .intro-block__inner .right .image .icon img {
  width: 100px;
  height: 100px;
}
body .intro-block__inner .right .image img.main {
  height: auto;
  width: 100%;
  border-radius: 10px;
}
body .intro-block__inner .left {
  text-align: center;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  body .intro-block__inner .left {
    margin-bottom: 0;
  }
}
body .intro-block__inner .left .dot {
  width: 35px;
  height: 35px;
  background-color: #ecbaa8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
@media (min-width: 768px) {
  body .intro-block__inner .left .dot {
    width: 75px;
    height: 75px;
  }
}
body .intro-block__inner .left .dot__inner {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #025f1d;
}
@media (min-width: 768px) {
  body .intro-block__inner .left .dot__inner {
    width: 30px;
    height: 30px;
  }
}
body .intro-block__inner .left .content {
  margin-top: 15px;
}
@media (min-width: 768px) {
  body .intro-block__inner .left .content {
    margin-top: 50px;
  }
}
body .intro-block__inner .left .content p {
  font-size: 14px;
}
@media (min-width: 480px) {
  body .intro-block__inner .left .content p {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  body .intro-block__inner .left .content p {
    font-size: 18px;
  }
}
body .intro-block__inner .left .content p:last-child {
  margin-bottom: 0;
}

body .product-slider-block {
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  body .product-slider-block {
    height: auto;
  }
}
body .product-slider-block:after {
  content: "";
  background-color: rgba(236, 186, 168, 0.18);
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  height: 65%;
}
@media (min-width: 992px) {
  body .product-slider-block:after {
    height: 50%;
  }
}
body .product-slider-block .inner {
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
  padding: 100px 25px 50px 25px;
}
@media (min-width: 768px) {
  body .product-slider-block .inner {
    padding: 25px 0 50px 25px;
  }
}
body .product-slider-block .inner .swiper-products {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide {
  width: 100%;
}
@media (min-width: 768px) {
  body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide {
    width: 80%;
  }
}
body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide {
  display: flex;
  flex-wrap: wrap;
}
body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .left,
body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right {
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .left,
  body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right {
    width: 50%;
    text-align: left;
  }
}
@media (min-width: 768px) {
  body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .left {
    padding-right: 25px;
  }
}
@media (min-width: 768px) {
  body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .left .mobile-toggle {
    display: none;
  }
}
body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .left .mobile-toggle a {
  color: #025f1d;
  text-decoration: none;
}
body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .left .mobile-toggle h3 {
  font-family: gopher, sans-serif;
  margin: 0 0 10px 0;
}
body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .left .mobile-toggle p {
  font-size: 14px;
  line-height: 1;
}
body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .left .mobile-toggle p a {
  color: #025f1d;
}
body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .left img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  max-width: 175px;
  max-height: 250px;
  object-fit: cover;
}
@media (min-width: 375px) {
  body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .left img {
    max-width: 200px;
  }
}
@media (min-width: 768px) {
  body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .left img {
    max-width: 320px;
    max-height: 100%;
  }
}
body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right a {
  color: #025f1d;
  text-decoration: none;
}
body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right h3 {
  font-family: gopher, sans-serif;
  margin: 0 0 10px 0;
  display: none;
  font-size: 26px;
}
@media (min-width: 768px) {
  body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right h3 {
    display: block;
  }
}
body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right p {
  font-size: 14px;
  display: none;
  line-height: 1;
}
@media (min-width: 768px) {
  body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right p {
    display: block;
  }
}
body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right p a {
  color: #025f1d;
}
body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right .price {
  margin-top: 5px;
}
@media (min-width: 768px) {
  body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right .price {
    margin-top: 0;
  }
}
body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right .price span,
body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right .price bdi {
  font-size: 20px;
}
body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right .price .wcsatt-sub-options {
  display: none;
}
body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right .button {
  margin-top: 25px;
}
body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right .button a {
  background-color: #025f1d;
  color: #fff;
  font-weight: 400;
  font-family: gopher, sans-serif;
  border: 1px solid #025f1d;
  padding: 5px 15px;
  font-size: 14px;
  display: inline-block;
}
body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right .button a:hover, body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right .button a:focus {
  background-color: transparent;
  color: #025f1d;
  text-decoration: none;
}
body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right .add-to-cart {
  margin-top: 25px;
  position: relative;
}
@media (max-width: 767px) {
  body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right .add-to-cart {
    display: flex;
    justify-content: center;
  }
}
body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right .add-to-cart a {
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #fff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #025f1d;
  justify-content: center;
  font-size: 18px;
  font-family: gopher, sans-serif;
  line-height: 1;
  text-align: center;
}
body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right .add-to-cart a:hover, body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right .add-to-cart a:focus {
  text-decoration: none;
}
body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right .add-to-cart a:hover .circle, body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right .add-to-cart a:focus .circle {
  background-color: #025f1d;
}
body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right .add-to-cart a:hover .circle__inner svg, body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right .add-to-cart a:focus .circle__inner svg {
  color: #fff;
}
body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right .add-to-cart a span {
  position: absolute;
  left: 53vw;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right .add-to-cart a span {
    left: 60px;
    width: 100%;
  }
}
body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right .add-to-cart a .circle {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #025f1d;
  transition: 0.5s;
}
body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right .add-to-cart a .circle__inner svg {
  color: #025f1d;
  transition: 0.5s;
  width: 20px;
  height: 20px;
  margin-bottom: 2px;
}
body .product-slider-block .inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right .add-to-cart-two {
  margin-top: 15px;
}
body .product-slider-block .inner .swiper-products .swiper-products-pagination {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
body .product-slider-block .inner .swiper-products .swiper-products-pagination span {
  background-color: #ecbaa8;
  width: 10px;
  height: 10px;
  opacity: 1;
}
body .product-slider-block .inner .swiper-products .swiper-products-pagination span:focus {
  outline: 0;
}
body .product-slider-block .inner .swiper-products .swiper-products-pagination span.swiper-pagination-bullet-active {
  background-color: #025f1d;
}

body .testimonial-slider-block {
  width: 100%;
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  body .testimonial-slider-block {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
@media (min-width: 768px) {
  body .testimonial-slider-block {
    height: auto;
  }
}
body .testimonial-slider-block.columns .inner {
  max-width: 1024px;
  position: relative;
}
body .testimonial-slider-block.columns .swiper-testiomials .swiper-wrapper .swiper-slide {
  width: 100%;
}
@media (min-width: 375px) {
  body .testimonial-slider-block.columns .swiper-testiomials .swiper-wrapper .swiper-slide {
    width: 50%;
    padding: 0 10px;
  }
}
@media (min-width: 768px) {
  body .testimonial-slider-block.columns .swiper-testiomials .swiper-wrapper .swiper-slide {
    width: 33.33333%;
  }
}
body .testimonial-slider-block.columns .swiper-testiomials .swiper-wrapper .swiper-slide img {
  border-radius: 0;
}
body .testimonial-slider-block.columns .swiper-testiomials-pagination {
  display: flex;
}
body .testimonial-slider-block .inner {
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
  padding: 100px 25px;
  margin-bottom: 25px;
}
body .testimonial-slider-block .inner h2 {
  text-align: center;
  margin: 0 0 25px 0;
  font-family: gopher, sans-serif;
  color: #025f1d;
  font-size: 26px;
}
@media (min-width: 768px) {
  body .testimonial-slider-block .inner h2 {
    margin: 0 0 50px 0;
  }
}
body .testimonial-slider-block .inner .button {
  text-align: center;
  margin-top: 25px;
}
body .testimonial-slider-block .inner .button a {
  color: #025f1d;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  background-color: transparent;
  border: 1px solid #025f1d;
  height: 75px;
  border-radius: 50%;
  margin: 0 auto;
}
@media (min-width: 480px) {
  body .testimonial-slider-block .inner .button a {
    width: 100px;
    height: 100px;
    font-size: 20px;
  }
}
body .testimonial-slider-block .inner .button a:hover, body .testimonial-slider-block .inner .button a:focus {
  background-color: #025f1d;
  color: #fff;
  text-decoration: none;
}
body .testimonial-slider-block .swiper-testiomials-pagination {
  display: none;
}
body .testimonial-slider-block .swiper-testiomials-pagination {
  display: none;
  width: calc(100% - 50px);
  background-color: #fff;
  position: absolute;
  bottom: 50px;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  z-index: 11;
}
body .testimonial-slider-block .swiper-testiomials-pagination span {
  width: 16px;
  height: 16px;
  opacity: 1;
  margin: 0 10px;
  background-color: rgba(236, 186, 168, 0.5);
}
body .testimonial-slider-block .swiper-testiomials-pagination span.swiper-pagination-bullet-active {
  background-color: #ecbaa8;
}
body .reviews {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  align-items: center;
}
body .reviews .review {
  width: 50%;
  text-align: center;
}
@media (min-width: 768px) {
  body .reviews .review {
    width: 25%;
  }
}
body .reviews .review img {
  max-width: 150px;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  body .reviews .review img {
    max-width: 200px;
    height: auto;
  }
}
body .swiper-testiomials {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
body .swiper-testiomials .swiper-wrapper .swiper-slide {
  text-align: center;
}
body .swiper-testiomials .swiper-wrapper .swiper-slide .image {
  margin-bottom: 25px;
}
body .swiper-testiomials .swiper-wrapper .swiper-slide .image img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
}
@media (min-width: 768px) {
  body .swiper-testiomials .swiper-wrapper .swiper-slide .image img {
    width: 200px;
    height: 200px;
  }
}

.ingredient-slider-block {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  align-content: center;
}
@media (min-width: 768px) {
  .ingredient-slider-block {
    height: auto;
    padding-top: 0;
  }
}
.ingredient-slider-block h2 {
  width: 100%;
  text-align: center;
  font-family: gopher, sans-serif;
  margin: 0 0 25px 0;
  padding: 0;
  font-size: 26px;
}
@media (min-width: 768px) {
  .ingredient-slider-block h2 {
    margin: 0 0 50px 0;
  }
}
@media (max-width: 375px) {
  .ingredient-slider-block .ingredients-wrapper .ingredients-swiper:after {
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 375px) {
  .ingredient-slider-block .ingredients-wrapper .ingredients-swiper .swiper-wrapper .swiper-slide {
    padding: 150px 0 150px 0;
  }
}

.ingredients-wrapper {
  background-color: #ecbaa8;
  position: relative;
  z-index: 10;
  width: 100%;
}
.ingredients-wrapper .ingredients-swiper {
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  max-width: 1480px;
}
.ingredients-wrapper .ingredients-swiper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgb(255, 255, 255);
  z-index: -1;
  width: 100%;
  height: 25px;
}
.ingredients-wrapper .ingredients-swiper:after {
  content: "";
  position: absolute;
  top: calc(50% - 15px);
  left: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: -1;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.ingredients-wrapper .ingredients-swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: auto;
  padding: 200px 0 200px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .ingredients-wrapper .ingredients-swiper .swiper-wrapper .swiper-slide {
    width: 33.3333%;
  }
}
.ingredients-wrapper .ingredients-swiper .swiper-wrapper .swiper-slide .title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .ingredients-wrapper .ingredients-swiper .swiper-wrapper .swiper-slide .title {
    top: -5px;
  }
}
.ingredients-wrapper .ingredients-swiper .swiper-wrapper .swiper-slide .title h3 {
  font-family: gopher, sans-serif;
  font-size: 28px;
  margin: 0;
  padding: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .ingredients-wrapper .ingredients-swiper .swiper-wrapper .swiper-slide .title h3 {
    font-size: 38px;
  }
}
.ingredients-wrapper .ingredients-swiper .swiper-wrapper .swiper-slide .text {
  max-width: 300px;
  width: 100%;
  padding: 0 25px;
  text-align: center;
  margin-top: -15px;
}
.ingredients-wrapper .ingredients-swiper .swiper-wrapper .swiper-slide .text p {
  font-size: 16px;
}
.ingredients-wrapper .ingredients-swiper .swiper-wrapper .swiper-slide .text p:last-child {
  margin-bottom: 0;
}
.ingredients-wrapper .ingredients-swiper .swiper-ingredient-pagination {
  background-color: #fff;
  position: absolute;
  bottom: -1px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  z-index: 11;
}
.ingredients-wrapper .ingredients-swiper .swiper-ingredient-pagination span {
  width: 16px;
  height: 16px;
  opacity: 1;
  margin: 0 10px;
  background-color: #ecbaa8;
}
.ingredients-wrapper .ingredients-swiper .swiper-ingredient-pagination span.swiper-pagination-bullet-active {
  width: 32px;
  height: 32px;
  background-color: #025f1d;
  border: 8px solid #ecbaa8;
}

@media (max-width: 767px) {
  body .use-info-block {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    align-content: flex-start;
  }
}
body .use-info-block.mobile .wrapper {
  padding: 25px 25px 100px 25px;
}
@media (min-width: 768px) {
  body .use-info-block.mobile .wrapper {
    padding: 75px 25px 125px 25px;
  }
}
body .use-info-block .swiper-wrapper .swiper-slide {
  width: 100%;
  padding: 0 25px;
}
@media (min-width: 768px) {
  body .use-info-block .swiper-wrapper .swiper-slide {
    width: 50%;
  }
}
body .use-info-block .wrapper {
  padding: 50px 0;
}
body .use-info-block h2 {
  color: #025f1d;
  font-family: gopher, sans-serif;
  margin: 0 0 50px 0;
  padding: 0 25px;
  text-align: center;
  font-size: 22px;
}
@media (min-width: 768px) {
  body .use-info-block h2 {
    font-size: 26px;
  }
}
body .use-info-block .wrapper {
  background-color: rgba(236, 186, 168, 0.18);
  width: 100%;
  position: relative;
}
body .use-info-block .wrapper .inner {
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
body .use-info-block .wrapper .inner.use-info-swiper {
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
body .use-info-block .wrapper .inner .item {
  width: 100%;
  padding: 0 25px;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  body .use-info-block .wrapper .inner .item {
    width: 50%;
  }
}
body .use-info-block .wrapper .inner .icon {
  width: 50px;
  margin: 0 auto 25px auto;
}
@media (min-width: 768px) {
  body .use-info-block .wrapper .inner .icon {
    width: 125px;
  }
}
body .use-info-block .wrapper .inner .icon img {
  width: 100%;
  height: auto;
}
body .use-info-block .wrapper .inner .content h1,
body .use-info-block .wrapper .inner .content h2,
body .use-info-block .wrapper .inner .content h3,
body .use-info-block .wrapper .inner .content h4 {
  font-family: gopher, sans-serif;
  margin: 0 0 15px 0;
  font-size: 20px;
}
@media (min-width: 768px) {
  body .use-info-block .wrapper .inner .content h1,
  body .use-info-block .wrapper .inner .content h2,
  body .use-info-block .wrapper .inner .content h3,
  body .use-info-block .wrapper .inner .content h4 {
    font-size: 22px;
  }
}
body .use-info-block .wrapper .inner .content p {
  text-align: center;
}
body .use-info-block .wrapper .inner .content p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  body .use-info-block .wrapper .inner .content p {
    font-size: 14px;
  }
}
body .use-info-block .wrapper .inner .swiper-use-info-pagination {
  background-color: #fff;
  position: absolute;
  bottom: -1px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  z-index: 11;
}
body .use-info-block .wrapper .inner .swiper-use-info-pagination span {
  width: 16px;
  height: 16px;
  opacity: 1;
  margin: 0 10px;
  background-color: #ecbaa8;
}
body .use-info-block .wrapper .inner .swiper-use-info-pagination span.swiper-pagination-bullet-active {
  width: 32px;
  height: 32px;
  background-color: #025f1d;
  border: 8px solid #ecbaa8;
}

body .about-video-block {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-start;
  padding-top: 100px;
  justify-content: center;
  flex-wrap: wrap;
  align-content: flex-start;
}
@media (min-width: 768px) {
  body .about-video-block {
    height: auto;
    padding-top: 0;
    margin-top: 100px;
  }
}
body .about-video-block .inner {
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
  padding: 0 25px;
  -webkit-overflow-scrolling: touch;
}
body .about-video-block .inner h2 {
  width: 100%;
  text-align: center;
  font-family: gopher, sans-serif;
  margin: 0 0 25px 0;
  padding: 0;
  font-size: 26px;
}
@media (min-width: 768px) {
  body .about-video-block .inner h2 {
    margin: 0 0 50px 0;
  }
}
body .about-video-block .inner .video-wrapper {
  position: relative;
  width: 100%;
  height: 0px;
  padding-bottom: 56.25%;
  -webkit-overflow-scrolling: touch;
}
body .about-video-block .inner .video-wrapper .video {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
}
body .about-video-block .inner .video-wrapper .video .placeholder {
  width: 100%;
  cursor: pointer;
  height: 100%;
  position: relative;
}
body .about-video-block .inner .video-wrapper .video .placeholder:hover:after {
  opacity: 1;
}
body .about-video-block .inner .video-wrapper .video .placeholder:after {
  transition: 0.5s;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}
body .about-video-block .inner .video-wrapper .video .placeholder .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
body .about-video-block .inner .video-wrapper .video .placeholder .play svg {
  width: 100px;
  height: 100px;
  color: #fff;
}
body .about-video-block .inner .video-wrapper .video .placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
body .about-video-block .inner .video-wrapper .video iframe,
body .about-video-block .inner .video-wrapper .video p {
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
}
body .about-video-block .inner .description {
  margin-top: 25px;
  max-width: 720px;
  margin: 25px auto 0 auto;
  text-align: center;
}
@media (min-width: 768px) {
  body .about-video-block .inner .description {
    margin: 50px auto 0 auto;
  }
}
body .about-video-block .inner .button {
  text-align: center;
  margin-top: 50px;
}
body .about-video-block .inner .button a {
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  border: 1px solid #025f1d;
  height: 75px;
  background-color: #025f1d;
  border-radius: 50%;
  margin: 0 auto;
}
@media (min-width: 480px) {
  body .about-video-block .inner .button a {
    width: 100px;
    height: 100px;
    font-size: 20px;
  }
}
body .about-video-block .inner .button a:hover, body .about-video-block .inner .button a:focus {
  background-color: transparent;
  color: #025f1d;
  text-decoration: none;
}

body .order-button-block__inner .button {
  text-align: center;
}
body .order-button-block__inner .button.background-color a {
  background-color: #025f1d;
  color: #fff !important;
}
body .order-button-block__inner .button.background-color a:hover, body .order-button-block__inner .button.background-color a:focus {
  background-color: transparent;
  color: #025f1d !important;
}
body .order-button-block__inner .button a {
  color: #025f1d !important;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  background-color: transparent;
  border: 1px solid #025f1d;
  height: 75px;
  border-radius: 50%;
  margin: 0 auto;
}
@media (min-width: 480px) {
  body .order-button-block__inner .button a {
    width: 100px;
    height: 100px;
    font-size: 20px;
  }
}
body .order-button-block__inner .button a:hover, body .order-button-block__inner .button a:focus {
  background-color: #025f1d;
  color: #fff !important;
  text-decoration: none;
}

.articles-block__inner {
  max-width: 1366px;
  margin: 0 auto;
  width: 100%;
  padding: 100px 0 0 0;
  display: flex;
  flex-wrap: wrap;
}
.articles-block__inner h2 {
  text-align: center;
  margin: 0 0 25px 0;
  font-family: gopher, sans-serif;
  color: #025f1d;
  font-size: 26px;
  width: 100%;
}
@media (min-width: 768px) {
  .articles-block__inner h2 {
    margin: 0 0 50px 0;
  }
}
.articles-block__inner--item {
  width: 100%;
  padding: 0 25px;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .articles-block__inner--item {
    width: 33.3333%;
  }
}
@media (min-width: 1200px) {
  .articles-block__inner--item {
    padding: 0 50px;
  }
}
.articles-block__inner--item:nth-child(2), .articles-block__inner--item:nth-child(3) {
  display: none;
}
@media (min-width: 768px) {
  .articles-block__inner--item:nth-child(2), .articles-block__inner--item:nth-child(3) {
    display: block;
  }
}
.articles-block__inner--item .inner {
  position: relative;
  height: 100%;
  width: 100%;
  padding-bottom: 100px;
}
.articles-block__inner--item .inner .image {
  width: 100%;
  height: 300px;
  margin-bottom: 25px;
}
@media (min-width: 480px) {
  .articles-block__inner--item .inner .image {
    height: 400px;
  }
}
@media (min-width: 768px) {
  .articles-block__inner--item .inner .image {
    height: 300px;
  }
}
@media (min-width: 1200px) {
  .articles-block__inner--item .inner .image {
    height: 400px;
  }
}
.articles-block__inner--item .inner .image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.articles-block__inner--item .inner .info h3 {
  font-size: 1.5rem;
  font-family: gopher, sans-serif;
  font-weight: 400;
  margin: 0;
  color: #025f1d;
  text-align: center;
}
.articles-block__inner--item .inner .info a:hover, .articles-block__inner--item .inner .info a:focus {
  text-decoration: none;
}
.articles-block__inner--item .inner .info .button {
  text-align: center;
  margin-top: 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (min-width: 480px) {
  .articles-block__inner--item .inner .info .button {
    margin-top: 25px;
  }
}
.articles-block__inner--item .inner .info .button a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  border: 1px solid #025f1d;
  height: 75px;
  color: #025f1d;
  border-radius: 50%;
}
.articles-block__inner--item .inner .info .button a:hover, .articles-block__inner--item .inner .info .button a:focus {
  background-color: #025f1d;
  color: #fff;
  text-decoration: none;
}

body .newsletter-block__inner {
  max-width: 1366px;
  margin: 0 auto;
  width: 100%;
  padding: 0 25px 50px 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
@media (min-width: 768px) {
  body .newsletter-block__inner {
    padding: 0 25px 100px 25px;
  }
}
body .newsletter-block__inner--left {
  position: relative;
  width: 100%;
  order: 2;
  padding-top: 50px;
}
@media (min-width: 768px) {
  body .newsletter-block__inner--left {
    order: 1;
    width: 60%;
    padding-right: 25px;
    display: flex;
    align-items: flex-end;
  }
}
body .newsletter-block__inner--left:after {
  content: "";
  position: absolute;
  left: -25vw;
  top: -200px;
  width: 125vw;
  z-index: -1;
  height: calc(100% + 250px);
  background-color: #ecbaa8;
}
@media (min-width: 768px) {
  body .newsletter-block__inner--left:after {
    top: 0;
    height: calc(100% + 100px);
  }
}
body .newsletter-block__inner--left .content {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 768px) {
  body .newsletter-block__inner--left .content {
    max-width: 100%;
    margin: 0;
    text-align: left;
  }
}
body .newsletter-block__inner--left .content h1,
body .newsletter-block__inner--left .content h2,
body .newsletter-block__inner--left .content h3,
body .newsletter-block__inner--left .content h4,
body .newsletter-block__inner--left .content h5 {
  margin: 0 0 25px 0;
  font-family: gopher, sans-serif;
  color: #025f1d;
  font-size: 26px;
  width: 100%;
}
body .newsletter-block__inner--left .content .form {
  margin-top: 50px;
}
@media (min-width: 768px) {
  body .newsletter-block__inner--left .content .form {
    margin-top: 0;
  }
}
body .newsletter-block__inner--left .content .form form label {
  display: none;
}
body .newsletter-block__inner--left .content .form form ._form-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
body .newsletter-block__inner--left .content .form form ._form-content ._form_element {
  width: 100%;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  body .newsletter-block__inner--left .content .form form ._form-content ._form_element:first-child {
    width: 40%;
  }
}
@media (min-width: 768px) {
  body .newsletter-block__inner--left .content .form form ._form-content ._form_element:nth-child(2) {
    width: calc(60% - 100px);
    padding-left: 25px;
  }
}
body .newsletter-block__inner--left .content .form form ._form-content ._form_element ._field-wrapper {
  width: 100%;
}
body .newsletter-block__inner--left .content .form form ._form-content ._form_element ._field-wrapper input {
  width: 100%;
  background-color: transparent;
  text-align: center;
  color: #fff;
  border: none;
  border-bottom: 1px solid #025f1d;
}
@media (min-width: 768px) {
  body .newsletter-block__inner--left .content .form form ._form-content ._form_element ._field-wrapper input {
    text-align: left;
  }
}
body .newsletter-block__inner--left .content .form form ._form-content ._form_element ._field-wrapper input::placeholder {
  color: #fff;
}
body .newsletter-block__inner--left .content .form form ._form-content ._form_element ._field-wrapper input:focus {
  outline: 0;
}
body .newsletter-block__inner--left .content .form form ._form-content ._button-wrapper {
  width: 100%;
}
@media (min-width: 768px) {
  body .newsletter-block__inner--left .content .form form ._form-content ._button-wrapper {
    width: 100px;
    padding-left: 25px;
  }
}
body .newsletter-block__inner--left .content .form form ._form-content ._button-wrapper button {
  border: none;
  background-color: transparent;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  border: 1px solid #025f1d;
  height: 75px;
  color: #025f1d;
  transition: 0.5s;
  border-radius: 50%;
  padding: 10px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  body .newsletter-block__inner--left .content .form form ._form-content ._button-wrapper button {
    margin: 0;
  }
}
body .newsletter-block__inner--left .content .form form ._form-content ._button-wrapper button:hover, body .newsletter-block__inner--left .content .form form ._form-content ._button-wrapper button:focus {
  background-color: #025f1d;
  color: #fff;
  text-decoration: none;
}
body .newsletter-block__inner--right {
  width: 100%;
  order: 1;
  text-align: center;
}
@media (min-width: 768px) {
  body .newsletter-block__inner--right {
    width: 40%;
    text-align: left;
    order: 2;
    padding-left: 25px;
  }
}
body .newsletter-block__inner--right img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  max-width: 250px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  body .newsletter-block__inner--right img {
    max-width: 100%;
    height: 550px;
    margin: 0;
  }
}

body.single-post .page-wrapper {
  padding-top: 125px;
  position: relative;
}
@media (min-width: 768px) {
  body.single-post .page-wrapper {
    padding-top: 200px;
  }
}
body.single-post .page-wrapper::before {
  content: "";
  background-color: #ecbaa8;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 300px;
  top: 0;
  left: 0;
}
@media (min-width: 768px) {
  body.single-post .page-wrapper::before {
    height: 350px;
  }
}
body.single-post .page-wrapper .featured-image {
  max-width: 320px;
  margin: 0 auto;
  width: 100%;
  padding: 0 25px 50px 25px;
}
body.single-post .page-wrapper .featured-image img {
  width: 100%;
  border-radius: 10px;
  height: auto;
}
body.single-post .page-wrapper .content {
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
  padding: 0 25px 100px 25px;
}
body.single-post .page-wrapper .content .intro {
  text-align: center;
  margin-bottom: 50px;
}
body.single-post .page-wrapper .content .intro h1 {
  font-size: 30px;
  margin: 0 0 25px 0;
  font-family: gopher, sans-serif;
}
body.single-post .page-wrapper .content .intro .date {
  font-size: 1.2rem;
  font-family: gopher, sans-serif;
}
@media (min-width: 768px) {
  body.single-post .page-wrapper .content .intro .date {
    font-size: 1.5rem;
  }
}
body.single-post .page-wrapper .content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
body.single-post .page-wrapper .content h1,
body.single-post .page-wrapper .content h2,
body.single-post .page-wrapper .content h3,
body.single-post .page-wrapper .content h4,
body.single-post .page-wrapper .content h5 {
  font-family: gopher, sans-serif;
  font-weight: 400;
}
body.single-post .page-wrapper .content a {
  color: #ecbaa8;
}
body.single-post .page-wrapper .content .newsletter {
  max-width: 720px;
  width: 100%;
  margin: 50px auto;
}
body.single-post .page-wrapper .content .newsletter h3 {
  font-family: gopher, sans-serif;
  font-size: 2rem;
}
body.single-post .page-wrapper .content .newsletter .form {
  margin-top: 25px;
}
body.single-post .page-wrapper .content .newsletter .form label {
  display: none;
}
body.single-post .page-wrapper .content .newsletter .form input,
body.single-post .page-wrapper .content .newsletter .form select,
body.single-post .page-wrapper .content .newsletter .form button {
  padding: 10px;
}
body.single-post .page-wrapper .content .newsletter .form input,
body.single-post .page-wrapper .content .newsletter .form select {
  border: 1px solid #000;
  background-color: transparent;
  color: #025f1d;
  width: 100%;
  margin-bottom: 15px;
}
body.single-post .page-wrapper .content .newsletter .form input::placeholder,
body.single-post .page-wrapper .content .newsletter .form select::placeholder {
  color: #025f1d;
}
body.single-post .page-wrapper .content .newsletter .form button {
  background-color: #025f1d;
  border: 1px solid #025f1d;
  border-radius: 0;
  transition: 0.5s;
  width: 100%;
  color: #fff;
  font-weight: bold;
}
body.single-post .page-wrapper .content .newsletter .form button:hover {
  background-color: transparent;
  color: #025f1d;
}
body.single-post .page-wrapper .content .testimonial-slider-block {
  height: auto;
}
body.single-post .page-wrapper .content .testimonial-slider-block .inner {
  padding: 0;
}
body.single-post .page-wrapper .content .testimonial-slider-block .inner .swiper-wrapper .swiper-slide .content {
  padding-bottom: 0;
}
@media (max-width: 767px) {
  body.single-post .page-wrapper .content .testimonial-slider-block .inner .swiper-wrapper .swiper-slide .content {
    padding: 0;
  }
}
body.single-post .page-wrapper .related {
  background-color: rgba(236, 186, 168, 0.2);
}
body.single-post .page-wrapper .related__inner {
  max-width: 1366px;
  margin: 0 auto;
  width: 100%;
  padding: 100px 0 50px 0;
  display: flex;
  flex-wrap: wrap;
}
body.single-post .page-wrapper .related__inner h2 {
  width: 100%;
  padding: 0 25px;
  font-size: 2rem;
  font-family: gopher, sans-serif;
  margin: 0 0 100px 0;
}
body.single-post .page-wrapper .related__inner--item {
  width: 100%;
  padding: 0 25px;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  body.single-post .page-wrapper .related__inner--item {
    width: 33.3333%;
  }
}
@media (min-width: 1200px) {
  body.single-post .page-wrapper .related__inner--item {
    padding: 0 50px;
  }
}
body.single-post .page-wrapper .related__inner--item .inner {
  position: relative;
  height: 100%;
  width: 100%;
  padding-bottom: 100px;
}
body.single-post .page-wrapper .related__inner--item .inner .image {
  width: 100%;
  height: 300px;
  margin-bottom: 25px;
}
@media (min-width: 480px) {
  body.single-post .page-wrapper .related__inner--item .inner .image {
    height: 400px;
  }
}
@media (min-width: 768px) {
  body.single-post .page-wrapper .related__inner--item .inner .image {
    height: 300px;
  }
}
@media (min-width: 1200px) {
  body.single-post .page-wrapper .related__inner--item .inner .image {
    height: 400px;
  }
}
body.single-post .page-wrapper .related__inner--item .inner .image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
body.single-post .page-wrapper .related__inner--item .inner .info h3 {
  font-size: 1.5rem;
  font-family: gopher, sans-serif;
  font-weight: 400;
  margin: 0;
  color: #025f1d;
}
body.single-post .page-wrapper .related__inner--item .inner .info a:hover, body.single-post .page-wrapper .related__inner--item .inner .info a:focus {
  text-decoration: none;
}
body.single-post .page-wrapper .related__inner--item .inner .info .button {
  text-align: center;
  margin-top: 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (min-width: 480px) {
  body.single-post .page-wrapper .related__inner--item .inner .info .button {
    margin-top: 25px;
  }
}
body.single-post .page-wrapper .related__inner--item .inner .info .button a {
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  border: 1px solid #025f1d;
  height: 75px;
  background-color: #025f1d;
  border-radius: 50%;
}
body.single-post .page-wrapper .related__inner--item .inner .info .button a:hover, body.single-post .page-wrapper .related__inner--item .inner .info .button a:focus {
  background-color: transparent;
  color: #025f1d;
  text-decoration: none;
}

body.page-template-blog .blog {
  position: relative;
}
body.page-template-blog .blog__inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 100px 25px 0 25px;
}
@media (min-width: 768px) {
  body.page-template-blog .blog__inner {
    padding: 200px 25px 0 25px;
  }
}
body.page-template-blog .blog__inner::before {
  content: "";
  background-color: #ecbaa8;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 400px;
  top: 0;
  left: 0;
}
@media (min-width: 768px) {
  body.page-template-blog .blog__inner::before {
    height: 500px;
  }
}
body.page-template-blog .blog__inner h1.entry-title {
  text-align: center;
  width: 100%;
  font-family: gopher, sans-serif;
  font-weight: 400;
  margin: 0 0 25px 0;
  font-size: 28px;
}
body.page-template-blog .blog__inner--item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  body.page-template-blog .blog__inner--item.first {
    margin-bottom: 100px;
  }
}
body.page-template-blog .blog__inner--item.first .left,
body.page-template-blog .blog__inner--item.first .right {
  width: 100%;
}
body.page-template-blog .blog__inner--item.first .left__inner {
  max-width: 300px;
  margin: 0 auto;
  width: 100%;
  height: 300px;
}
body.page-template-blog .blog__inner--item.first .left__inner img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
body.page-template-blog .blog__inner--item.first .right {
  padding-left: 0;
}
body.page-template-blog .blog__inner--item.first .right__inner {
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
  padding: 25px 15px 0 15px;
  text-align: center;
}
body.page-template-blog .blog__inner--item .left,
body.page-template-blog .blog__inner--item .right {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-blog .blog__inner--item .left {
    width: 40%;
  }
}
body.page-template-blog .blog__inner--item .left__inner {
  width: 100%;
  max-width: 300px;
  height: 300px;
  margin: 0 auto;
}
body.page-template-blog .blog__inner--item .left__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
body.page-template-blog .blog__inner--item .right {
  margin-top: 50px;
}
@media (min-width: 768px) {
  body.page-template-blog .blog__inner--item .right {
    padding-left: 25px;
    margin-top: 0;
    width: 60%;
  }
}
body.page-template-blog .blog__inner--item .right__inner {
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
body.page-template-blog .blog__inner--item .right__inner a:hover {
  text-decoration: none;
}
body.page-template-blog .blog__inner--item .right__inner h3 {
  font-family: gopher, sans-serif;
  margin: 0 0 25px 0;
  font-weight: 400;
  color: #025f1d;
  font-size: 26px;
}
body.page-template-blog .blog__inner--item .right__inner .button {
  text-align: center;
  margin-top: 15px;
  display: flex;
  justify-content: center;
}
@media (min-width: 480px) {
  body.page-template-blog .blog__inner--item .right__inner .button {
    margin-top: 25px;
  }
}
body.page-template-blog .blog__inner--item .right__inner .button a {
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  border: 1px solid #025f1d;
  height: 75px;
  background-color: #025f1d;
  border-radius: 50%;
}
body.page-template-blog .blog__inner--item .right__inner .button a:hover, body.page-template-blog .blog__inner--item .right__inner .button a:focus {
  background-color: transparent;
  color: #025f1d;
  text-decoration: none;
}
body.page-template-blog .newsletter {
  max-width: 720px;
  width: 100%;
  margin: 100px auto 0 auto;
  padding: 0 25px;
}
body.page-template-blog .newsletter h3 {
  font-family: gopher, sans-serif;
  font-size: 26px;
}
body.page-template-blog .newsletter .form {
  margin-top: 25px;
  margin-bottom: 50px;
}
body.page-template-blog .newsletter .form label {
  display: none;
}
body.page-template-blog .newsletter .form input,
body.page-template-blog .newsletter .form select,
body.page-template-blog .newsletter .form button {
  padding: 10px;
}
body.page-template-blog .newsletter .form input,
body.page-template-blog .newsletter .form select {
  border: 1px solid #000;
  background-color: transparent;
  color: #025f1d;
  width: 100%;
  margin-bottom: 15px;
}
body.page-template-blog .newsletter .form input::placeholder,
body.page-template-blog .newsletter .form select::placeholder {
  color: #025f1d;
}
body.page-template-blog .newsletter .form button {
  background-color: #025f1d;
  border: 1px solid #025f1d;
  border-radius: 0;
  transition: 0.5s;
  width: 100%;
  color: #fff;
  font-weight: bold;
}
body.page-template-blog .newsletter .form button:hover {
  background-color: transparent;
  color: #025f1d;
}

body.tax-product_cat .product-cat,
body.page-template-shop .product-cat {
  padding-top: 75px;
}
@media (min-width: 768px) {
  body.tax-product_cat .product-cat,
  body.page-template-shop .product-cat {
    padding-top: 125px;
  }
}
body.tax-product_cat .product-cat__header,
body.page-template-shop .product-cat__header {
  background-color: rgba(236, 186, 168, 0.18);
  width: 100%;
}
body.tax-product_cat .product-cat__header .inner,
body.page-template-shop .product-cat__header .inner {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
  padding: 150px 0 50px 0;
  text-align: center;
}
@media (min-width: 768px) {
  body.tax-product_cat .product-cat__header .inner,
  body.page-template-shop .product-cat__header .inner {
    padding: 180px 0 50px 0;
  }
}
body.tax-product_cat .product-cat__header .inner h1,
body.page-template-shop .product-cat__header .inner h1 {
  margin: 0 0 50px 0;
  font-family: gopher, sans-serif;
  color: #025f1d;
  font-size: 36px;
  width: 100%;
}
body.tax-product_cat .product-cat__header .inner .cats ul,
body.page-template-shop .product-cat__header .inner .cats ul {
  list-style: none;
  margin: 0;
  padding: 0 12.5px;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  body.tax-product_cat .product-cat__header .inner .cats ul,
  body.page-template-shop .product-cat__header .inner .cats ul {
    padding: 0;
  }
}
body.tax-product_cat .product-cat__header .inner .cats ul li,
body.page-template-shop .product-cat__header .inner .cats ul li {
  width: 33.3333%;
  padding: 0 12.5px;
  text-align: center;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  body.tax-product_cat .product-cat__header .inner .cats ul li,
  body.page-template-shop .product-cat__header .inner .cats ul li {
    padding: 0 25px;
  }
}
body.tax-product_cat .product-cat__header .inner .cats ul li a,
body.page-template-shop .product-cat__header .inner .cats ul li a {
  display: flex;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 1px solid #025f1d;
  text-align: center;
  align-items: center;
  justify-content: center;
  color: #025f1d;
  font-family: gopher, sans-serif;
  font-size: 14px;
  padding: 10px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  body.tax-product_cat .product-cat__header .inner .cats ul li a,
  body.page-template-shop .product-cat__header .inner .cats ul li a {
    font-size: 22px;
    width: 150px;
    height: 150px;
  }
}
body.tax-product_cat .product-cat__header .inner .cats ul li a.current,
body.page-template-shop .product-cat__header .inner .cats ul li a.current {
  background-color: #ecbaa8;
}
body.tax-product_cat .product-cat__header .inner .cats ul li a:hover, body.tax-product_cat .product-cat__header .inner .cats ul li a:focus,
body.page-template-shop .product-cat__header .inner .cats ul li a:hover,
body.page-template-shop .product-cat__header .inner .cats ul li a:focus {
  background-color: #ecbaa8;
  text-decoration: none;
}
body.tax-product_cat .product-cat__start,
body.page-template-shop .product-cat__start {
  position: relative;
  z-index: 10;
}
body.tax-product_cat .product-cat__start:after,
body.page-template-shop .product-cat__start:after {
  content: "";
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75%;
  background-color: #ecbaa8;
}
body.tax-product_cat .product-cat__start .product,
body.page-template-shop .product-cat__start .product {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: 75px 25px 50px 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
body.tax-product_cat .product-cat__start .product__left,
body.page-template-shop .product-cat__start .product__left {
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  body.tax-product_cat .product-cat__start .product__left,
  body.page-template-shop .product-cat__start .product__left {
    width: 40%;
    text-align: left;
    padding-right: 50px;
  }
}
body.tax-product_cat .product-cat__start .product__left img,
body.page-template-shop .product-cat__start .product__left img {
  max-width: 360px;
  margin: 0 auto;
  width: 100%;
  border-radius: 20px;
  height: auto;
}
@media (min-width: 768px) {
  body.tax-product_cat .product-cat__start .product__left img,
  body.page-template-shop .product-cat__start .product__left img {
    max-width: 100%;
  }
}
body.tax-product_cat .product-cat__start .product__right,
body.page-template-shop .product-cat__start .product__right {
  width: 100%;
  max-width: 320px;
  margin: 25px auto 0 auto;
  text-align: center;
}
@media (min-width: 768px) {
  body.tax-product_cat .product-cat__start .product__right,
  body.page-template-shop .product-cat__start .product__right {
    width: 60%;
    text-align: left;
    padding-left: 50px;
    max-width: 100%;
    margin: 0;
  }
}
body.tax-product_cat .product-cat__start .product__right h3,
body.page-template-shop .product-cat__start .product__right h3 {
  color: #025f1d;
  font-family: gopher, sans-serif;
  font-size: 36px;
  margin: 0 0 25px 0;
}
body.tax-product_cat .product-cat__start .product__right .description strong,
body.page-template-shop .product-cat__start .product__right .description strong {
  color: red;
}
body.tax-product_cat .product-cat__start .product__right .description p,
body.page-template-shop .product-cat__start .product__right .description p {
  line-height: 1;
  margin: 10px 0 0 0;
}
body.tax-product_cat .product-cat__start .product__right .total,
body.page-template-shop .product-cat__start .product__right .total {
  margin-top: 25px;
  font-size: 26px;
}
body.tax-product_cat .product-cat__start .product__right .total span,
body.page-template-shop .product-cat__start .product__right .total span {
  font-size: 18px;
}
body.tax-product_cat .product-cat__start .product__right .button a,
body.page-template-shop .product-cat__start .product__right .button a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 100px;
  height: 100px;
  color: #fff;
  font-family: gopher, sans-serif;
  font-size: 22px;
  background-color: #025f1d;
  border-radius: 50%;
}
@media (min-width: 768px) {
  body.tax-product_cat .product-cat__start .product__right .button a,
  body.page-template-shop .product-cat__start .product__right .button a {
    margin: 0;
    text-decoration: none;
  }
}
body.tax-product_cat .product-cat__items,
body.page-template-shop .product-cat__items {
  padding-bottom: 75px;
}
body.tax-product_cat .product-cat__items .circle,
body.page-template-shop .product-cat__items .circle {
  width: 60px;
  height: 60px;
  background-color: #025f1d;
  border: 15px solid #ecbaa8;
  border-radius: 50%;
  margin: 75px auto 0 auto;
}
body.tax-product_cat .product-cat .product-block,
body.page-template-shop .product-cat .product-block {
  width: 100%;
  position: relative;
  z-index: 10;
}
body.tax-product_cat .product-cat .product-block:after,
body.page-template-shop .product-cat .product-block:after {
  content: "";
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75%;
  background-color: #ecbaa8;
  display: none;
}
@media (min-width: 768px) {
  body.tax-product_cat .product-cat .product-block:after,
  body.page-template-shop .product-cat .product-block:after {
    display: block;
  }
}
body.tax-product_cat .product-cat .product-block__inner,
body.page-template-shop .product-cat .product-block__inner {
  display: flex;
  flex-wrap: wrap;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}
body.tax-product_cat .product-cat .product-block .product,
body.page-template-shop .product-cat .product-block .product {
  width: 100%;
  padding: 75px 25px 50px 25px;
  position: relative;
  z-index: 10;
}
body.tax-product_cat .product-cat .product-block .product:after,
body.page-template-shop .product-cat .product-block .product:after {
  content: "";
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75%;
  background-color: #ecbaa8;
}
@media (min-width: 768px) {
  body.tax-product_cat .product-cat .product-block .product:after,
  body.page-template-shop .product-cat .product-block .product:after {
    display: none;
  }
}
@media (min-width: 768px) {
  body.tax-product_cat .product-cat .product-block .product,
  body.page-template-shop .product-cat .product-block .product {
    width: 33.3333%;
  }
}
body.tax-product_cat .product-cat .product-block .product__left,
body.page-template-shop .product-cat .product-block .product__left {
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  body.tax-product_cat .product-cat .product-block .product__left,
  body.page-template-shop .product-cat .product-block .product__left {
    text-align: left;
  }
}
body.tax-product_cat .product-cat .product-block .product__left img,
body.page-template-shop .product-cat .product-block .product__left img {
  max-width: 360px;
  margin: 0 auto;
  width: 100%;
  border-radius: 20px;
  height: auto;
}
@media (min-width: 768px) {
  body.tax-product_cat .product-cat .product-block .product__left img,
  body.page-template-shop .product-cat .product-block .product__left img {
    max-width: 100%;
  }
}
body.tax-product_cat .product-cat .product-block .product__right,
body.page-template-shop .product-cat .product-block .product__right {
  width: 100%;
  margin-top: 25px;
  text-align: center;
}
@media (min-width: 768px) {
  body.tax-product_cat .product-cat .product-block .product__right,
  body.page-template-shop .product-cat .product-block .product__right {
    text-align: left;
  }
}
body.tax-product_cat .product-cat .product-block .product__right h3,
body.page-template-shop .product-cat .product-block .product__right h3 {
  color: #025f1d;
  font-family: gopher, sans-serif;
  font-size: 28px;
  margin: 0 0 25px 0;
}
body.tax-product_cat .product-cat .product-block .product__right .description strong,
body.page-template-shop .product-cat .product-block .product__right .description strong {
  color: red;
}
body.tax-product_cat .product-cat .product-block .product__right .description p,
body.page-template-shop .product-cat .product-block .product__right .description p {
  line-height: 1;
  margin: 10px 0 0 0;
}
body.tax-product_cat .product-cat .product-block .product__right .total,
body.page-template-shop .product-cat .product-block .product__right .total {
  margin-top: 25px;
  font-size: 26px;
}
body.tax-product_cat .product-cat .product-block .product__right .total span,
body.page-template-shop .product-cat .product-block .product__right .total span {
  font-size: 18px;
}
body.tax-product_cat .product-cat .product-block .product__right .button a,
body.page-template-shop .product-cat .product-block .product__right .button a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 100px;
  height: 100px;
  color: #fff;
  font-family: gopher, sans-serif;
  font-size: 22px;
  background-color: #025f1d;
  border-radius: 50%;
}
@media (min-width: 768px) {
  body.tax-product_cat .product-cat .product-block .product__right .button a,
  body.page-template-shop .product-cat .product-block .product__right .button a {
    margin: 0;
    text-decoration: none;
  }
}
body.tax-product_cat .product-cat .info-packages,
body.page-template-shop .product-cat .info-packages {
  margin-top: 48px;
}
body.tax-product_cat .product-cat .info-packages .circle,
body.page-template-shop .product-cat .info-packages .circle {
  width: 60px;
  height: 60px;
  background-color: #025f1d;
  border: 15px solid #ecbaa8;
  border-radius: 50%;
  margin: 75px auto 0 auto;
}
body.tax-product_cat .product-cat .info-packages h2,
body.page-template-shop .product-cat .info-packages h2 {
  text-align: center;
  margin: 25px 0 0 0;
  font-family: gopher, sans-serif;
  color: #025f1d;
  font-size: 36px;
  width: 100%;
}
body.tax-product_cat .product-cat .product-cat-seperate h2,
body.page-template-shop .product-cat .product-cat-seperate h2 {
  text-align: center;
  margin: 25px 0 0 0;
  font-family: gopher, sans-serif;
  color: #025f1d;
  font-size: 36px;
  width: 100%;
}
body.tax-product_cat .product-cat .product-cat-seperate .product-block:after,
body.page-template-shop .product-cat .product-cat-seperate .product-block:after {
  background-color: rgba(236, 186, 168, 0.18);
}
body.tax-product_cat .product-cat .product-cat-seperate .product-block__inner .product:after,
body.page-template-shop .product-cat .product-cat-seperate .product-block__inner .product:after {
  background-color: rgba(236, 186, 168, 0.18);
}

body.woocommerce-cart .page-wrapper {
  min-height: 100vh;
  width: 100%;
  padding: 110px 25px 25px 25px;
  position: relative;
}
@media (min-width: 1200px) {
  body.woocommerce-cart .page-wrapper {
    padding: 165px 25px 25px 25px;
  }
}
body.woocommerce-cart .page-wrapper h1.entry-title {
  display: none;
}
body.woocommerce-cart .page-wrapper h1 {
  font-family: gopher, sans-serif;
  font-size: 30px;
}
body.woocommerce-cart .page-wrapper div.title {
  max-width: 1240px;
  margin: 0 auto 50px auto;
  width: 100%;
  font-family: gopher, sans-serif;
}
body.woocommerce-cart .page-wrapper .woocommerce {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}
body.woocommerce-cart .page-wrapper .woocommerce table.shop_table {
  position: relative;
}
body.woocommerce-cart .page-wrapper .woocommerce table.shop_table tr {
  position: relative;
}
@media (max-width: 767px) {
  body.woocommerce-cart .page-wrapper .woocommerce table.shop_table tr:first-child .product-remove {
    border-top: 0;
  }
}
body.woocommerce-cart .page-wrapper .woocommerce table.shop_table .product-remove {
  background-color: transparent;
}
@media (max-width: 767px) {
  body.woocommerce-cart .page-wrapper .woocommerce table.shop_table .product-remove {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 50px;
    right: 0;
  }
}
body.woocommerce-cart .page-wrapper .woocommerce table.shop_table .product-remove a {
  text-indent: -9999px;
  border: 0;
  font-size: 0;
  width: 20px;
  height: 25px;
  display: flex;
}
@media (min-width: 768px) {
  body.woocommerce-cart .page-wrapper .woocommerce table.shop_table .product-remove a {
    padding-top: 7px;
  }
}
body.woocommerce-cart .page-wrapper .woocommerce table.shop_table .product-remove a:hover {
  background-color: transparent;
}
body.woocommerce-cart .page-wrapper .woocommerce table.shop_table .product-remove a::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='trash' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' class='svg-inline--fa fa-trash fa-w-14 fa-3x'%3E%3Cpath fill='%23025f1d' d='M432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zM53.2 467a48 48 0 0 0 47.9 45h245.8a48 48 0 0 0 47.9-45L416 128H32z' class=''%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 15px;
  width: 25px;
  height: 25px;
  display: flex;
}
body.woocommerce-cart .page-wrapper .woocommerce table.shop_table .product-thumbnail {
  display: block !important;
  background-color: transparent;
}
body.woocommerce-cart .page-wrapper .woocommerce table.shop_table .product-thumbnail img {
  border-radius: 5px;
}
@media (max-width: 767px) {
  body.woocommerce-cart .page-wrapper .woocommerce table.shop_table .product-thumbnail {
    text-align: left !important;
    min-width: 100px;
    position: absolute;
    top: 35px;
    left: 0;
  }
  body.woocommerce-cart .page-wrapper .woocommerce table.shop_table .product-thumbnail img {
    width: 100px;
    border-radius: 10px;
  }
}
body.woocommerce-cart .page-wrapper .woocommerce table.shop_table .product-thumbnail::before {
  display: none;
}
body.woocommerce-cart .page-wrapper .woocommerce table.shop_table .product-quantity .minus,
body.woocommerce-cart .page-wrapper .woocommerce table.shop_table .product-quantity .plus {
  width: 35px;
  background-color: #025f1d;
  color: #fff;
  border: 1px solid #025f1d;
}
body.woocommerce-cart .page-wrapper .woocommerce table.shop_table .product-quantity input {
  height: 30px;
}
body.woocommerce-cart .page-wrapper .woocommerce table.shop_table .product-name {
  background-color: transparent;
}
@media (max-width: 767px) {
  body.woocommerce-cart .page-wrapper .woocommerce table.shop_table .product-name {
    width: calc(100% - 125px);
    margin: 0 0 0 auto;
  }
  body.woocommerce-cart .page-wrapper .woocommerce table.shop_table .product-name::before {
    display: none;
  }
}
body.woocommerce-cart .page-wrapper .woocommerce table.shop_table .product-name a {
  color: #025f1d;
}
body.woocommerce-cart .page-wrapper .woocommerce table.shop_table .product-price {
  background-color: transparent;
}
@media (max-width: 767px) {
  body.woocommerce-cart .page-wrapper .woocommerce table.shop_table .product-price {
    border-top: 0;
    min-height: 100px;
    width: calc(100% - 125px);
    margin: 0 0 0 auto;
  }
  body.woocommerce-cart .page-wrapper .woocommerce table.shop_table .product-price::before {
    display: none;
  }
}
body.woocommerce-cart .page-wrapper .woocommerce table.shop_table .product-price .wcsatt-options {
  padding: 0;
}
body.woocommerce-cart .page-wrapper .woocommerce table.shop_table .product-subtotal {
  display: none;
}
@media (max-width: 767px) {
  body.woocommerce-cart .page-wrapper .woocommerce table.shop_table td.actions .coupon {
    display: flex;
    flex-wrap: wrap;
  }
  body.woocommerce-cart .page-wrapper .woocommerce table.shop_table td.actions .coupon button,
  body.woocommerce-cart .page-wrapper .woocommerce table.shop_table td.actions .coupon input {
    width: 50%;
    float: none;
    margin: 0;
    border-radius: 0;
    font-size: 14px;
  }
}
body.woocommerce-cart .page-wrapper .woocommerce table.shop_table td.actions input {
  width: 200px;
  padding: 8px 6px 5px;
}
body.woocommerce-cart .page-wrapper .woocommerce table.shop_table td.actions button[name=update_cart] {
  display: none;
}
body.woocommerce-cart .page-wrapper .woocommerce table.shop_table td.actions button {
  background-color: #025f1d;
  border: 1px solid #025f1d;
  color: #fff;
  font-weight: 400;
  transition: 0.5s;
}
body.woocommerce-cart .page-wrapper .woocommerce table.shop_table td.actions button:hover, body.woocommerce-cart .page-wrapper .woocommerce table.shop_table td.actions button:focus {
  background-color: transparent;
  color: #025f1d;
}
body.woocommerce-cart .page-wrapper .woocommerce .cart_totals h2 {
  font-family: gopher, sans-serif;
  font-size: 26px;
}
body.woocommerce-cart .page-wrapper .woocommerce .cart_totals table .shipping.recurring-total {
  display: none;
}
body.woocommerce-cart .page-wrapper .woocommerce .cart_totals .wc-proceed-to-checkout a {
  background-color: #025f1d;
  border: 1px solid #025f1d;
  color: #fff;
  font-weight: 400;
  transition: 0.5s;
  font-size: 20px;
}
body.woocommerce-cart .page-wrapper .woocommerce .cart_totals .wc-proceed-to-checkout a:hover, body.woocommerce-cart .page-wrapper .woocommerce .cart_totals .wc-proceed-to-checkout a:focus {
  background-color: transparent;
  color: #025f1d;
}

body.woocommerce-checkout #customer_login h2 {
  margin-bottom: 25px;
  margin-top: 25px;
}
body.woocommerce-checkout #customer_login .description {
  margin-bottom: 50px;
}
body.woocommerce-checkout #customer_login .description p {
  text-align: center;
}
body.woocommerce-checkout #customer_login .description p:last-child {
  margin-bottom: 0;
}
body.woocommerce-checkout .page-wrapper {
  min-height: 100vh;
  width: 100%;
  padding: 110px 25px 25px 25px;
  position: relative;
}
@media (min-width: 1200px) {
  body.woocommerce-checkout .page-wrapper {
    padding: 165px 25px 25px 25px;
  }
}
body.woocommerce-checkout .page-wrapper .woocommerce {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}
body.woocommerce-checkout .page-wrapper .woocommerce .mailchimp-newsletter {
  align-items: center;
}
body.woocommerce-checkout .page-wrapper .woocommerce .mailchimp-newsletter label {
  margin: 0;
}
body.woocommerce-checkout .page-wrapper .woocommerce .checkout_coupon p {
  width: 100%;
}
body.woocommerce-checkout .page-wrapper .woocommerce .checkout_coupon .form-row {
  width: 100%;
  float: none;
}
body.woocommerce-checkout .page-wrapper .woocommerce .checkout_coupon .form-row input {
  height: 35px;
  padding: 0 10px;
}
body.woocommerce-checkout .page-wrapper .woocommerce .checkout_coupon .form-row button {
  background-color: #025f1d;
  border: 1px solid #025f1d;
  color: #fff;
  font-weight: 400;
  transition: 0.5s;
}
body.woocommerce-checkout .page-wrapper .woocommerce .checkout_coupon .form-row button:hover, body.woocommerce-checkout .page-wrapper .woocommerce .checkout_coupon .form-row button:focus {
  background-color: transparent;
  color: #025f1d;
}
body.woocommerce-checkout .page-wrapper .woocommerce form {
  display: flex;
  flex-wrap: wrap;
}
body.woocommerce-checkout .page-wrapper .woocommerce form .woocommerce-NoticeGroup {
  width: 100%;
}
body.woocommerce-checkout .page-wrapper .woocommerce form .col2-set,
body.woocommerce-checkout .page-wrapper .woocommerce form .woocommerce-checkout-review-order {
  width: 100%;
}
@media (min-width: 768px) {
  body.woocommerce-checkout .page-wrapper .woocommerce form .col2-set,
  body.woocommerce-checkout .page-wrapper .woocommerce form .woocommerce-checkout-review-order {
    width: 50%;
  }
}
body.woocommerce-checkout .page-wrapper .woocommerce form #order_review_heading {
  display: none;
}
body.woocommerce-checkout .page-wrapper .woocommerce form table.shop_table .shipping.recurring-total {
  display: none;
}
body.woocommerce-checkout .page-wrapper .woocommerce form .woocommerce-checkout-review-order {
  margin-top: 23px;
}
body.woocommerce-checkout .page-wrapper .woocommerce form .woocommerce-checkout-review-order table {
  border-color: #000;
  border-radius: 0;
}
body.woocommerce-checkout .page-wrapper .woocommerce form .woocommerce-checkout-review-order table tbody tr td {
  border-color: #000;
}
body.woocommerce-checkout .page-wrapper .woocommerce form .col-1,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 {
  width: 100%;
  float: none;
  flex: none;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  body.woocommerce-checkout .page-wrapper .woocommerce form .col-1,
  body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 {
    padding-right: 25px;
  }
}
body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-billing-fields h3,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-shipping-fields h3,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-billing-fields h3,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-shipping-fields h3 {
  display: none;
}
body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-billing-fields__field-wrapper,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-shipping-fields__field-wrapper,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-billing-fields__field-wrapper,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-shipping-fields__field-wrapper {
  display: flex;
  flex-wrap: wrap;
}
body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-billing-fields__field-wrapper .form-row,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-shipping-fields__field-wrapper .form-row,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-billing-fields__field-wrapper .form-row,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-shipping-fields__field-wrapper .form-row {
  width: 100%;
  float: none;
  margin: 0;
  clear: none;
}
@media (max-width: 767px) {
  body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-billing-fields__field-wrapper .form-row,
  body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-shipping-fields__field-wrapper .form-row,
  body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-billing-fields__field-wrapper .form-row,
  body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-shipping-fields__field-wrapper .form-row {
    margin-bottom: 5px;
    padding: 0;
  }
}
@media (min-width: 768px) {
  body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-billing-fields__field-wrapper .form-row,
  body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-shipping-fields__field-wrapper .form-row,
  body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-billing-fields__field-wrapper .form-row,
  body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-shipping-fields__field-wrapper .form-row {
    width: 50%;
  }
}
@media (min-width: 768px) {
  body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-billing-fields__field-wrapper .form-row:nth-child(3),
  body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-shipping-fields__field-wrapper .form-row:nth-child(3),
  body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-billing-fields__field-wrapper .form-row:nth-child(3),
  body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-shipping-fields__field-wrapper .form-row:nth-child(3) {
    width: 100%;
  }
}
body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-billing-fields__field-wrapper .form-row label,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-shipping-fields__field-wrapper .form-row label,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-billing-fields__field-wrapper .form-row label,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-shipping-fields__field-wrapper .form-row label {
  color: #000;
  font-size: 14px;
}
@media (min-width: 768px) {
  body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-billing-fields__field-wrapper .form-row label,
  body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-shipping-fields__field-wrapper .form-row label,
  body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-billing-fields__field-wrapper .form-row label,
  body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-shipping-fields__field-wrapper .form-row label {
    font-size: 12px;
  }
}
@media (min-width: 1200px) {
  body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-billing-fields__field-wrapper .form-row label,
  body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-shipping-fields__field-wrapper .form-row label,
  body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-billing-fields__field-wrapper .form-row label,
  body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-shipping-fields__field-wrapper .form-row label {
    font-size: 16px;
  }
}
body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-billing-fields__field-wrapper .form-row label,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-billing-fields__field-wrapper .form-row span,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-billing-fields__field-wrapper .form-row input,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-billing-fields__field-wrapper .form-row select,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-shipping-fields__field-wrapper .form-row label,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-shipping-fields__field-wrapper .form-row span,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-shipping-fields__field-wrapper .form-row input,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-shipping-fields__field-wrapper .form-row select,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-billing-fields__field-wrapper .form-row label,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-billing-fields__field-wrapper .form-row span,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-billing-fields__field-wrapper .form-row input,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-billing-fields__field-wrapper .form-row select,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-shipping-fields__field-wrapper .form-row label,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-shipping-fields__field-wrapper .form-row span,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-shipping-fields__field-wrapper .form-row input,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-shipping-fields__field-wrapper .form-row select {
  width: 100%;
}
body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-billing-fields__field-wrapper .form-row input,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-billing-fields__field-wrapper .form-row select,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-shipping-fields__field-wrapper .form-row input,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-shipping-fields__field-wrapper .form-row select,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-billing-fields__field-wrapper .form-row input,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-billing-fields__field-wrapper .form-row select,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-shipping-fields__field-wrapper .form-row input,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-shipping-fields__field-wrapper .form-row select {
  padding: 10px;
  border: 1px solid #000;
  color: #000;
}
body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-billing-fields__field-wrapper .form-row input:focus,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-billing-fields__field-wrapper .form-row select:focus,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-shipping-fields__field-wrapper .form-row input:focus,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-shipping-fields__field-wrapper .form-row select:focus,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-billing-fields__field-wrapper .form-row input:focus,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-billing-fields__field-wrapper .form-row select:focus,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-shipping-fields__field-wrapper .form-row input:focus,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-shipping-fields__field-wrapper .form-row select:focus {
  outline: 0;
}
body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-billing-fields__field-wrapper .form-row .select2-container--default .select2-selection--single,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-shipping-fields__field-wrapper .form-row .select2-container--default .select2-selection--single,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-billing-fields__field-wrapper .form-row .select2-container--default .select2-selection--single,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-shipping-fields__field-wrapper .form-row .select2-container--default .select2-selection--single {
  padding: 5px;
  border-color: #000;
  margin: 0;
  height: auto;
  border-radius: 0;
}
body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-billing-fields__field-wrapper .form-row .select2-container--default .select2-selection--single .select2-selection__arrow b,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-shipping-fields__field-wrapper .form-row .select2-container--default .select2-selection--single .select2-selection__arrow b,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-billing-fields__field-wrapper .form-row .select2-container--default .select2-selection--single .select2-selection__arrow b,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-shipping-fields__field-wrapper .form-row .select2-container--default .select2-selection--single .select2-selection__arrow b {
  left: unset;
  right: 10px;
  margin: 0;
  top: 60%;
}
body.woocommerce-checkout .page-wrapper .woocommerce form .col-1 .woocommerce-shipping-fields h3,
body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 .woocommerce-shipping-fields h3 {
  display: block;
  font-size: 22px;
}
body.woocommerce-checkout .page-wrapper .woocommerce form .col-2 {
  margin-top: 35px;
}
body.woocommerce-checkout .page-wrapper .woocommerce form #payment {
  border-radius: 0;
  background-color: rgba(236, 186, 168, 0.18);
}
body.woocommerce-checkout .page-wrapper .woocommerce form #payment ul li {
  position: relative;
}
body.woocommerce-checkout .page-wrapper .woocommerce form #payment ul li input {
  width: 15px;
  height: 15px;
  background-color: #025f1d;
  position: absolute;
  left: 0;
  top: 7px;
}
body.woocommerce-checkout .page-wrapper .woocommerce form #payment ul li input:checked {
  background-color: #025f1d;
}
body.woocommerce-checkout .page-wrapper .woocommerce form #payment ul li input:focus {
  outline: 0;
}
body.woocommerce-checkout .page-wrapper .woocommerce form #payment ul li label {
  color: #025f1d;
  padding-left: 25px;
}
body.woocommerce-checkout .page-wrapper .woocommerce form #payment ul li div.payment_box {
  background-color: #025f1d;
}
body.woocommerce-checkout .page-wrapper .woocommerce form #payment ul li div.payment_box::before {
  border-color: #025f1d;
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
}
body.woocommerce-checkout .page-wrapper .woocommerce form #payment ul li div.payment_box p {
  color: #fff;
  font-weight: bold;
}
body.woocommerce-checkout .page-wrapper .woocommerce form #payment ul li div.payment_box p select {
  padding: 10px;
  border: 1px solid #fff;
  width: 100%;
}
body.woocommerce-checkout .page-wrapper .woocommerce form #payment ul li div.payment_box p select:focus {
  outline: 0;
}
body.woocommerce-checkout .page-wrapper .woocommerce form #payment .place-order .woocommerce-terms-and-conditions-wrapper {
  width: 100%;
}
body.woocommerce-checkout .page-wrapper .woocommerce form #payment .place-order .woocommerce-terms-and-conditions-wrapper p {
  color: #025f1d;
}
body.woocommerce-checkout .page-wrapper .woocommerce form #payment .place-order .woocommerce-terms-and-conditions-wrapper a {
  color: #025f1d;
  font-weight: bold;
}
body.woocommerce-checkout .page-wrapper .woocommerce form #payment .place-order .woocommerce-terms-and-conditions-wrapper input {
  width: 15px;
  height: 15px;
  background-color: #fff;
  display: inline-block;
}
body.woocommerce-checkout .page-wrapper .woocommerce form #payment .place-order .woocommerce-terms-and-conditions-wrapper input:checked {
  background-color: #025f1d;
}
body.woocommerce-checkout .page-wrapper .woocommerce form #payment .place-order .woocommerce-terms-and-conditions-wrapper input:focus {
  outline: 0;
}
body.woocommerce-checkout .page-wrapper .woocommerce form #payment .place-order button {
  background-color: #025f1d;
  color: #fff;
  border-radius: 0;
  float: none;
  transition: 0.5s;
  border: 1px solid #025f1d;
}
body.woocommerce-checkout .page-wrapper .woocommerce form #payment .place-order button:hover, body.woocommerce-checkout .page-wrapper .woocommerce form #payment .place-order button:focus {
  background-color: transparent;
  color: #025f1d;
}
body.woocommerce-checkout .page-wrapper .woocommerce .woocommerce-myparcel__delivery-options {
  margin-top: 25px;
}
body.woocommerce-checkout .page-wrapper .woocommerce .woocommerce-myparcel__delivery-options div {
  width: 100%;
}
body.woocommerce-checkout .page-wrapper .woocommerce .woocommerce-myparcel__delivery-options button {
  background-color: #025f1d;
  color: #fff;
  border-radius: 0;
  float: none;
  transition: 0.5s;
  border: 1px solid #025f1d;
}
body.woocommerce-checkout .page-wrapper .woocommerce .myparcel-delivery-options__modal {
  padding: 0;
}
body.woocommerce-checkout .page-wrapper .woocommerce .myparcel-delivery-options__modal form p,
body.woocommerce-checkout .page-wrapper .woocommerce .myparcel-delivery-options__modal form label {
  width: 100%;
}
body.woocommerce-checkout .page-wrapper .woocommerce .myparcel-delivery-options__modal input {
  width: 100%;
  padding: 10px;
  border: 1px solid #000;
  color: #000;
}

body.post-type-archive-product .popup-product {
  position: fixed;
}
body.post-type-archive-product .woocommerce_page {
  min-height: 100vh;
  width: 100%;
  padding: 110px 0 25px 0;
  position: relative;
}
@media (min-width: 1200px) {
  body.post-type-archive-product .woocommerce_page {
    padding: 165px 0 25px 0;
  }
}
body.post-type-archive-product .woocommerce_page__inner h1 {
  padding: 0 25px;
  text-align: center;
  font-family: gopher, sans-serif;
  margin: 25px 0 50px 0;
  font-size: 30px;
}
body.post-type-archive-product .woocommerce_page__inner .woocommerce-notices-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: 0 25px;
}
body.post-type-archive-product .woocommerce_page__inner .products {
  margin: 0;
}
body.post-type-archive-product .woocommerce_page__inner .products li.product {
  margin: 0 0 50px 0 !important;
  z-index: 10;
  width: 100% !important;
}
body.post-type-archive-product .woocommerce_page__inner .products li.product:before {
  content: "";
  background-color: rgba(236, 186, 168, 0.18);
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  height: 325px;
  z-index: -1;
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: 50px 25px;
  display: flex;
  flex-wrap: wrap;
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .image-wrapper {
  width: 40%;
  text-align: center;
  padding-right: 12.5px;
}
@media (min-width: 768px) {
  body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .image-wrapper {
    width: 50%;
  }
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .image-wrapper .archive-swiper {
  max-width: 320px;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .image-wrapper .archive-swiper .swiper-wrapper .swiper-slide {
  height: auto;
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .image-wrapper .archive-swiper .swiper-products-pagination {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  z-index: 10;
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .image-wrapper .archive-swiper .swiper-products-pagination span {
  background-color: #ecbaa8;
  width: 10px;
  height: 10px;
  opacity: 1;
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .image-wrapper .archive-swiper .swiper-products-pagination span:focus {
  outline: 0;
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .image-wrapper .archive-swiper .swiper-products-pagination span.swiper-pagination-bullet-active {
  background-color: #025f1d;
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .image-wrapper img {
  max-width: 320px;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}
@media (min-width: 600px) {
  body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .image-wrapper img {
    height: 100%;
  }
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper {
  width: 60%;
  padding-left: 12.5px;
}
@media (min-width: 768px) {
  body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper {
    width: 50%;
  }
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .inner,
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .custom {
  width: 100%;
}
@media (min-width: 768px) {
  body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .inner,
  body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .custom {
    height: 50%;
  }
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .inner h2 {
  font-family: gopher, sans-serif;
  font-size: 20px;
  margin: 0;
}
@media (min-width: 600px) {
  body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .inner h2 {
    font-size: 26px;
  }
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .inner .price {
  margin-top: -10px;
}
@media (min-width: 768px) {
  body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .inner .price {
    margin-top: 0;
  }
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .inner .price span,
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .inner .price bdi {
  font-size: 16px;
  color: #025f1d;
}
@media (min-width: 600px) {
  body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .inner .price span,
  body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .inner .price bdi {
    font-size: 20px;
  }
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .inner a.ajax_add_to_cart {
  margin-top: 25px;
  display: flex;
  align-items: center;
  color: #025f1d;
  background-color: transparent;
  width: auto;
  position: relative;
  padding: 0;
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .inner a.ajax_add_to_cart:hover .circle, body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .inner a.ajax_add_to_cart:focus .circle {
  background-color: #025f1d;
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .inner a.ajax_add_to_cart:hover .circle__inner svg, body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .inner a.ajax_add_to_cart:focus .circle__inner svg {
  color: #fff;
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .inner a.ajax_add_to_cart span {
  font-weight: 100;
  position: absolute;
  left: 45px;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 600px) {
  body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .inner a.ajax_add_to_cart span {
    left: 60px;
  }
}
@media (min-width: 768px) {
  body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .inner a.ajax_add_to_cart span {
    left: 60px;
    width: 100%;
  }
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .inner a.ajax_add_to_cart .circle {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #025f1d;
  transition: 0.5s;
}
@media (min-width: 600px) {
  body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .inner a.ajax_add_to_cart .circle {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 767px) {
  body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .inner a.ajax_add_to_cart .circle {
    margin-right: 75px;
  }
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .inner a.ajax_add_to_cart .circle__inner svg {
  color: #025f1d;
  transition: 0.5s;
  width: 15px;
  height: 15px;
  margin-bottom: 2px;
}
@media (min-width: 600px) {
  body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .inner a.ajax_add_to_cart .circle__inner svg {
    width: 20px;
    height: 20px;
  }
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .custom {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  align-content: flex-end;
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .custom .text {
  width: 100%;
}
@media (max-width: 767px) {
  body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .custom .text {
    margin-top: 25px;
  }
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .custom .text p {
  font-size: 14px;
}
@media (min-width: 600px) {
  body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .custom .text p {
    font-size: 16px;
  }
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .custom .text p:last-child {
  margin-bottom: 0;
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .custom .text p a {
  display: none;
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .custom .ingredients,
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .custom .dose {
  width: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-top: 15px;
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .custom .ingredients.active .circle,
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .custom .dose.active .circle {
  transform: rotate(90deg);
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .custom .ingredients:hover .circle, body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .custom .ingredients:focus .circle,
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .custom .dose:hover .circle,
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .custom .dose:focus .circle {
  background-color: #025f1d;
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .custom .ingredients:hover .circle svg, body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .custom .ingredients:focus .circle svg,
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .custom .dose:hover .circle svg,
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .custom .dose:focus .circle svg {
  color: #fff;
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .custom .ingredients .circle,
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .custom .dose .circle {
  margin-right: 15px;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #025f1d;
  transition: 0.5s;
}
@media (min-width: 600px) {
  body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .custom .ingredients .circle,
  body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .custom .dose .circle {
    width: 35px;
    height: 35px;
  }
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .custom .ingredients .circle__inner svg,
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .custom .dose .circle__inner svg {
  color: #025f1d;
  transition: 0.5s;
  width: 15px;
  height: 15px;
  margin-bottom: 2px;
  margin-left: 2px;
}
@media (min-width: 600px) {
  body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .custom .ingredients .circle__inner svg,
  body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .custom .dose .circle__inner svg {
    width: 20px;
    height: 20px;
  }
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .custom .ingredients p,
body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .custom .dose p {
  font-size: 14px;
  margin: 0;
}
@media (min-width: 600px) {
  body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .custom .ingredients p,
  body.post-type-archive-product .woocommerce_page__inner .products li.product .inner-wrapper .info-wrapper .custom .dose p {
    font-size: 16px;
  }
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .ingredients-wrapper,
body.post-type-archive-product .woocommerce_page__inner .products li.product .dose-wrapper {
  display: none;
  background-color: transparent;
  padding: 0 25px;
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  body.post-type-archive-product .woocommerce_page__inner .products li.product .ingredients-wrapper,
  body.post-type-archive-product .woocommerce_page__inner .products li.product .dose-wrapper {
    margin-top: 50px;
  }
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .ingredients-wrapper.active,
body.post-type-archive-product .woocommerce_page__inner .products li.product .dose-wrapper.active {
  display: block;
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .ingredients-wrapper h1,
body.post-type-archive-product .woocommerce_page__inner .products li.product .dose-wrapper h1 {
  font-size: 28px;
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .ingredients-wrapper h2,
body.post-type-archive-product .woocommerce_page__inner .products li.product .dose-wrapper h2 {
  font-size: 26px;
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .ingredients-wrapper h3,
body.post-type-archive-product .woocommerce_page__inner .products li.product .dose-wrapper h3 {
  font-size: 24px;
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .ingredients-wrapper h4,
body.post-type-archive-product .woocommerce_page__inner .products li.product .dose-wrapper h4 {
  font-size: 22px;
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .ingredients-wrapper h1,
body.post-type-archive-product .woocommerce_page__inner .products li.product .ingredients-wrapper h2,
body.post-type-archive-product .woocommerce_page__inner .products li.product .ingredients-wrapper h3,
body.post-type-archive-product .woocommerce_page__inner .products li.product .ingredients-wrapper h4,
body.post-type-archive-product .woocommerce_page__inner .products li.product .dose-wrapper h1,
body.post-type-archive-product .woocommerce_page__inner .products li.product .dose-wrapper h2,
body.post-type-archive-product .woocommerce_page__inner .products li.product .dose-wrapper h3,
body.post-type-archive-product .woocommerce_page__inner .products li.product .dose-wrapper h4 {
  font-family: gopher, sans-serif;
  margin: 10px 0;
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .ingredients-wrapper ul,
body.post-type-archive-product .woocommerce_page__inner .products li.product .dose-wrapper ul {
  list-style: circle;
  padding-left: 20px;
}
body.post-type-archive-product .woocommerce_page__inner .products li.product .ingredients-wrapper ul li,
body.post-type-archive-product .woocommerce_page__inner .products li.product .dose-wrapper ul li {
  list-style: circle;
}
body.post-type-archive-product .woocommerce_page__inner .testimonial-slider-wrapper {
  max-width: 480px;
  margin: 50px auto;
  width: 100%;
}

body #customer_login {
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}
body #customer_login .u-column1,
body #customer_login .u-column2 {
  width: 100%;
  float: none;
  max-width: 100%;
  flex: none;
}
body #customer_login .u-column1 h2,
body #customer_login .u-column2 h2 {
  text-align: center;
  margin: 0 0 50px 0;
}
body #customer_login .u-column1 form,
body #customer_login .u-column2 form {
  margin: 0;
  border: 1px solid #000;
  border-radius: 0;
  padding: 15px 15px 0 15px;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  body #customer_login .u-column1 form p.lost_password,
  body #customer_login .u-column1 form p.register-account-wrap,
  body #customer_login .u-column2 form p.lost_password,
  body #customer_login .u-column2 form p.register-account-wrap {
    float: left;
    width: 50%;
  }
}
body #customer_login .u-column1 form p.lost_password a,
body #customer_login .u-column1 form p.register-account-wrap a,
body #customer_login .u-column2 form p.lost_password a,
body #customer_login .u-column2 form p.register-account-wrap a {
  background-color: #ecbaa8;
  color: #fff;
  display: inline-block;
  width: 100%;
  font-size: 16px;
  padding: 5px 10px;
  text-align: center;
  cursor: pointer;
}
body #customer_login .u-column1 form p.lost_password a:hover, body #customer_login .u-column1 form p.lost_password a:focus,
body #customer_login .u-column1 form p.register-account-wrap a:hover,
body #customer_login .u-column1 form p.register-account-wrap a:focus,
body #customer_login .u-column2 form p.lost_password a:hover,
body #customer_login .u-column2 form p.lost_password a:focus,
body #customer_login .u-column2 form p.register-account-wrap a:hover,
body #customer_login .u-column2 form p.register-account-wrap a:focus {
  background-color: #025f1d;
  text-decoration: none;
}
body #customer_login .u-column1 form p.login-account-wrap a,
body #customer_login .u-column2 form p.login-account-wrap a {
  background-color: #ecbaa8;
  color: #fff;
  display: inline-block;
  width: 100%;
  padding: 5px 10px;
  text-align: center;
  cursor: pointer;
}
body #customer_login .u-column1 form p.login-account-wrap a:hover, body #customer_login .u-column1 form p.login-account-wrap a:focus,
body #customer_login .u-column2 form p.login-account-wrap a:hover,
body #customer_login .u-column2 form p.login-account-wrap a:focus {
  background-color: #025f1d;
  text-decoration: none;
}
@media (min-width: 768px) {
  body #customer_login .u-column1 form p.lost_password,
  body #customer_login .u-column2 form p.lost_password {
    padding-right: 7.5px;
  }
}
@media (min-width: 768px) {
  body #customer_login .u-column1 form p.register-account-wrap,
  body #customer_login .u-column2 form p.register-account-wrap {
    padding-left: 7.5px;
  }
}
body #customer_login .u-column1 form p,
body #customer_login .u-column2 form p {
  margin-bottom: 15px;
  padding: 0;
  width: 100%;
}
body #customer_login .u-column1 form p button,
body #customer_login .u-column2 form p button {
  width: 100%;
  float: none;
  max-width: 100%;
  margin-right: 0;
  background-color: #025f1d;
  color: #fff;
  transition: 0.5s;
  font-weight: 500;
  border-radius: 0;
}
body #customer_login .u-column1 form p button:hover, body #customer_login .u-column1 form p button:focus,
body #customer_login .u-column2 form p button:hover,
body #customer_login .u-column2 form p button:focus {
  background-color: #ecbaa8;
  text-decoration: none;
}
body #customer_login .u-column1 form p a,
body #customer_login .u-column2 form p a {
  color: #000;
}
body #customer_login .u-column1 form p label,
body #customer_login .u-column2 form p label {
  display: block;
  width: 100%;
}
body #customer_login .u-column1 form p input#username,
body #customer_login .u-column1 form p input#password,
body #customer_login .u-column2 form p input#username,
body #customer_login .u-column2 form p input#password {
  height: 35px;
}
body #customer_login .u-column1 form p span.password-input,
body #customer_login .u-column2 form p span.password-input {
  width: 100%;
}
body #customer_login .u-column1 form p span.password-input .show-password-input,
body #customer_login .u-column2 form p span.password-input .show-password-input {
  top: 0.4em !important;
}
body #customer_login .u-column2 {
  display: none;
}
body #customer_login .u-column2 form {
  padding-bottom: 0;
}
body #customer_login .u-column2 form input,
body #customer_login .u-column2 form select {
  height: 35px;
}
body #customer_login .u-column2 form .vat-field,
body #customer_login .u-column2 form .kvk-field {
  display: none;
}
body #customer_login .u-column2 form span.password-input {
  width: 100%;
}
body #customer_login .u-column2 form span.password-input .show-password-input {
  top: 0.4em !important;
}

body.woocommerce-account .woocommerce {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 25px 0 25px;
}
@media (min-width: 768px) {
  body.woocommerce-account .woocommerce {
    padding: 150px 25px 0 25px;
  }
}
body.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation {
  background-color: #025f1d;
  padding: 15px;
}
body.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation ul li {
  margin-bottom: 10px;
}
body.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation ul li a {
  color: #fff;
  font-size: 22px;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content p {
  padding: 0;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content p::before {
  display: none;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content p mark {
  background-color: #ecbaa8;
  color: #fff;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content p input {
  width: 100%;
  height: 35px;
  padding-left: 10px;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content p label {
  color: #222;
  display: block;
  width: 100%;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content p span.password-input {
  display: block;
  width: 100%;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content p button {
  background-color: #025f1d;
  color: #fff;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content form fieldset {
  padding: 0;
  margin-top: 25px;
  margin-bottom: 25px;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content form fieldset legend {
  color: #222;
}

body.single-product {
  margin-bottom: 77px;
}
@media (min-width: 768px) {
  body.single-product {
    margin-bottom: 96px;
  }
}
body.single-product .woocommerce_page__inner {
  padding-bottom: 75px;
  position: relative;
}
body.single-product .woocommerce_page__inner .popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  background-color: rgb(236, 186, 168);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  overflow-y: scroll;
}
body.single-product .woocommerce_page__inner .popup.open {
  opacity: 1;
  visibility: visible;
}
body.single-product .woocommerce_page__inner .popup__close {
  position: absolute;
  top: 25px;
  left: 25px;
}
body.single-product .woocommerce_page__inner .popup__close svg {
  width: 35px;
  height: auto;
  fill: #025f1d;
}
body.single-product .woocommerce_page__inner .popup__inner {
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
  padding: 100px 25px 50px 25px;
}
body.single-product .woocommerce_page__inner .popup__inner h1,
body.single-product .woocommerce_page__inner .popup__inner h2,
body.single-product .woocommerce_page__inner .popup__inner h3,
body.single-product .woocommerce_page__inner .popup__inner h4,
body.single-product .woocommerce_page__inner .popup__inner strong {
  font-family: gopher, sans-serif;
}
body.single-product .woocommerce_page__inner .popup__inner a {
  text-decoration: underline;
  color: #025f1d;
  font-family: gopher, sans-serif;
}
body.single-product .woocommerce_page__inner .popup__inner ul,
body.single-product .woocommerce_page__inner .popup__inner ol {
  padding-left: 40px;
}
body.single-product .woocommerce_page__inner .popup__inner .ingredients {
  margin: 0 auto;
  max-width: 600px;
  width: 100%;
  overflow-x: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
body.single-product .woocommerce_page__inner .popup__inner .ingredients::-webkit-scrollbar {
  display: none;
}
body.single-product .woocommerce_page__inner .popup__inner .ingredients h2 {
  margin: 0 0 25px 0;
}
body.single-product .woocommerce_page__inner .popup__inner .ingredients__table table {
  width: 100%;
}
body.single-product .woocommerce_page__inner .popup__inner .ingredients__table table thead tr th {
  border-bottom: 1px solid #025f1d;
  font-weight: 300;
  font-size: 16px;
  padding-bottom: 5px;
}
body.single-product .woocommerce_page__inner .popup__inner .ingredients__table table tbody tr:last-child td {
  padding-bottom: 10px;
}
body.single-product .woocommerce_page__inner .popup__inner .ingredients__table table tbody tr td {
  padding-top: 10px;
}
body.single-product .woocommerce_page__inner .popup__inner .ingredients__table table tfoot tr td {
  border-top: 1px solid #025f1d;
  padding-top: 5px;
  font-size: 16px;
}
body.single-product .woocommerce_page__inner .popup__inner .ingredients .list {
  margin-top: 35px;
}
body.single-product .woocommerce_page__inner .popup__inner .ingredients .list h4 {
  font-size: 18px;
  font-weight: 300;
}
body.single-product .woocommerce_page__inner .popup__inner .ingredients .list p {
  font-size: 16px;
}
body.single-product .woocommerce_page__inner .popup__inner .ingredients .icons {
  background-color: #025f1d;
  width: 100%;
}
body.single-product .woocommerce_page__inner .popup__inner .ingredients .icons__inner {
  padding: 15px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
body.single-product .woocommerce_page__inner .popup__inner .ingredients .icons__inner img {
  width: 85px;
  height: auto;
  vertical-align: bottom;
}
body.single-product .woocommerce_page__inner .woocommerce-notices-wrapper {
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  z-index: 100;
}
@media (min-width: 1200px) {
  body.single-product .woocommerce_page__inner .woocommerce-notices-wrapper {
    top: 150px;
  }
}
body.single-product .woocommerce_page__inner .woocommerce-message {
  margin: 0;
}
body.single-product .woocommerce_page__inner .mobile-toggletop {
  position: relative;
  z-index: 10;
  margin-bottom: 25px;
  text-align: center;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .mobile-toggletop {
    display: none;
  }
}
body.single-product .woocommerce_page__inner .mobile-toggletop:after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -25px;
  width: calc(100% + 50px);
  height: 100vh;
  background-color: #fff;
  z-index: -1;
}
body.single-product .woocommerce_page__inner .mobile-toggletop h1 {
  font-family: gopher, sans-serif;
  font-size: 36px;
  margin: 0 0 20px 0;
}
body.single-product .woocommerce_page__inner .mobile-toggletop p {
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0 0 0;
}
body.single-product .woocommerce_page__inner .mobile-toggletop p strong {
  width: 175px;
  font-weight: 400;
}
body.single-product .woocommerce_page__inner .product-type-simple .combine:after {
  height: 45%;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .product-type-simple .combine:after {
    height: 55%;
  }
}
body.single-product .woocommerce_page__inner .product-type-simple .mobile-toggletop:after {
  bottom: -300px;
}
body.single-product .woocommerce_page__inner .product-type-simple .popup {
  background-color: #fcf3ef;
}
body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner {
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .woocommerce-product-gallery {
    width: 45%;
  }
}
body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
  max-width: 400px;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 11;
  margin: 0 auto;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
    margin: 0;
  }
}
body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .woocommerce-product-gallery .woocommerce-product-gallery__wrapper img {
  border-radius: 20px;
  max-width: 300px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .woocommerce-product-gallery .woocommerce-product-gallery__wrapper img {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .summary {
    width: 55%;
  }
}
body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .summary .cart {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .summary .cart p {
  width: 100%;
  text-align: center;
  font-size: 14px;
}
body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .summary .cart .quantity {
  width: 100%;
}
body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .summary .cart .floating-cart {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #ccc;
  align-items: center;
  transition: 0.5s;
}
body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .summary .cart .floating-cart.sticky {
  opacity: 1;
  visibility: visible;
}
body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .summary .cart .floating-cart .left {
  width: 100%;
  align-items: center;
  display: none;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .summary .cart .floating-cart .left {
    width: 60%;
    display: flex;
  }
}
body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .summary .cart .floating-cart .left .image {
  width: 75px;
  height: auto;
}
body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .summary .cart .floating-cart .left .image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: contain;
  vertical-align: bottom;
}
body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .summary .cart .floating-cart .left .title {
  width: calc(100% - 100px);
  padding-left: 15px;
}
body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .summary .cart .floating-cart .left .title p {
  font-size: 20px;
  margin: 0;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .summary .cart .floating-cart .left .title p {
    font-size: 24px;
  }
}
body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .summary .cart .floating-cart .right {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .summary .cart .floating-cart .right {
    width: 40%;
    padding-right: 75px;
    justify-content: flex-end;
  }
}
body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .summary .cart .floating-cart .right .price {
  padding-left: 15px;
  order: 2;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .summary .cart .floating-cart .right .price {
    order: 1;
    padding-right: 15px;
    padding-left: 0;
  }
}
body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .summary .cart .floating-cart .right .price p {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}
body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .summary .cart .floating-cart .right .button {
  order: 1;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .summary .cart .floating-cart .right .button {
    order: 2;
  }
}
body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .summary .cart .floating-cart .right .button button {
  height: auto;
  border-radius: 0;
  font-size: 18px;
  margin: 0;
}
body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .summary .items {
  border: 2px solid rgb(231, 173, 152);
  border-radius: 15px;
  padding: 25px 15px;
  width: 100%;
  margin-top: 75px;
}
body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .summary .items ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .summary .items ul li {
  margin-bottom: 15px;
}
body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .summary .items ul li:last-child {
  margin-bottom: 0;
}
body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .summary .items ul li a {
  color: #025f1d;
  cursor: pointer;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .summary .items ul li a {
    font-size: 20px;
  }
}
body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .summary .items ul li a:hover, body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .summary .items ul li a:focus {
  color: #000;
  text-decoration: none;
}
body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .summary .items ul li a:hover svg, body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .summary .items ul li a:focus svg {
  fill: #000;
}
body.single-product .woocommerce_page__inner .product-type-simple .top-wrapper__inner .summary .items ul li a svg {
  width: 15px;
  height: auto;
  fill: #025f1d;
  transition: 0.5s;
  padding-bottom: 3px;
  margin-right: 5px;
}
body.single-product .woocommerce_page__inner .top-wrapper {
  padding-top: 125px;
  background-color: rgba(236, 186, 168, 0.18);
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media (min-width: 1200px) {
  body.single-product .woocommerce_page__inner .top-wrapper {
    padding-top: 225px;
  }
}
body.single-product .woocommerce_page__inner .top-wrapper.ab {
  background-color: rgb(243, 213, 202);
}
body.single-product .woocommerce_page__inner .top-wrapper__inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: 0 25px;
  display: flex;
  flex-wrap: wrap;
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .onsale {
  display: none !important;
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .woocommerce-product-gallery {
  width: 100%;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .top-wrapper__inner .woocommerce-product-gallery {
    width: 40%;
    padding-right: 25px;
  }
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary {
  width: 100%;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .top-wrapper__inner .summary {
    width: 60%;
    margin-top: 0;
    padding-left: 25px;
  }
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary .preorder-avaiable-date-text {
  display: none;
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary h1 {
  font-family: gopher, sans-serif;
  font-size: 36px;
  margin: 0 0 20px 0;
  display: none;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .top-wrapper__inner .summary h1 {
    display: block;
  }
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary .woocommerce-product-details__short-description {
  margin-bottom: 35px;
  display: none;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .top-wrapper__inner .summary .woocommerce-product-details__short-description {
    display: block;
  }
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary .woocommerce-product-details__short-description p {
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0 0 0;
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary .woocommerce-product-details__short-description p strong {
  width: 175px;
  font-weight: 400;
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary .stock {
  display: none;
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary p.price {
  font-size: 26px;
  color: #025f1d;
  font-family: gopher, sans-serif;
  text-align: center;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .top-wrapper__inner .summary p.price {
    text-align: left;
  }
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary p.price .wcsatt-sub-options {
  display: none;
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary form .variations {
  width: 100%;
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary form .variations td.label {
  display: none;
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary form .variations td.value select {
  height: 0;
  visibility: hidden;
  opacity: 0;
  max-width: 0;
  min-width: 0;
  margin-right: 0;
  display: none;
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary form .variations td.value .radio-wrapper:last-child label {
  margin-bottom: 0;
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary form .variations td.value label {
  padding: 20px 25px 30px 25px;
  border: 1px solid #025f1d;
  border-radius: 15px;
  width: 100%;
  margin: 0 0 15px 0;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary form .variations td.value label input {
  margin-right: 15px;
  width: 25px;
  height: 25px;
  border: 3px solid #025f1d;
  background-color: #fff;
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary form .variations td.value label .variation-price {
  font-weight: 400;
  font-size: 20px;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .top-wrapper__inner .summary form .variations td.value label .variation-price {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
  }
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary form .variations td.value label .title {
  font-size: 22px;
  font-weight: 500;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .top-wrapper__inner .summary form .variations td.value label .title {
    font-size: 32px;
  }
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary form .variations td.value label .variation-description {
  position: absolute;
  left: 65px;
  bottom: 0;
  font-size: 12px;
  font-weight: 400;
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary form .reset_variations {
  display: none !important;
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary form .quantity {
  display: none !important;
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary form .wcsatt-options-wrapper {
  width: 100%;
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary form .wcsatt-options-wrapper .wcsatt-options-product-prompt {
  margin: 0;
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary form .wcsatt-options-wrapper .wcsatt-options-product-prompt .wcsatt-options-prompt-radios {
  padding: 0;
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary form .wcsatt-options-wrapper .wcsatt-options-product-prompt .wcsatt-options-prompt-radios li {
  list-style: none;
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary form .wcsatt-options-wrapper .wcsatt-options-product-prompt .wcsatt-options-prompt-radios li label {
  padding: 20px 25px 20px 60px;
  border: 2px solid #025f1d;
  border-radius: 15px;
  width: 100%;
  margin: 0 0 15px 0;
  position: relative;
  cursor: pointer;
  display: flex;
  z-index: 10;
  align-items: center;
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary form .wcsatt-options-wrapper .wcsatt-options-product-prompt .wcsatt-options-prompt-radios li label input {
  margin-right: 15px;
  width: 0;
  height: 0;
  opacity: 0;
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary form .wcsatt-options-wrapper .wcsatt-options-product-prompt .wcsatt-options-prompt-radios li label span.wcsatt-options-prompt-action {
  font-weight: 500;
  font-size: 20px;
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary form .wcsatt-options-wrapper .wcsatt-options-product-prompt .wcsatt-options-prompt-radios li label span.wcsatt-options-prompt-action:before {
  content: "";
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: 2px solid #025f1d;
  background-color: #fff;
  border-radius: 50%;
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary form .wcsatt-options-wrapper .wcsatt-options-product-prompt .wcsatt-options-prompt-radios li label span.wcsatt-options-prompt-action:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  z-index: -1;
  border-radius: 15px;
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary form .wcsatt-options-wrapper .wcsatt-options-product-prompt .wcsatt-options-prompt-radios li label span.wcsatt-options-prompt-action .price {
  font-size: 18px;
  color: #025f1d;
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary form .wcsatt-options-wrapper .wcsatt-options-product-prompt .wcsatt-options-prompt-radios li label .wcsatt-options-prompt-action-input:checked + .wcsatt-options-prompt-action:after {
  opacity: 1;
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary form .wcsatt-options-wrapper .wcsatt-options-product-prompt .wcsatt-options-prompt-radios li label .wcsatt-options-prompt-action-input:checked + .wcsatt-options-prompt-action:before {
  background-color: #025f1d;
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary form .wcsatt-options-wrapper .wcsatt-options-product-prompt .wcsatt-options-prompt-radios li label .variation-price {
  font-weight: 400;
  font-size: 20px;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .top-wrapper__inner .summary form .wcsatt-options-wrapper .wcsatt-options-product-prompt .wcsatt-options-prompt-radios li label .variation-price {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
  }
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary form .wcsatt-options-wrapper .wcsatt-options-product-prompt .wcsatt-options-prompt-radios li label .price {
  display: inline-block !important;
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary form .wcsatt-options-wrapper .wcsatt-options-product-prompt .wcsatt-options-prompt-radios li label .title {
  font-size: 22px;
  font-weight: 500;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .top-wrapper__inner .summary form .wcsatt-options-wrapper .wcsatt-options-product-prompt .wcsatt-options-prompt-radios li label .title {
    font-size: 32px;
  }
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary form .wcsatt-options-wrapper .wcsatt-options-product-prompt .wcsatt-options-prompt-radios li label .variation-description {
  position: absolute;
  left: 65px;
  bottom: 0;
  font-size: 12px;
  font-weight: 400;
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary form .wcsatt-options-wrapper .wcsatt-options-product-wrapper span {
  font-family: gopher, sans-serif;
  font-size: 24px;
  line-height: 1;
  margin: 0 0 15px 0;
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary form .wcsatt-options-wrapper .wcsatt-options-product-wrapper select {
  width: 100%;
  padding: 10px;
  border: 1px solid #025f1d;
  padding: 20px 10px 20px 10px;
  border-radius: 15px;
  background-color: transparent;
  color: #025f1d;
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary form .wcsatt-options-wrapper .wcsatt-options-product-wrapper select:focus {
  outline: 0;
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary .woocommerce-variation-add-to-cart {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary .woocommerce-variation-add-to-cart p {
  width: 100%;
  font-size: 14px;
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary button {
  margin-top: 15px;
  width: 150px;
  height: 150px;
  font-weight: 400;
  border-radius: 50%;
  border: 2px solid #025f1d;
  padding: 15px;
  background-color: #025f1d;
  color: #fff;
  line-height: 1.2;
  font-family: gopher, sans-serif;
  font-size: 20px;
}
body.single-product .woocommerce_page__inner .top-wrapper__inner .summary .product_meta {
  display: none;
}
body.single-product .woocommerce_page__inner .subscription-slider {
  background-color: rgb(243, 213, 202);
}
body.single-product .woocommerce_page__inner .subscription-slider__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 25px 75px 25px;
  text-align: center;
}
body.single-product .woocommerce_page__inner .subscription-slider__inner h2 {
  font-family: gopher, sans-serif;
  font-size: 36px;
  margin: 0 0 50px 0;
}
body.single-product .woocommerce_page__inner .subscription-slider__inner .swiper-products {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
body.single-product .woocommerce_page__inner .subscription-slider__inner .swiper-products .swiper-wrapper .swiper-slide {
  width: 100%;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .subscription-slider__inner .swiper-products .swiper-wrapper .swiper-slide {
    width: 78%;
  }
}
body.single-product .woocommerce_page__inner .subscription-slider__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide {
  display: flex;
  flex-wrap: wrap;
}
body.single-product .woocommerce_page__inner .subscription-slider__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide__left {
  width: 100%;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .subscription-slider__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide__left {
    width: 30%;
    padding-right: 25px;
  }
}
body.single-product .woocommerce_page__inner .subscription-slider__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide__left img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  max-width: 200px;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .subscription-slider__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide__left img {
    max-width: 100%;
  }
}
body.single-product .woocommerce_page__inner .subscription-slider__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide__right {
  width: 100%;
}
@media (max-width: 767px) {
  body.single-product .woocommerce_page__inner .subscription-slider__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide__right {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .subscription-slider__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide__right {
    text-align: left;
    width: 70%;
  }
}
body.single-product .woocommerce_page__inner .subscription-slider__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide__right .inner {
  width: 100%;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .subscription-slider__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide__right .inner {
    padding-left: 25px;
  }
}
body.single-product .woocommerce_page__inner .subscription-slider__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide__right .inner h3 {
  font-family: gopher, sans-serif;
  font-size: 28px;
  margin: 0 0 15px 0;
}
body.single-product .woocommerce_page__inner .subscription-slider__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide__right .inner .items {
  border: 2px solid #025f1d;
  border-radius: 15px;
  padding: 25px 15px;
  max-width: 350px;
}
@media (max-width: 767px) {
  body.single-product .woocommerce_page__inner .subscription-slider__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide__right .inner .items {
    margin: 0 auto;
  }
}
body.single-product .woocommerce_page__inner .subscription-slider__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide__right .inner .items ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
body.single-product .woocommerce_page__inner .subscription-slider__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide__right .inner .items ul li {
  margin-bottom: 15px;
}
body.single-product .woocommerce_page__inner .subscription-slider__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide__right .inner .items ul li:last-child {
  margin-bottom: 0;
}
body.single-product .woocommerce_page__inner .subscription-slider__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide__right .inner .items ul li a {
  color: #025f1d;
  cursor: pointer;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .subscription-slider__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide__right .inner .items ul li a {
    font-size: 20px;
  }
}
body.single-product .woocommerce_page__inner .subscription-slider__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide__right .inner .items ul li a:hover, body.single-product .woocommerce_page__inner .subscription-slider__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide__right .inner .items ul li a:focus {
  color: #000;
  text-decoration: none;
}
body.single-product .woocommerce_page__inner .subscription-slider__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide__right .inner .items ul li a:hover svg, body.single-product .woocommerce_page__inner .subscription-slider__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide__right .inner .items ul li a:focus svg {
  fill: #000;
}
body.single-product .woocommerce_page__inner .subscription-slider__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide__right .inner .items ul li a svg {
  width: 15px;
  height: auto;
  fill: #025f1d;
  transition: 0.5s;
  padding-bottom: 3px;
  margin-right: 5px;
}
body.single-product .woocommerce_page__inner .subscription-slider__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide__right .inner p {
  text-align: left;
}
body.single-product .woocommerce_page__inner .subscription-slider__inner .swiper-products .swiper-products-pagination {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
body.single-product .woocommerce_page__inner .subscription-slider__inner .swiper-products .swiper-products-pagination span {
  background-color: #ecbaa8;
  width: 10px;
  height: 10px;
  opacity: 1;
}
body.single-product .woocommerce_page__inner .subscription-slider__inner .swiper-products .swiper-products-pagination span:focus {
  outline: 0;
}
body.single-product .woocommerce_page__inner .subscription-slider__inner .swiper-products .swiper-products-pagination span.swiper-pagination-bullet-active {
  background-color: #025f1d;
}
body.single-product .woocommerce_page__inner .reviews {
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
  padding: 75px 25px 0 25px;
}
body.single-product .woocommerce_page__inner .reviews .swiper-testiomials {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
body.single-product .woocommerce_page__inner .reviews .swiper-testiomials .swiper-wrapper .swiper-slide {
  text-align: center;
}
body.single-product .woocommerce_page__inner .reviews .swiper-testiomials .swiper-wrapper .swiper-slide .image {
  margin-bottom: 25px;
}
body.single-product .woocommerce_page__inner .reviews .swiper-testiomials .swiper-wrapper .swiper-slide .image img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
}
body.single-product .woocommerce_page__inner .reviews .swiper-testiomials .swiper-wrapper .swiper-slide p {
  margin-bottom: 10px;
}
body.single-product .woocommerce_page__inner .reviews .swiper-testiomials .swiper-wrapper .swiper-slide .name p {
  font-family: gopher, sans-serif;
}
body.single-product .woocommerce_page__inner .reviews .swiper-testiomials .swiper-wrapper .swiper-slide .dot {
  width: 35px;
  height: 35px;
  background-color: #ecbaa8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 50px auto;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .reviews .swiper-testiomials .swiper-wrapper .swiper-slide .dot {
    width: 75px;
    height: 75px;
  }
}
body.single-product .woocommerce_page__inner .reviews .swiper-testiomials .swiper-wrapper .swiper-slide .dot__inner {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #025f1d;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .reviews .swiper-testiomials .swiper-wrapper .swiper-slide .dot__inner {
    width: 30px;
    height: 30px;
  }
}
body.single-product .woocommerce_page__inner .intro-block {
  width: 100%;
}
@media (max-width: 767px) {
  body.single-product .woocommerce_page__inner .intro-block {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .intro-block {
    height: auto;
  }
}
body.single-product .woocommerce_page__inner .intro-block__inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: 0 25px 75px 25px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .intro-block__inner {
    padding: 25px 25px 75px 25px;
  }
}
body.single-product .woocommerce_page__inner .intro-block__inner .left,
body.single-product .woocommerce_page__inner .intro-block__inner .right {
  width: 100%;
}
body.single-product .woocommerce_page__inner .intro-block__inner .right {
  margin-top: 15px;
  text-align: center;
  order: 1;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .intro-block__inner .right {
    order: 2;
    text-align: right;
    margin-top: 0;
    width: 40%;
  }
}
body.single-product .woocommerce_page__inner .intro-block__inner .right .image {
  position: relative;
  max-width: 150px;
  margin: 0 auto;
}
@media (min-width: 375px) {
  body.single-product .woocommerce_page__inner .intro-block__inner .right .image {
    max-width: 200px;
  }
}
@media (min-width: 400px) {
  body.single-product .woocommerce_page__inner .intro-block__inner .right .image {
    max-width: 250px;
  }
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .intro-block__inner .right .image {
    max-height: initial;
    margin: 0;
    max-width: 350px;
    width: 100%;
    padding-left: 25px;
  }
}
body.single-product .woocommerce_page__inner .intro-block__inner .right .image .icon {
  position: absolute;
  top: -25px;
  left: -25px;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .intro-block__inner .right .image .icon {
    top: -35px;
    left: -35px;
  }
}
body.single-product .woocommerce_page__inner .intro-block__inner .right .image .icon img {
  width: 100px;
  height: 100px;
}
body.single-product .woocommerce_page__inner .intro-block__inner .right .image img.main {
  height: auto;
  width: 100%;
  border-radius: 10px;
}
body.single-product .woocommerce_page__inner .intro-block__inner .left {
  order: 2;
  text-align: center;
  margin-top: 25px;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .intro-block__inner .left {
    order: 1;
    margin-top: 0;
    width: 60%;
    padding-right: 25px;
  }
}
body.single-product .woocommerce_page__inner .intro-block__inner .left .content {
  margin-top: 15px;
  max-width: 550px;
  margin: 0 auto;
  width: 100%;
}
body.single-product .woocommerce_page__inner .intro-block__inner .left .content p {
  font-size: 16px;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .intro-block__inner .left .content p {
    font-size: 18px;
  }
}
body.single-product .woocommerce_page__inner .intro-block__inner .left .content p:last-child {
  margin-bottom: 0;
}
body.single-product .woocommerce_page__inner .blocks-button__inner {
  max-width: 1366px;
  margin: 0 auto;
  width: 100%;
}
body.single-product .woocommerce_page__inner .blocks-button__inner--block {
  margin-bottom: 75px;
}
body.single-product .woocommerce_page__inner .blocks-button__inner--block h2 {
  font-family: gopher, sans-serif;
  font-size: 36px;
  margin: 0 0 50px 0;
  text-align: center;
}
body.single-product .woocommerce_page__inner .blocks-button__inner--block .items {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}
body.single-product .woocommerce_page__inner .blocks-button__inner--block .items__item {
  width: 100%;
  padding: 0 25px;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .blocks-button__inner--block .items__item {
    width: 33.3333%;
  }
}
@media (min-width: 1200px) {
  body.single-product .woocommerce_page__inner .blocks-button__inner--block .items__item {
    padding: 0 50px;
  }
}
body.single-product .woocommerce_page__inner .blocks-button__inner--block .items__item .inner {
  width: 100%;
}
body.single-product .woocommerce_page__inner .blocks-button__inner--block .items__item .inner .image {
  width: 100%;
  text-align: center;
}
body.single-product .woocommerce_page__inner .blocks-button__inner--block .items__item .inner .image img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  max-width: 480px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .blocks-button__inner--block .items__item .inner .image img {
    max-width: 100%;
  }
}
body.single-product .woocommerce_page__inner .blocks-button__inner--block .items__item .inner .content {
  text-align: center;
  margin-top: 25px;
}
body.single-product .woocommerce_page__inner .blocks-button__inner--block .items__item .inner .content h2 {
  margin-bottom: 25px;
}
body.single-product .woocommerce_page__inner .blocks-button__inner--block .items__item .inner .content p {
  margin: 15px 0 0 0;
  font-size: 16px;
}
body.single-product .woocommerce_page__inner .blocks-button__inner--block .button {
  text-align: center;
  margin-top: 25px;
  display: flex;
  justify-content: center;
}
body.single-product .woocommerce_page__inner .blocks-button__inner--block .button a {
  width: 150px;
  height: 150px;
  background-color: #025f1d;
  color: #fff;
  font-family: gopher, sans-serif;
  border-radius: 50%;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.single-product .woocommerce_page__inner .articles-block__inner {
  padding: 75px 0 25px 0;
}
body.single-product .woocommerce_page__inner .articles-block__inner h2 {
  font-size: 36px;
  font-family: gopher, sans-serif;
}
body.single-product .woocommerce_page__inner .combine {
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .combine {
    height: auto;
  }
}
body.single-product .woocommerce_page__inner .combine:after {
  content: "";
  background-color: rgba(236, 186, 168, 0.18);
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  height: 65%;
}
@media (min-width: 992px) {
  body.single-product .woocommerce_page__inner .combine:after {
    height: 60%;
  }
}
body.single-product .woocommerce_page__inner .combine__inner {
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
  padding: 75px 25px 50px 25px;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .combine__inner {
    padding: 75px 0 50px 25px;
  }
}
body.single-product .woocommerce_page__inner .combine__inner h2 {
  text-align: center;
  font-size: 36px;
  margin: 0 0 25px 0;
  font-family: gopher, sans-serif;
}
body.single-product .woocommerce_page__inner .combine__inner p {
  margin: 0 auto;
  max-width: 600px;
  width: 100%;
  line-height: 1.2;
  text-align: center;
}
body.single-product .woocommerce_page__inner .combine__inner .swiper-products {
  margin-top: 75px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-wrapper .swiper-slide {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-wrapper .swiper-slide {
    width: 80%;
  }
}
body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}
body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .left,
body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right {
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .left,
  body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right {
    text-align: left;
  }
}
body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .left {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .left {
    width: 40%;
    padding-right: 25px;
  }
}
body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .left .mobile-toggle {
  width: 100%;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .left .mobile-toggle {
    display: none;
  }
}
body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .left .mobile-toggle a {
  color: #025f1d;
  text-decoration: none;
}
body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .left .mobile-toggle h3 {
  font-family: gopher, sans-serif;
  margin: 0 0 10px 0;
}
body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .left .mobile-toggle p {
  font-size: 14px;
}
body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .left .mobile-toggle p a {
  color: #025f1d;
}
body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .left a {
  width: 100%;
}
body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .left img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  max-width: 175px;
}
@media (min-width: 375px) {
  body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .left img {
    max-width: 200px;
  }
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .left img {
    max-width: 250px;
  }
}
body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 25px;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right {
    margin-top: 0;
    width: 60%;
    justify-content: flex-start;
    padding-left: 25px;
  }
}
body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right a {
  text-decoration: none;
  color: #025f1d;
}
body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right h3 {
  font-family: gopher, sans-serif;
  margin: 0 0 10px 0;
  display: none;
  font-size: 26px;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right h3 {
    display: block;
  }
}
body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right p {
  font-size: 14px;
  display: none;
  margin: 0;
  text-align: left;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right p {
    display: block;
  }
}
body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right p a {
  color: #025f1d;
}
body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right .price {
  margin-top: 25px;
}
@media (min-width: 768px) {
  body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right .price {
    margin-top: 0;
  }
}
body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right .price span,
body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right .price bdi {
  font-size: 20px;
}
body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right .price .wcsatt-sub-options {
  display: none;
}
body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right .add-to-cart {
  margin-top: 15px;
  width: 85px;
  height: 85px;
  background-color: #025f1d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  border-radius: 50%;
}
@media (max-width: 767px) {
  body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right .add-to-cart {
    margin: 15px auto 0 auto;
  }
}
body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-wrapper .swiper-slide .inner-slide .right .add-to-cart span {
  color: #fff;
  font-size: 20px;
  font-family: gopher, sans-serif;
  font-weight: 100;
}
body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-products-pagination {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-products-pagination span {
  background-color: #ecbaa8;
  width: 10px;
  height: 10px;
  opacity: 1;
}
body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-products-pagination span:focus {
  outline: 0;
}
body.single-product .woocommerce_page__inner .combine__inner .swiper-products .swiper-products-pagination span.swiper-pagination-bullet-active {
  background-color: #025f1d;
}
body.single-product .woocommerce_page__inner .abbo {
  padding-top: 0;
}

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