@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.product-card {
  max-width: 301px;
  padding: 1rem 0.5rem;
  margin: 5px 0;
  background-color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card a {
  display: flex;
  flex-direction: column;
  color: #393939;
  text-decoration: none;
  height: 100%;
}
.product-card a:visited {
  color: #393939;
}
.product-card a:hover {
  color: #393939;
}
.product-card .sale {
  position: absolute;
  left: 10px;
  top: 10px;
  height: 30px;
  width: 50px;
  background-color: #8bc98d;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.product-card .sale span {
  font-family: "BrasleySemiBold";
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  color: #fff;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3px;
}
.product-card .new {
  position: absolute;
  color: #b7b7b7;
  background: #fff;
  border: 1px solid #e3e3e3;
  width: 50px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 15px;
  left: 10px;
  top: 10px;
  z-index: 1;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 5px;
}
.product-card .new span {
  font-family: "BrasleySemiBold";
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  padding-top: 5px;
  text-transform: uppercase;
  font-size: 14px;
  text-align: center;
}
.product-card .product-image img {
  max-height: 270px;
  width: 100%;
  max-width: 270px;
  object-fit: cover;
}
.product-card .product-title h3 {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  word-break: break-word;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  margin-top: 0.5rem;
}
.product-card .product-price {
  display: flex;
  justify-content: center;
  margin-top: auto;
  margin-bottom: 0.5rem;
}
.product-card .product-price span {
  color: #393939;
  font-size: 16px;
}
.product-card .product-price .original-price {
  margin-right: 3px;
}
.product-card .product-price .original-price span {
  color: #393939;
  text-decoration: line-through;
}
.product-card .product-price .sale-price {
  margin-left: 3px;
}
.product-card .product-price .sale-price span {
  font-family: "BrasleyBold";
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
}
.product-card .add-to-cart a {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  text-decoration: none;
  text-transform: uppercase;
  color: #8bc98d;
  border: 1px solid #8bc98d;
  border-radius: 5px;
  padding: 0.5rem 1rem 0.25rem 1rem;
  font-size: 14px;
  width: max-content;
}
.product-card .add-to-cart .added_to_cart {
  display: none;
}
.product-card .loading {
  animation: spin 0.75s linear infinite;
  width: 36px;
  height: 36px;
  border: 8px solid #f3f3f3;
  border-top: 8px solid #8bc98d;
  border-radius: 50%;
  outline: none;
  user-select: none;
  pointer-events: none;
  margin: auto;
  margin-top: 4px;
}
.product-card .loading a {
  display: none;
}
.prod-sale .new {
  top: 45px;
}
@media (min-width: 1024px) {
  .product-card {
    padding: 2rem 1rem;
  }
  .product-card .add-to-cart a {
    transition: 0.25s ease;
    font-size: 16px;
  }
  .product-card .add-to-cart a:hover {
    background: #8bc98d;
    color: #fff;
  }
}
.out-of-stock .empty {
  width: max-content;
  margin: 0 auto;
  height: 38px;
}
.out-of-stock .empty p {
  margin: 0;
  padding: 5px;
  padding: 0.75rem 1.5rem 0.45rem 1.5rem;
  color: #393939;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 14px;
  background: #fff;
  z-index: 2;
  user-select: none;
}
.out-of-stock a .product-image,
.out-of-stock a .product-title,
.out-of-stock a .sale {
  opacity: 0.5;
}
.out-of-stock a .sale {
  z-index: 1;
}
.out-of-stock .disabled a {
  display: none;
}
.mySwiper .product-card {
  padding: 1rem 0;
  max-width: unset;
  height: auto;
}
.mySwiper .product-card a {
  padding: 0 1rem;
}
.mySwiper .product-card a .product-image img {
  display: block;
  margin: auto;
}
.mySwiper .product-card .loading {
  height: 22.5px;
  width: 20px;
}
.mySwiper .product-card .add-to-cart-btn-card {
  padding: 0.5rem 1.5rem 0.25rem 1.5rem;
  height: auto;
}
.shop-wrapper {
  background-color: #fafafa;
  padding: 8rem 0;
}
.shop-wrapper .woocommerce-ordering {
  position: relative;
}
.shop-wrapper .woocommerce-ordering:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: calc(100% - 15px);
  border-left: 1px solid #edece9;
  pointer-events: none;
}
.shop-wrapper .woocommerce-ordering select {
  font-family: "Glacial Indifference";
  border-color: #edece9;
  border-radius: 7px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("../assets/svg/select_arrow.svg");
  background-position: 93% center;
  background-repeat: no-repeat;
  padding: 7px 5px;
  padding-right: 40px;
  position: relative;
  outline-color: #a5abbb;
}
.shop-wrapper .woocommerce-info {
  max-width: max-content;
  box-shadow: 0px 3px 16px rgba(10, 46, 70, 0.16);
  z-index: 5;
  background: #fff;
  border-radius: 5px;
  margin: 0 auto;
  height: fit-content;
  margin-top: 2rem;
  border: unset;
}
.shop-wrapper .woocommerce-info .woocommerce-error {
  margin: 0;
  background: unset;
}
.shop-wrapper .woocommerce-info .woocommerce-message {
  margin: 0;
  border: unset;
  background: unset;
}
.shop-wrapper .product-categories {
  margin-bottom: 2rem;
}
.shop-wrapper .product-categories .inner-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shop-wrapper .product-categories .latest-reviews {
  display: none;
}
.shop-wrapper .product-categories .products-header-mobile form {
  margin-bottom: 0;
}
.shop-wrapper .product-categories .categories {
  display: none;
  background: #fff;
  width: 100%;
  height: 100%;
}
.shop-wrapper .product-categories .toggled-categories {
  position: fixed;
  left: 0;
  top: 0;
  display: block;
  z-index: 5555;
  padding: 1.5rem 1rem;
}
.shop-wrapper .product-categories .toggled-categories .close {
  position: absolute;
  right: 15px;
  top: 35px;
}
.shop-wrapper .product-categories .toggled-categories .close svg circle {
  fill: #888888;
}
.shop-wrapper .product-categories .toggled-categories .close svg path {
  stroke: #fff;
}
.shop-wrapper .product-categories .toggled-categories h4 {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
  text-transform: uppercase;
  margin-top: 0.5rem;
}
.shop-wrapper .product-categories h3 {
  font-size: 16px;
  text-transform: uppercase;
  color: #393939;
  padding-left: 30px;
  position: relative;
}
.shop-wrapper .product-categories h3:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("../assets/svg/squares.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.shop-wrapper .product-categories .category {
  margin: 0.5rem 0;
}
.shop-wrapper .product-categories .category a {
  text-transform: uppercase;
}
.shop-wrapper .product-categories a {
  text-decoration: none;
  color: #393939;
}
.shop-wrapper .product-categories .product-reviews {
  display: none;
}
.shop-wrapper .shop-products-wrapper .shop-products-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.shop-wrapper .shop-products-wrapper .shop-products-inner .product-card {
  flex: 0 0 49%;
}
.shop-wrapper .products-header {
  display: none;
}
@media (max-width: 374px) {
  .shop-wrapper .shop-inner .product-categories .inner-wrapper {
    display: block;
  }
  .shop-wrapper .shop-inner .product-categories .inner-wrapper .woocommerce-ordering {
    float: unset;
  }
}
@media (min-width: 1024px) {
  .shop-wrapper {
    padding-top: 11rem;
  }
  .shop-wrapper .shop-inner {
    display: flex;
    justify-content: space-between;
  }
  .shop-wrapper .shop-inner .mobile-title {
    display: none;
  }
  .shop-wrapper .shop-inner .product-categories {
    width: 30%;
    display: block;
  }
  .shop-wrapper .shop-inner .product-categories .inner-wrapper {
    display: block;
    justify-content: unset;
  }
  .shop-wrapper .shop-inner .product-categories .products-header-mobile {
    display: none;
  }
  .shop-wrapper .shop-inner .product-categories h3 {
    font-family: "BrasleyMedium";
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    padding-left: 0;
    font-size: 20px;
    font-weight: 700;
  }
  .shop-wrapper .shop-inner .product-categories h3:after {
    content: none;
  }
  .shop-wrapper .shop-inner .product-categories .categories {
    display: block;
    background: transparent;
  }
  .shop-wrapper .shop-inner .product-categories .categories a {
    transition: 0.3s ease;
  }
  .shop-wrapper .shop-inner .product-categories .categories a:hover {
    color: #8bc98d;
  }
  .shop-wrapper .shop-inner .product-categories .categories .close {
    display: none;
  }
  .shop-wrapper .shop-inner .product-categories .categories h4 {
    display: none;
  }
  .shop-wrapper .shop-inner .product-categories .toggled-categories {
    position: relative;
    left: unset;
    top: unset;
    padding: 0;
  }
  .shop-wrapper .shop-inner .product-categories .latest-reviews {
    display: block;
    margin-top: 2rem;
  }
  .shop-wrapper .shop-inner .product-categories .latest-reviews .star-rating {
    float: left;
  }
  .shop-wrapper .shop-inner .product-categories .latest-reviews h3 {
    font-family: "BrasleyMedium";
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    font-size: 20px;
    text-transform: none;
  }
  .shop-wrapper .shop-inner .product-categories .latest-reviews .review-wrapper {
    margin-bottom: 1rem;
  }
  .shop-wrapper .shop-inner .product-categories .latest-reviews .review-wrapper .review-inner {
    display: flex;
  }
  .shop-wrapper .shop-inner .product-categories .latest-reviews .review-wrapper .review-inner .review-image {
    height: 87px;
    width: 87px;
    margin-right: 1rem;
  }
  .shop-wrapper .shop-inner .product-categories .latest-reviews .review-wrapper .review-inner .review-image img {
    height: 87px;
    width: 87px;
  }
  .shop-wrapper .shop-inner .product-categories .latest-reviews .review-wrapper .review-inner .review-data {
    max-width: 230px;
  }
  .shop-wrapper .shop-inner .product-categories .latest-reviews .review-wrapper .review-inner .review-data p {
    margin-bottom: 0.5rem;
  }
  .shop-wrapper .shop-inner .product-categories .latest-reviews .review-wrapper .review-inner .review-data .author {
    margin: 0;
    margin-bottom: 0.5rem;
    color: #787878;
  }
  .shop-wrapper .shop-inner .shop-products-wrapper {
    width: 70%;
  }
  .shop-wrapper .shop-inner .shop-products-wrapper .shop-products-inner {
    justify-content: unset;
    gap: 10px;
  }
  .shop-wrapper .shop-inner .shop-products-wrapper .shop-products-inner .product-card {
    margin: 0.5rem 0;
    flex: 0 0 32%;
  }
  .shop-wrapper .products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.5rem;
  }
  .shop-wrapper .products-header h2 {
    margin: 0;
    font-size: 39px;
    color: #393939;
  }
  .shop-wrapper .products-header .woocommerce-ordering {
    margin-bottom: 1rem;
    display: block;
    float: unset !important;
  }
}
@media (min-width: 1200px) {
  .shop-wrapper .shop-inner .shop-products-wrapper .shop-products-inner {
    gap: 15px;
  }
}
.star-rating span:before {
  content: "\73\73\73\73\73";
  font-family: "star";
  color: #f7d76e;
}
.product-wrapper {
  color: #393939;
}
.product-wrapper .product-header {
  position: relative;
  padding-top: 8rem;
}
.product-wrapper .product-header .background-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}
.product-wrapper .product-header .background-image img {
  width: 100%;
  height: 100%;
  opacity: 0.2;
  display: block;
  pointer-events: none;
  z-index: -1;
}
.product-wrapper .product-header .header-inner {
  overflow: hidden;
}
.product-wrapper .product-header .header-inner .product-images img {
  max-height: 451px;
  width: 100%;
  object-fit: cover;
}
.product-wrapper .product-header .header-inner .swipers {
  margin-bottom: 3rem;
}
.product-wrapper .product-header .header-inner .swipers .mobile-swiper {
  padding-bottom: 20px;
}
.product-wrapper .product-header .header-inner .swipers .mobile-swiper .swiper-pagination {
  bottom: -5px;
}
.product-wrapper .product-header .header-inner .swipers .mobile-swiper .swiper-slide {
  cursor: pointer;
  height: auto;
}
.product-wrapper .product-header .header-inner .swipers .mobile-swiper .swiper-slide img {
  height: 100%;
}
.product-wrapper .product-header .header-inner .swipers .mobile-swiper img {
  max-height: 110px;
  width: 100%;
  object-fit: cover;
}
.product-wrapper .product-header .header-inner .swipers .mobile-swiper-2 {
  position: relative;
}
.product-wrapper .product-header .header-inner .swipers .mobile-swiper-2 .swiper-slide {
  height: auto;
}
.product-wrapper .product-header .header-inner .swipers .mobile-swiper-2 .swiper-slide img {
  height: 100%;
}
.product-wrapper .product-header .header-inner .swipers .mobile-swiper-2 .sale {
  position: absolute;
  left: 10px;
  top: 10px;
  height: 30px;
  width: 50px;
  background-color: #8bc98d;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  z-index: 2;
}
.product-wrapper .product-header .header-inner .swipers .mobile-swiper-2 .sale span {
  font-family: "BrasleySemiBold";
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  color: #fff;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3px;
}
.product-wrapper .product-header .swiper-button-prev,
.product-wrapper .product-header .swiper-button-next {
  top: 29%;
}
.product-wrapper .product-header .swiper-button-prev:after,
.product-wrapper .product-header .swiper-button-next:after {
  color: #cbcbcb;
}
.product-wrapper .product-header .product-data .product-title h2 {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  color: #393939;
  font-size: 25px;
  line-height: 30px;
  text-align: center;
  margin: 0;
}
.product-wrapper .product-header .product-data .product-price {
  align-items: center;
  margin-bottom: 2rem;
  margin-top: 0.5rem;
}
.product-wrapper .product-header .product-data .product-price h4 {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  margin-right: auto;
  text-align: center;
  font-size: 39px;
  line-height: 47px;
  color: #393939;
}
.product-wrapper .product-header .product-data .product-price h4 span {
  text-decoration: line-through;
}
.product-wrapper .product-header .product-data .product-price .ratings-wrapper {
  display: flex;
  align-items: center;
  margin-right: auto;
}
.product-wrapper .product-header .product-data .product-price .ratings-wrapper p {
  margin: 0;
  margin-left: 0.5rem;
  margin-top: 5px;
  line-height: 0;
  cursor: pointer;
}
.product-wrapper .product-header .product-data .product-description h3 {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 19px;
  margin: 0.5rem 0;
}
.product-wrapper .product-header .product-data .product-description h4 {
  margin: 0.5rem 0;
}
.product-wrapper .product-header .product-data .product-description ul {
  margin: 0;
  padding-left: 15px;
}
.product-wrapper .product-header .product-data .color-selection {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}
.product-wrapper .product-header .product-data .color-selection p {
  margin: 0;
  margin-right: 0.5rem;
  font-family: "BrasleyMedium";
}
.product-wrapper .product-header .product-data .color-selection #color-select {
  font-family: "BrasleyRegular";
  max-width: unset;
  margin-left: 0.5rem;
  border-color: #a5abbb;
  border-radius: 4px;
  padding: 7px 35px 5px 10px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("../assets/svg/select_arrow.svg");
  background-position: 90% center;
  background-repeat: no-repeat;
  text-transform: capitalize;
}
.product-wrapper .product-header .product-data .color-selection #color-select option {
  text-transform: capitalize;
}
.product-wrapper .product-header .product-data .product-in-stock p {
  padding-left: 35px;
  position: relative;
  font-size: 20px;
}
.product-wrapper .product-header .product-data .product-in-stock p:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 17px;
  background-image: url("../assets/svg/check.svg");
  background-size: contain;
  background-position: 50%;
  background-repeat: no-repeat;
}
.product-wrapper .product-header .product-data .product-add-to-cart {
  display: flex;
  margin-top: 2rem;
}
.product-wrapper .product-header .product-data .product-add-to-cart .product-quantity {
  display: flex;
  width: 168px;
  background: #fff;
  padding: 8px 25px;
  justify-content: space-between;
  font-size: 30px;
}
.product-wrapper .product-header .product-data .product-add-to-cart .product-quantity span {
  cursor: pointer;
  user-select: none;
}
.product-wrapper .product-header .product-data .product-add-to-cart .product-quantity p {
  margin: 0;
}
.product-wrapper .product-header .product-data .product-add-to-cart .add-to-cart {
  max-width: 190px;
  width: 100%;
  height: 50px;
}
.product-wrapper .product-header .product-data .product-add-to-cart .add-to-cart button {
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  border: unset;
  padding: 0;
  border-radius: 4px;
  padding-left: 45px;
  color: #fff;
  font-size: 20px;
  position: relative;
  cursor: pointer;
}
.product-wrapper .product-header .product-data .product-add-to-cart .add-to-cart button:before {
  content: "";
  position: absolute;
  left: 35px;
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  background-image: url("../assets/svg/cart_white.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.product-wrapper .product-header .product-data .product-features {
  display: flex;
  gap: 20px;
  margin-top: 3rem;
}
.product-wrapper .product-header .product-data .product-features .feature {
  display: flex;
  flex-direction: column;
  min-height: 65px;
}
.product-wrapper .product-header .product-data .product-features img {
  display: block;
  margin: 0 auto;
  margin-top: 0;
  height: 32px;
}
.product-wrapper .product-header .product-data .product-features p {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  margin-top: 0.75rem;
  text-align: center;
  line-height: 19px;
}
.product-wrapper .product-header .product-data .product-subscription {
  margin-top: 1.5rem;
}
.product-wrapper .product-header .product-data .product-subscription .sub-login {
  font-family: "BrasleyBold";
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  width: 100%;
}
.product-wrapper .product-header .product-data .product-subscription .sub-login .not-logged {
  font-family: "BrasleyBold";
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  cursor: pointer;
  text-decoration: underline;
}
.product-wrapper .product-header .product-data .product-subscription .sub-checkbox {
  display: flex;
  flex-wrap: wrap;
}
.product-wrapper .product-header .product-data .product-subscription .sub-checkbox input {
  margin-top: 3px;
  height: 15px;
  width: 15px;
  margin-right: 5px;
}
.product-wrapper .product-header .product-data .product-subscription .sub-checkbox input:checked {
  background: #8bc98d;
}
.product-wrapper .product-header .product-data .product-subscription .sub-checkbox label {
  font-family: "BrasleyBold";
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
}
.product-wrapper .product-header .product-data .product-subscription .sub-checkbox input:checked + label:before {
  background: #8bc98d;
}
.product-wrapper .product-header .product-data .product-subscription .sub-options {
  display: none;
}
.product-wrapper .product-header .product-data .product-subscription p {
  margin: 1rem 0 0 0;
}
.product-wrapper .product-header .product-data .product-subscription .select-wrapper {
  position: relative;
  max-width: max-content;
}
.product-wrapper .product-header .product-data .product-subscription .select-wrapper:after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-70%) rotate(-45deg);
  width: 11px;
  height: 11px;
  border-left: 2px solid #393939;
  border-bottom: 2px solid #393939;
  pointer-events: none;
}
.product-wrapper .product-header .product-data .product-subscription .select-wrapper:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 60%;
  border-left: 1px solid #A5ABBB;
  pointer-events: none;
}
.product-wrapper .product-header .product-data .product-subscription select {
  font-family: "BrasleyRegular";
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  padding: 8px 50px 6px 8px;
  border-radius: 8px;
  border-color: #A5ABBB;
  -moz-appearance: none;
  /* Firefox */
  -webkit-appearance: none;
  /* Safari and Chrome */
  appearance: none;
}
.product-wrapper .product-info .product-ingredients {
  background-color: #fbf5f5;
  padding: 3rem 0;
  margin: 2rem 0;
  position: relative;
}
.product-wrapper .product-info .product-ingredients .icon {
  display: none;
}
.product-wrapper .product-info .product-ingredients .ingredients-title h3 {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  color: #6f5151;
  text-transform: uppercase;
}
.product-wrapper .product-info .product-ingredients .ingredients .ingredient {
  display: flex;
  margin: 0.5rem 0;
}
.product-wrapper .product-info .product-ingredients .ingredients .ingredient .ingredient-data {
  min-width: 130px;
}
.product-wrapper .product-info .product-ingredients .ingredients .ingredient .ingredient-title h4 {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 19px;
  color: #6f5151;
  margin-bottom: 5px;
  margin-top: 16px;
  text-align: center;
}
.product-wrapper .product-info .product-ingredients .ingredients .ingredient .ingredient-image img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  object-fit: cover;
  display: block;
  margin: auto;
}
.product-wrapper .product-info .product-ingredients .ingredients .ingredient .ingredient-content p {
  line-height: 22px;
  margin-bottom: 0;
}
.product-wrapper .product-info .info-options {
  margin: 4rem 0;
}
.product-wrapper .product-info .info-options .option {
  margin: 3rem 0;
}
.product-wrapper .product-info .info-options .option h3 {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  position: relative;
  border-bottom: 1px solid #000;
  padding-left: 50px;
  text-transform: uppercase;
  font-size: 20px;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  cursor: pointer;
}
.product-wrapper .product-info .info-options .option h3:before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 21px;
  height: 12px;
  background-image: url("../assets/svg/dropdown_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.25s ease;
}
.product-wrapper .product-info .info-options .option .option-data {
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s ease;
  transition: opacity 0s, margin-top 0.5s;
}
.product-wrapper .product-info .info-options .option .option-data h3 {
  text-transform: unset;
  padding: unset;
  border: unset;
}
.product-wrapper .product-info .info-options .option .option-data h3:before {
  content: unset;
}
.product-wrapper .product-info .info-options .option .option-data ol {
  margin-left: 1.5em;
  margin-right: 1.5em;
}
.product-wrapper .product-info .info-options .option .option-data ol li {
  padding-left: 1rem;
}
.product-wrapper .product-info .info-options .option .option-data ol li::marker {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  color: #8bc98d;
}
.product-wrapper .product-info .info-options .option .option-data .connected-recipes a {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  position: relative;
  color: #393939;
  display: block;
  margin: auto;
  margin-top: 2rem;
  text-align: center;
  text-transform: uppercase;
  font-size: 20px;
  padding-right: 40px;
  padding-left: 40px;
  width: max-content;
  text-decoration: none;
}
.product-wrapper .product-info .info-options .option .option-data .connected-recipes a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 22px;
  height: 40px;
  background-image: url("../assets/svg/recipe_icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.product-wrapper .product-info .info-options .option .option-data .connected-recipes a:after {
  content: "";
  position: absolute;
  right: 15px;
  height: 12px;
  width: 18px;
  top: 25%;
  background-image: url("../assets/svg/dropdown_arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(90deg) translateY(-50%);
}
.product-wrapper .product-info .info-options .option .option-data table {
  border-collapse: collapse;
}
.product-wrapper .product-info .info-options .option .option-data table tr {
  border-bottom: 1px solid #707070;
}
.product-wrapper .product-info .info-options .option .option-data table td {
  padding: 7px 0;
}
.product-wrapper .product-info .info-options .show h3:before {
  transform: rotate(180deg);
}
.product-wrapper .product-info .info-options .show .option-data {
  display: block;
  margin-top: 0 !important;
  opacity: 1;
  transition: opacity 0.5s, margin-top 0.5s;
  transition-delay: 0.25s, 0s;
  transition-property: opacity, margin-top;
  pointer-events: all;
}
.product-wrapper .product-info .info-options .show .option-data h3 {
  text-transform: unset;
  padding: unset;
}
.product-wrapper .product-info .info-options .show .option-data h3:before {
  content: unset;
}
.product-wrapper .product-reviews {
  margin: 8rem auto;
}
.product-wrapper .product-reviews h2 {
  margin-bottom: 3rem;
  border-bottom: 1px solid #000000;
  text-transform: uppercase;
}
.product-wrapper .product-reviews .choose-rating {
  font-size: 14px;
  color: #D00000;
  margin: 5px 0 0 0 !important;
  width: 100%;
}
.product-wrapper .product-reviews .commentlist {
  padding: 0 !important;
}
.product-wrapper .product-reviews .commentlist .load-more__btn-wrap {
  text-align: center;
  margin-top: 1.5rem;
}
.product-wrapper .product-reviews .commentlist .load-more__btn-wrap a {
  font-family: "BrasleyBold";
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  color: #393939;
}
.product-wrapper .product-reviews .commentlist .review {
  border-bottom: 1px solid #707070 !important;
}
.product-wrapper .product-reviews .commentlist .review .comment_container .avatar {
  border-radius: 50%;
  object-fit: cover;
  border: unset !important;
  background: #d6d6d6 !important;
  height: 55px !important;
  width: 55px !important;
}
.product-wrapper .product-reviews .commentlist .review .comment_container .comment-text {
  border: unset !important;
  margin: unset !important;
}
.product-wrapper .product-reviews .commentlist .review .comment_container .comment-text .comment-data-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.product-wrapper .product-reviews .commentlist .review .comment_container .comment-text .comment-data-wrapper img {
  position: relative !important;
  margin-right: 1.5rem !important;
  padding: 0 !important;
}
.product-wrapper .product-reviews .commentlist .review .comment_container .comment-text .comment-data-wrapper .description {
  width: 100%;
  margin-left: 5rem;
}
.product-wrapper .product-reviews .commentlist .review .comment_container .comment-text .comment-data-wrapper .description p img {
  margin: 0 !important;
}
.product-wrapper .product-reviews .commentlist .review .comment_container .comment-text .data-content img {
  display: none;
}
.product-wrapper .product-reviews .commentlist .review .comment_container .comment-text .meta {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 0 !important;
  color: #393939 !important;
  line-height: 24px;
  font-size: 20px !important;
}
.product-wrapper .product-reviews .commentlist .review .comment_container .comment-text .star-rating {
  float: unset !important;
}
.product-wrapper .product-reviews .commentlist .review .comment_container .comment-text .woocommerce-review__published-date {
  color: #757575 !important;
}
.product-wrapper .product-reviews .commentlist .review .comment_container .comment-text .description {
  margin-top: 1rem;
}
.product-wrapper .product-reviews #review_form_wrapper {
  display: none;
}
.product-wrapper .product-reviews #review_form_wrapper #review_form #lang-comments-link {
  display: none;
}
.product-wrapper .product-reviews #review_form_wrapper #review_form #respond .comment-reply-title {
  display: none;
}
.product-wrapper .product-reviews #review_form_wrapper #review_form #respond form {
  max-width: 530px;
  margin: 2rem auto;
}
.product-wrapper .product-reviews #review_form_wrapper #review_form #respond form .comment-form-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.product-wrapper .product-reviews #review_form_wrapper #review_form #respond form .comment-form-rating .stars {
  margin: 0;
  margin-left: 10px;
  margin-bottom: 3px;
}
.product-wrapper .product-reviews #review_form_wrapper #review_form #respond form .comment-form-rating .stars span {
  display: flex;
  align-items: center;
}
.product-wrapper .product-reviews #review_form_wrapper #review_form #respond form .comment-form-rating .stars span a {
  margin-right: 3px;
  color: #707070 !important;
}
.product-wrapper .product-reviews #review_form_wrapper #review_form #respond form .comment-form-rating .stars span:hover a {
  color: #f7d76e !important;
}
.product-wrapper .product-reviews #review_form_wrapper #review_form #respond form textarea {
  border-color: #a5abbb;
  height: 140px;
}
.product-wrapper .product-reviews #review_form_wrapper #review_form #respond form .form-submit {
  width: max-content;
  margin-left: auto;
  margin-top: 10px;
}
.product-wrapper .product-reviews #review_form_wrapper #review_form #respond form .form-submit #submit {
  background: transparent;
  border-radius: 7px;
  padding: 1rem 2rem 0.75rem;
  color: #393939;
  font-weight: 400;
  border: 1px solid #000000;
}
.product-wrapper .product-reviews #review_form_wrapper #review_form #respond form .mc4wp-checkbox span {
  margin-left: 5px;
}
.product-wrapper .product-reviews .add-review button {
  font-family: "BrasleyRegular";
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  border: unset;
  background-color: #8bc98d;
  color: #fff;
  width: max-content;
  padding: 1rem 2rem 0.75rem;
  cursor: pointer;
  display: block;
  margin: 3rem auto;
}
.product-wrapper .related-products {
  padding: 3rem 0;
  background-color: #f8f8f8;
}
.product-wrapper .related-products h2 {
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
}
.product-wrapper .related-products .related-products-inner .columns-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 1023px) {
  .product-wrapper .product-header .header-inner .mobile-swiper .swiper-pagination {
    display: none;
  }
  .product-wrapper .product-header .product-data .to-reviews {
    margin-top: 10px;
  }
  .product-wrapper .product-header .product-data .product-price {
    max-width: max-content;
    margin: auto;
    margin-top: 0.25rem;
    margin-bottom: 2rem;
  }
  .product-wrapper .product-header .product-data .product-price h4 {
    margin-right: 0.25rem;
  }
}
@media (min-width: 1024px) {
  .product-wrapper .product-header {
    width: calc(100% - 50px);
    margin: 25px auto;
    padding-top: 11rem;
    padding-bottom: 4rem;
  }
  .product-wrapper .product-header .header-inner {
    display: flex;
    justify-content: space-between;
  }
  .product-wrapper .product-header .header-inner .swipers {
    width: 45%;
    position: relative;
    overflow: hidden;
  }
  .product-wrapper .product-header .header-inner .swipers .swiper-button-next,
  .product-wrapper .product-header .header-inner .swipers .swiper-button-prev {
    display: none;
  }
  .product-wrapper .product-header .header-inner .swipers .mobile-swiper .swiper-slide img {
    max-height: 143px;
  }
  .product-wrapper .product-header .header-inner .product-data {
    width: 50%;
  }
  .product-wrapper .product-header .header-inner .product-data .product-title h2 {
    text-align: left;
    font-size: 32px;
    line-height: 42px;
  }
  .product-wrapper .product-header .header-inner .product-data .product-attributes {
    margin-bottom: 1.5rem;
  }
  .product-wrapper .product-header .header-inner .product-data .product-attributes .product-price {
    display: flex;
  }
  .product-wrapper .product-header .header-inner .product-data .product-attributes .product-price h4 {
    text-align: left;
  }
  .product-wrapper .product-header .header-inner .product-data .product-add-to-cart .add-to-cart {
    height: 60px;
  }
  .product-wrapper .product-header .header-inner .product-data .product-add-to-cart .add-to-cart button {
    transition: 0.3s ease;
  }
  .product-wrapper .product-header .header-inner .product-data .product-add-to-cart .add-to-cart button:hover {
    background: #393939;
  }
  .product-wrapper .product-header .header-inner .product-data .product-features {
    gap: 70px;
  }
  .product-wrapper .product-info .product-ingredients {
    width: calc(100% - 30px);
    margin-left: auto;
  }
  .product-wrapper .product-info .product-ingredients .icon {
    position: absolute;
    display: block;
    right: 0;
    top: -135px;
  }
  .product-wrapper .product-info .product-ingredients .icon .text-icon {
    animation: spinner 8s infinite linear;
  }
  .product-wrapper .product-info .product-ingredients .icon .leaf {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .product-wrapper .product-info .product-ingredients .ingredients-title h3 {
    margin-bottom: 0;
  }
  .product-wrapper .product-info .product-ingredients .ingredients {
    display: flex;
    flex-wrap: wrap;
  }
  .product-wrapper .product-info .product-ingredients .ingredients .ingredient {
    flex: 0 0 50%;
    margin-top: 1rem;
  }
  .product-wrapper .product-info .info-options {
    margin: 6rem 0;
  }
  .product-wrapper .product-info .info-options .option {
    margin: 3rem 0;
  }
  .product-wrapper .product-info .info-options .option h3 {
    padding-left: 75px;
  }
  .product-wrapper .product-info .info-options .option h3:before {
    left: 35px;
  }
  .product-wrapper .product-info .info-options .option .option-data {
    padding: 0.75rem 2rem;
  }
  .product-wrapper .product-info .info-options .option .option-data h3 {
    text-transform: unset;
    padding: unset;
    border: unset;
  }
  .product-wrapper .product-info .info-options .option .option-data h3:before {
    content: unset;
  }
  .product-wrapper .product-info .info-options .option .option-data_flex {
    display: flex;
  }
  .product-wrapper .product-info .info-options .option .option-data_flex .option-image {
    width: 45%;
  }
  .product-wrapper .product-info .info-options .option .option-data_flex .option-image iframe {
    width: 100%;
    height: 280px;
  }
  .product-wrapper .product-info .info-options .option .option-data_flex .option-image img {
    border-radius: 9px;
  }
  .product-wrapper .product-info .info-options .option .option-data_flex .option-content {
    max-width: 45%;
    margin-left: 2rem;
    padding-top: 1.5rem;
  }
  .product-wrapper .product-reviews .description {
    margin-left: 5rem !important;
  }
  .product-wrapper .related-products {
    padding: 6rem 0;
  }
  .product-wrapper .related-products h2 {
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 5rem;
  }
  .product-wrapper .related-products .related-products-inner .columns-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .product-wrapper .related-products .related-products-inner .product-card {
    margin: 0 0.75rem;
  }
}
@media (min-width: 1200px) {
  .product-wrapper .product-header .header-inner .swipers {
    width: 40%;
  }
  .product-wrapper .product-header .header-inner .product-data {
    width: 55%;
  }
  .product-wrapper .product-info .product-ingredients {
    width: calc(100% - 60px);
  }
}
@media (min-width: 1400px) {
  .product-wrapper .product-header .header-inner .swipers {
    width: 35%;
  }
  .product-wrapper .product-header .header-inner .product-data {
    width: 55%;
  }
  .product-wrapper .product-info .product-ingredients {
    width: calc(100% - 100px);
  }
  .product-wrapper .product-info .product-ingredients .ingredients-title h3 {
    margin-left: -30px;
  }
}
.cart-empty-wrapper .cart-title h2 {
  text-align: center;
}
.woocommerce-cart .woocommerce-Reviews {
  display: none !important;
}
.cart-wrapper #wc-stripe-payment-request-wrapper {
  display: none !important;
}
.cart-wrapper #wc-stripe-payment-request-button-separator {
  display: none !important;
}
.cart-wrapper .subscription-details {
  font-size: 12px;
  display: block;
}
.cart-wrapper .after-totals {
  display: none;
}
.cart-wrapper .others-buy {
  padding-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  background: #f8f8f8;
  gap: 10px;
  margin-top: 2rem;
}
.cart-wrapper .others-buy .others-title {
  width: 100%;
}
.cart-wrapper .others-buy .others-title h3 {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  margin-top: 2rem;
  text-transform: uppercase;
  font-size: 20px;
  text-align: center;
}
.cart-wrapper .others-buy .product-card {
  flex: 0 0 48%;
}
.cart-wrapper .cart_update_btn {
  display: none !important;
}
.cart-wrapper .cart-title h2 {
  text-transform: uppercase;
  font-size: 25px;
}
.cart-wrapper .cart-empty {
  text-align: center;
}
.cart-wrapper .cart-empty a {
  padding-left: 17px;
  display: block;
  color: #393939;
  position: relative;
  width: max-content;
  margin: auto;
  padding-right: 17px;
}
.cart-wrapper .cart-empty a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
  height: 10px;
  width: 10px;
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
}
.cart-wrapper .woocommerce-cart-form table {
  border: unset !important;
}
.cart-wrapper .woocommerce-cart-form table th {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}
.cart-wrapper .woocommerce-cart-form .cart_item {
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #c8c8c8;
}
.cart-wrapper .woocommerce-cart-form .cart_item td {
  border: unset;
  background-color: unset !important;
}
.cart-wrapper .woocommerce-cart-form .cart_item .product-name a {
  color: #393939;
  text-decoration: none;
  line-height: 16px;
}
.cart-wrapper .woocommerce-cart-form .cart_item .product-quantity .product-quantity-inner .quantity {
  display: none;
}
.cart-wrapper .woocommerce-cart-form .cart_item .product-remove a {
  color: #bcbcbc !important;
  font-weight: 100;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3px;
  font-size: 25px;
}
.cart-wrapper .woocommerce-cart-form .cart_item .mobile-data-inner .product-quantity-inner {
  display: flex;
  font-size: 25px;
  margin-top: 0.25rem;
}
.cart-wrapper .woocommerce-cart-form .cart_item .mobile-data-inner .product-quantity-inner p {
  margin: 0 0.75rem;
}
.cart-wrapper .woocommerce-cart-form .cart_item .mobile-data-inner .product-quantity-inner .quantity {
  display: none;
}
.cart-wrapper .woocommerce-cart-form .mobile-total td {
  background-color: transparent !important;
  border-top: unset;
}
.cart-wrapper .woocommerce-cart-form .mobile-total td:before {
  content: none;
}
.cart-wrapper .woocommerce-cart-form .mobile-total td .order-total {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
}
.cart-wrapper .woocommerce-cart-form .mobile-total td .order-total h3 {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  margin-right: 1rem;
  text-transform: uppercase;
  font-size: 16px;
}
.cart-wrapper .woocommerce-cart-form .mobile-total td .order-total span,
.cart-wrapper .woocommerce-cart-form .mobile-total td .order-total bdi {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}
.cart-wrapper .woocommerce-cart-form .mobile-total td .order-subtotal {
  display: flex;
  justify-content: flex-end;
  padding-top: 1.5rem;
}
.cart-wrapper .woocommerce-cart-form .mobile-total td .order-subtotal h3 {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  margin-right: 1rem;
}
.cart-wrapper .woocommerce-cart-form .mobile-total td .coupon-subtotal p {
  color: #48b067;
}
.cart-wrapper .woocommerce-cart-form .mobile-total td .coupon-subtotal p .amount {
  margin-left: 1rem;
}
.cart-wrapper .woocommerce-cart-form .mobile-total .free-delivery {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}
.cart-wrapper .woocommerce-cart-form .mobile-total .free-delivery h3 {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  text-transform: uppercase;
  margin: 0;
  margin-right: 1rem;
}
.cart-wrapper .woocommerce-cart-form .mobile-total .free-delivery .delivery-amount span {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}
.cart-wrapper .woocommerce-cart-form .actions {
  border: unset;
  background-color: unset !important;
}
.cart-wrapper .woocommerce-cart-form .actions .coupon {
  flex-wrap: wrap;
  max-width: 335px;
  justify-content: space-between;
  display: flex;
}
.cart-wrapper .woocommerce-cart-form .actions .coupon label {
  display: block !important;
  width: 100%;
  text-align: left;
  color: #adadad;
  font-size: 12px;
  line-height: 1;
}
.cart-wrapper .woocommerce-cart-form .actions .coupon input {
  border: unset !important;
  border-bottom: 1px solid #000000 !important;
  border-radius: 0 !important;
  margin-top: 8px;
  width: 100% !important;
  max-width: 170px;
}
.cart-wrapper .woocommerce-cart-form .actions .coupon input::placeholder {
  color: #1a1a1a;
  display: none;
}
.cart-wrapper .woocommerce-cart-form .actions .coupon .button {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  background-color: transparent;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  color: #1a1a1a;
  font-size: 16px;
  padding: 1rem 2rem 0.75rem 2rem;
  cursor: pointer;
  max-width: 120px;
  float: unset !important;
  margin-left: auto;
  margin-top: -0.5rem;
}
.cart-wrapper .woocommerce-cart-form .cart-collaterals .wc-proceed-back .wc-back-to-shop {
  margin: 1rem 0;
}
.cart-wrapper .woocommerce-cart-form .cart-collaterals .wc-proceed-back .wc-back-to-shop a {
  text-align: center;
  text-decoration: none;
  color: #393939;
  display: block;
  margin: 0 auto;
  position: relative;
  padding-left: 1.25rem;
  width: max-content;
}
.cart-wrapper .woocommerce-cart-form .cart-collaterals .wc-proceed-back .wc-back-to-shop a:after {
  content: "";
  width: 9px;
  height: 15px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../assets/svg/back-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.cart-wrapper .woocommerce-cart-form .cart-collaterals .wc-proceed-back .wc-proceed-to-checkout a {
  background-color: #8bc98d;
  font-size: 16px;
  font-weight: 400;
  border-radius: 7px;
  max-width: 280px;
  margin: auto;
}
.cart-wrapper .woocommerce-cart-form .cart-collaterals .coupon-discount {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #48b067;
}
.cart-wrapper .woocommerce-cart-form .cart-collaterals .coupon-discount p {
  margin-right: 1rem;
}
@media (max-width: 1023px) {
  .cart-wrapper .woocommerce-cart-form thead {
    display: none;
  }
  .cart-wrapper .woocommerce-cart-form .cart_item {
    display: flex;
    flex-wrap: wrap;
  }
  .cart-wrapper .woocommerce-cart-form .cart_item .product-thumbnail {
    display: block;
    max-width: 30%;
    width: 100%;
    padding: 5px;
  }
  .cart-wrapper .woocommerce-cart-form .cart_item .product-thumbnail img {
    width: 100%;
  }
  .cart-wrapper .woocommerce-cart-form .cart_item .product-thumbnail:before {
    display: none;
  }
  .cart-wrapper .woocommerce-cart-form .cart_item .product-price {
    display: none;
  }
  .cart-wrapper .woocommerce-cart-form .cart_item .product-quantity {
    display: none;
  }
  .cart-wrapper .woocommerce-cart-form .cart_item .product-subtotal {
    display: none;
  }
  .cart-wrapper .woocommerce-cart-form .cart_item .mobile-data {
    max-width: 65%;
    padding-right: 1.5rem;
  }
  .cart-wrapper .woocommerce-cart-form .cart_item .mobile-data a {
    display: block;
    text-align: left;
  }
  .cart-wrapper .woocommerce-cart-form .cart_item .mobile-data:before {
    display: none;
  }
  .cart-wrapper .woocommerce-cart-form .cart_item .mobile-data .mobile-price {
    text-align: left;
    display: none;
  }
  .cart-wrapper .woocommerce-cart-form .cart_item .mobile-data .mobile-subtotal .subscription-details {
    display: block;
  }
  .cart-wrapper .woocommerce-cart-form .cart_item .mobile-data .quantity-subtotal-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .cart-wrapper .woocommerce-cart-form .cart_item .mobile-data .quantity-subtotal-wrapper .amount {
    font-family: "BrasleyMedium";
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
  }
  .cart-wrapper .woocommerce-cart-form .cart_item .mobile-data .quantity-subtotal-wrapper .amount bdi {
    font-family: "BrasleyMedium";
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
  }
  .cart-wrapper .woocommerce-cart-form .cart_item .mobile-data .quantity-subtotal-wrapper .amount span {
    font-family: "BrasleyMedium";
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
  }
  .cart-wrapper .woocommerce-cart-form .cart_item .product-remove {
    position: absolute;
    right: 0;
    top: 0;
  }
  .cart-wrapper .order-total {
    display: none;
  }
  .cart-wrapper .coupon-discount {
    display: none !important;
  }
  .cart-wrapper .cart-collaterals .cart_subtotal {
    display: none;
  }
  .cart-wrapper .cart-collaterals .free-delivery {
    display: none;
  }
}
@media (min-width: 1024px) {
  .cart-wrapper .others-buy {
    margin-top: 10rem;
    justify-content: center;
    padding-bottom: 4rem;
    gap: 15px;
  }
  .cart-wrapper .cart-title h2 {
    font-size: 39px;
    line-height: 47px;
    text-align: center;
  }
  .cart-wrapper .cart-empty h3 {
    margin: 3rem auto;
    font-size: 31px;
    line-height: 37px;
  }
  .cart-wrapper .cart-empty a {
    margin-top: 4.5rem;
  }
  .cart-wrapper .woocommerce-cart-form {
    padding-bottom: 3rem;
    position: relative;
  }
  .cart-wrapper .woocommerce-cart-form .shop_table th {
    padding: 0;
  }
  .cart-wrapper .woocommerce-cart-form .shop_table td {
    padding-right: 0;
    padding-left: 0;
  }
  .cart-wrapper .woocommerce-cart-form .shop_table .product-thumbnail {
    padding-left: 15px;
  }
  .cart-wrapper .woocommerce-cart-form .shop_table .product-price {
    width: 140px;
  }
  .cart-wrapper .woocommerce-cart-form .shop_table .product-quantity {
    width: 140px;
  }
  .cart-wrapper .woocommerce-cart-form .shop_table .product-subtotal {
    width: 140px;
  }
  .cart-wrapper .woocommerce-cart-form .shop_table .product-subtotal .subscription-details {
    display: block;
  }
  .cart-wrapper .woocommerce-cart-form .shop_table .product-subtotal span,
  .cart-wrapper .woocommerce-cart-form .shop_table .product-subtotal bdi {
    font-family: "BrasleyMedium";
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
  }
  .cart-wrapper .woocommerce-cart-form .mobile-total {
    display: none;
  }
  .cart-wrapper .woocommerce-cart-form .cart_item td {
    border-bottom: 1px solid #c8c8c8;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .cart-wrapper .woocommerce-cart-form .cart_item .product-thumbnail img {
    width: 100px;
  }
  .cart-wrapper .woocommerce-cart-form .cart_item .product-name a {
    font-size: 20px;
  }
  .cart-wrapper .woocommerce-cart-form .cart_item .product-name .mobile-data-inner {
    display: none;
  }
  .cart-wrapper .woocommerce-cart-form .cart_item .product-quantity .product-quantity-inner {
    display: flex;
    align-items: center;
    font-size: 20px;
  }
  .cart-wrapper .woocommerce-cart-form .cart_item .product-quantity .product-quantity-inner span {
    cursor: pointer;
  }
  .cart-wrapper .woocommerce-cart-form .cart_item .product-quantity .product-quantity-inner p {
    margin: 0 0.75rem;
  }
  .cart-wrapper .woocommerce-cart-form .actions {
    border-top: 1px solid #c8c8c8;
  }
  .cart-wrapper .woocommerce-cart-form .actions .coupon {
    display: flex;
    padding-top: 2rem;
    padding-left: 2rem;
  }
  .cart-wrapper .woocommerce-cart-form .actions .coupon input {
    min-width: 140px !important;
    z-index: 2;
  }
  .cart-wrapper .woocommerce-cart-form .actions .coupon button {
    padding: 15px;
    z-index: 2;
    transition: 0.3s ease;
  }
  .cart-wrapper .woocommerce-cart-form .actions .coupon button:hover {
    background: #1a1a1a;
    color: #fff;
  }
  .cart-wrapper .woocommerce-cart-form .cart-collaterals {
    margin-top: -90px;
  }
  .cart-wrapper .woocommerce-cart-form .cart-collaterals .cart_totals .after-totals {
    display: none;
  }
  .cart-wrapper .woocommerce-cart-form .cart-collaterals .cart_totals .cart_subtotal {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 16%;
  }
  .cart-wrapper .woocommerce-cart-form .cart-collaterals .cart_totals .cart_subtotal p {
    font-family: "BrasleyMedium";
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    margin-right: 2rem;
  }
  .cart-wrapper .woocommerce-cart-form .cart-collaterals .cart_totals .cart_subtotal .subotal-amount {
    width: 140px;
    text-align: right;
  }
  .cart-wrapper .woocommerce-cart-form .cart-collaterals .cart_totals .cart_subtotal .subotal-amount span {
    font-family: "BrasleyMedium";
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
  }
  .cart-wrapper .woocommerce-cart-form .cart-collaterals .cart_totals .cart_subtotal .subotal-amount span bdi {
    font-family: "BrasleyMedium";
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
  }
  .cart-wrapper .woocommerce-cart-form .cart-collaterals .cart_totals .order-total {
    display: flex;
    justify-content: flex-end;
    margin-right: 16%;
    margin-top: 1rem;
  }
  .cart-wrapper .woocommerce-cart-form .cart-collaterals .cart_totals .order-total h3 {
    margin: 0;
    margin-right: 2rem;
    text-transform: uppercase;
    font-size: 16px;
    font-family: "BrasleyMedium";
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
  }
  .cart-wrapper .woocommerce-cart-form .cart-collaterals .cart_totals .order-total span,
  .cart-wrapper .woocommerce-cart-form .cart-collaterals .cart_totals .order-total bdi {
    font-family: "BrasleyMedium";
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
  }
  .cart-wrapper .woocommerce-cart-form .cart-collaterals .cart_totals .order-total .total-amount {
    width: 140px;
    text-align: right;
  }
  .cart-wrapper .woocommerce-cart-form .cart-collaterals .cart_totals .order-total .total-amount .includes_tax {
    display: block;
  }
  .cart-wrapper .woocommerce-cart-form .cart-collaterals .free-delivery {
    padding-right: 16%;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 1rem;
  }
  .cart-wrapper .woocommerce-cart-form .cart-collaterals .free-delivery h3 {
    font-family: "BrasleyMedium";
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    text-transform: uppercase;
    font-size: 16px;
    margin: 0;
    margin-right: 2rem;
  }
  .cart-wrapper .woocommerce-cart-form .cart-collaterals .free-delivery .delivery-amount {
    width: 140px;
  }
  .cart-wrapper .woocommerce-cart-form .cart-collaterals .free-delivery .delivery-amount span {
    font-family: "BrasleyMedium";
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
  }
  .cart-wrapper .woocommerce-cart-form .cart-collaterals .wc-proceed-back {
    padding-top: 3rem;
    margin-bottom: -3rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: 16%;
  }
  .cart-wrapper .woocommerce-cart-form .cart-collaterals .wc-proceed-back .wc-back-to-shop {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 2rem;
  }
  .cart-wrapper .woocommerce-cart-form .cart-collaterals .wc-proceed-to-checkout a {
    transition: 0.3s ease;
  }
  .cart-wrapper .woocommerce-cart-form .cart-collaterals .wc-proceed-to-checkout a:hover {
    background: #66ba68;
  }
  .cart-wrapper .woocommerce-cart-form .cart-collaterals .coupon-discount {
    padding-right: 16%;
  }
  .cart-wrapper .woocommerce-cart-form .cart-collaterals .coupon-discount p {
    margin: 0;
    margin-right: 2rem;
  }
  .cart-wrapper .woocommerce-cart-form .cart-collaterals .coupon-discount .discount-amount {
    width: 140px;
    text-align: right;
  }
}
@media (min-width: 1200px) {
  .cart-wrapper .others-buy {
    gap: 30px;
  }
}
.page-wrapper {
  padding-top: 110px;
  padding-bottom: 200px;
}
.page-wrapper .header-wrapper {
  background-color: #fbf5f5;
  padding-top: 3rem;
  padding-bottom: 2rem;
}
.page-wrapper .header-wrapper .prev-next-wrapper .prev-next-inner {
  width: max-content;
  margin-left: auto;
  margin-top: 1rem;
}
.page-wrapper .header-wrapper .prev-next-wrapper .prev-next-inner a {
  margin-right: 0.5rem;
  padding-right: 0.85rem;
  color: #393939;
  text-decoration: none;
  position: relative;
}
.page-wrapper .header-wrapper .prev-next-wrapper .prev-next-inner a:nth-child(1):after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -20%;
  height: 140%;
  width: 1px;
  background: #393939;
}
.page-wrapper .header-wrapper .header-inner .header-title-image .header-title h1 {
  font-size: 31px;
  line-height: 37px;
  color: #6f5151;
  margin: 0;
  margin-bottom: 2rem;
  border-bottom: 2px solid #6f5151;
  max-width: 580px;
}
.page-wrapper .header-wrapper .header-inner .header-title-image .header-image img {
  border-radius: 4px;
  max-width: 520px;
  width: 100%;
  object-fit: cover;
}
.page-wrapper .header-wrapper .header-inner .header-content h2 {
  font-size: 25px;
  line-height: 28px;
  color: #393939;
}
.page-wrapper .header-wrapper .header-inner .header-content a {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  color: #393939;
}
.page-wrapper .header-wrapper .header-inner .header-content p {
  font-size: 16px;
  color: #393939;
  line-height: 27px;
}
.page-wrapper .header-wrapper .header-inner .header-content ul {
  margin-left: 15px;
  padding: 0;
}
.page-wrapper .header-wrapper .header-inner .header-content ul li {
  color: #393939;
}
.page-wrapper .header-wrapper .header-inner .header-content .ask-offer {
  background: #1a1a1a;
  text-decoration: none;
  color: #fff;
  padding: 1rem 3rem 0.75rem;
  font-size: 16px;
  border-radius: 7px;
}
.page-wrapper .header-wrapper .header-inner form {
  padding: 1.5rem 1rem;
  background: #fff;
  border-radius: 18px;
}
.page-wrapper .header-wrapper .header-inner form p {
  margin-top: 0;
  margin-bottom: 0.75rem;
}
.page-wrapper .header-wrapper .header-inner form span {
  max-width: 350px;
  display: block;
}
.page-wrapper .header-wrapper .header-inner form span input,
.page-wrapper .header-wrapper .header-inner form span textarea {
  width: 100%;
  border: 1px solid #a5abbb;
  border-radius: 3px;
  padding: 5px 10px;
}
.page-wrapper .header-wrapper .header-inner form .your-message {
  max-width: 590px;
}
.page-wrapper .header-wrapper .header-inner form .wpcf7-submit {
  display: block;
  background: #1a1a1a;
  border-radius: 7px;
  border: unset;
  color: #fff;
  padding: 1rem 2rem;
  margin-left: auto;
}
.page-wrapper .header-wrapper .header-inner .wpcf7 .wpcf7-response-output {
  text-align: center;
}
.page-wrapper .header-wrapper .header-inner .wpcf7 form.invalid .wpcf7-response-output {
  color: #dc3232 !important;
  border: unset !important;
}
.page-wrapper .header-wrapper .header-inner .wpcf7 form.sent .wpcf7-response-output {
  color: #46b450 !important;
  border: unset !important;
}
.header-wrapper-alternative {
  margin: 0 -15px;
}
.header-wrapper-alternative .container-alternative {
  padding: 0 15px;
}
@media (max-width: 576px) {
  .page-wrapper .header-wrapper .header-inner .header-title-image .header-image img {
    max-height: 260px;
    object-position: top;
  }
  .page-wrapper .header-wrapper .header-inner .header-content p br {
    display: none;
  }
}
@media (min-width: 1024px) {
  .page-wrapper {
    padding-top: 164px;
  }
  .page-wrapper .header-wrapper {
    margin-right: 30px;
    margin-left: 30px;
    margin-bottom: 50px;
    padding-bottom: 5rem;
  }
  .page-wrapper .header-wrapper .prev-next-wrapper {
    display: block;
  }
  .page-wrapper .header-wrapper .prev-next-wrapper .prev-next-inner {
    margin-top: 2.5rem;
  }
  .page-wrapper .header-wrapper .header-inner {
    display: flex;
    justify-content: space-between;
  }
  .page-wrapper .header-wrapper .header-inner .header-title-image {
    width: 45%;
    margin-bottom: -150px;
  }
  .page-wrapper .header-wrapper .header-inner .header-title-image .header-title h1 {
    font-size: 39px;
    line-height: 64px;
    padding-bottom: 1rem;
  }
  .page-wrapper .header-wrapper .header-inner .nomargin {
    margin-bottom: 0;
  }
  .page-wrapper .header-wrapper .header-inner .smaller img {
    max-height: 550px;
  }
  .page-wrapper .header-wrapper .header-inner .header-content {
    width: 50%;
    margin-top: 3rem;
  }
  .page-wrapper .header-wrapper .header-inner .header-content h2 {
    font-size: 36px;
    line-height: 44px;
  }
  .page-wrapper .header-wrapper .header-inner .header-content p {
    font-size: 18px;
  }
  .page-wrapper .header-wrapper .header-inner .header-content p br {
    display: none;
  }
  .page-wrapper .header-wrapper .header-inner .header-content ol {
    margin: 0;
  }
  .page-wrapper .header-wrapper .header-inner .header-content .ask-offer {
    transition: 0.3s ease;
  }
  .page-wrapper .header-wrapper .header-inner .header-content .ask-offer:hover {
    background-color: #393939;
  }
  .page-wrapper .header-wrapper .header-inner .header-content.alternative {
    max-width: 51%;
  }
  .page-wrapper .header-wrapper .header-inner .header-content.alternative h2 {
    font-size: 31px;
    line-height: 37px;
  }
  .page-wrapper .header-wrapper .header-inner form {
    padding: 1rem 2rem;
  }
  .page-wrapper .header-wrapper .header-inner form span textarea,
  .page-wrapper .header-wrapper .header-inner form span input {
    padding: 7px 10px;
  }
  .page-wrapper .header-wrapper .header-inner form p {
    max-width: 590px;
  }
  .page-wrapper .header-wrapper-alternative {
    margin-left: 0;
    margin-right: 0;
  }
  .page-wrapper .header-wrapper-alternative .container-alternative .header-inner {
    padding: 0 15px;
  }
  .page-wrapper .header-wrapper-alternative .container-alternative .header-inner .header-title-image h1 {
    font-size: 31px;
    line-height: 37px;
    margin-top: 1rem;
  }
  .page-wrapper .header-wrapper-alternative .container-alternative .header-content {
    margin-top: 2.75rem;
    max-width: 590px;
  }
  .page-wrapper .header-wrapper-alternative .container-alternative .header-content p br {
    display: block;
  }
}
@media (min-width: 1200px) {
  .page-wrapper .header-wrapper .header-inner {
    padding: 0 15px;
  }
  .page-wrapper .header-wrapper .header-inner .header-content h2 {
    font-size: 39px;
    line-height: 47px;
  }
  .page-wrapper .header-wrapper-alternative .container-alternative .header-inner {
    padding: 0 30px;
  }
}
@media (min-width: 1400px) {
  .page-wrapper .header-wrapper {
    padding-top: 30px;
  }
  .page-wrapper .header-wrapper .header-inner {
    padding: 0 15px;
  }
  .page-wrapper .header-wrapper .header-inner .header-content {
    max-width: 50%;
  }
  .page-wrapper .header-wrapper .header-inner .header-content p br {
    display: block;
  }
  .page-wrapper .header-wrapper-alternative .container-alternative .header-inner {
    padding: 0 60px;
  }
}
@media (min-width: 1600px) {
  .page-wrapper .header-wrapper {
    padding-top: 100px;
    margin-right: 60px;
    margin-left: 60px;
  }
  .page-wrapper .header-wrapper-alternative {
    margin-right: 0;
    margin-left: 0;
    padding-top: 60px;
  }
  .page-wrapper .header-wrapper-alternative .container-alternative .header-inner {
    padding: 0 100px;
  }
}
.section-wrapper {
  padding: 15px;
  position: relative;
}
.section-wrapper .section-background {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  user-select: none;
  background-color: #fbf5f5;
}
.section-wrapper .section-image img {
  display: block;
  border-radius: 4px;
}
.section-wrapper .section-image .section-mobile-title h2 {
  color: #393939;
  font-size: 25px;
  line-height: 30px;
}
.section-wrapper .section-image .section-mobile-title h2 br {
  display: none;
}
.section-wrapper .section-content {
  padding: 0;
}
.section-wrapper .section-content .section-title h2 {
  color: #393939;
  font-size: 25px;
  line-height: 30px;
}
.section-wrapper .section-content h5 {
  color: #393939;
  line-height: 27px;
  font-size: 16px;
  font-weight: 400;
}
.section-wrapper .section-content p {
  color: #393939;
  line-height: 27px;
}
.section-wrapper .section-content p br {
  display: none;
}
.section-wrapper .section-content .mobile-hide {
  display: none;
}
.section-wrapper .section-content .availability-wrapper .availability-title {
  margin-top: 3rem;
}
.section-wrapper .section-content .availability-wrapper .availability-title h3 {
  text-align: center;
  font-size: 16px;
}
.section-wrapper .section-content ul {
  margin: 0;
  padding: 0;
  padding-left: 15px;
}
.section-wrapper .section-content ul li {
  margin: 2rem 0;
  line-height: 20px;
}
@media (max-width: 576px) {
  .section-wrapper .section-content .section-title h2 br {
    display: none;
  }
}
@media (min-width: 1024px) {
  .section-wrapper {
    display: flex;
    padding: 7rem 0;
    margin-bottom: 3rem;
  }
  .section-wrapper .section-background {
    width: calc(100% - 60px);
    left: 50%;
    transform: translateX(-50%);
  }
  .section-wrapper .section-image {
    width: 45%;
  }
  .section-wrapper .section-image img {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    height: 100%;
    object-fit: cover;
    max-height: 637px;
    width: 100%;
  }
  .section-wrapper .section-image .section-mobile-title {
    display: none;
  }
  .section-wrapper .section-content {
    padding: 0;
    margin-left: 2rem;
    margin-right: auto;
  }
  .section-wrapper .section-content .section-title h2 {
    font-size: 39px;
    line-height: 47px;
  }
  .section-wrapper .section-content p {
    line-height: 27px;
    font-size: 18px;
  }
  .section-wrapper .section-content ul li {
    font-size: 18px;
    line-height: 27px;
  }
  .section-wrapper .section-content .mobile-hide {
    display: block;
  }
  .section-wrapper .section-content .availability-wrapper .availability-title {
    margin-bottom: 1.5rem;
  }
  .section-wrapper .section-content .availability-wrapper .availability-title h3 {
    text-align: left;
  }
  .section-wrapper .section-content ul {
    margin-top: 3rem;
  }
  .reversed {
    flex-direction: row-reverse;
  }
  .reversed .section-image img {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .reversed .section-image .section-mobile-title {
    display: none;
  }
  .reversed .section-content {
    margin-left: auto;
    margin-right: 1rem;
  }
}
@media (min-width: 1200px) {
  .section-wrapper .section-content {
    margin-left: 3.5rem;
  }
  .reversed .section-content {
    margin-left: auto;
    margin-right: 1.5rem;
  }
}
@media (min-width: 1400px) {
  .section-wrapper .section-content {
    margin-left: 5rem;
  }
  .reversed .section-content {
    margin-left: auto;
    margin-right: 2.5rem;
  }
}
@media (min-width: 1600px) {
  .section-wrapper .section-background {
    width: calc(100% - 120px);
  }
  .section-wrapper .section-conten {
    margin-left: 7rem;
  }
  .reversed .section-content {
    margin-left: auto;
    margin-right: 3rem;
  }
}
.our-team-wrapper .our-team-title {
  text-align: center;
}
.our-team-wrapper .our-team-title h2 {
  color: #6f5151;
  font-size: 31px;
}
.our-team-wrapper .our-team-members .member {
  display: flex;
  align-items: center;
  max-width: 333px;
  margin: 2rem 0;
  width: 100%;
  flex-direction: column;
}
.our-team-wrapper .our-team-members .member .member-image {
  position: relative;
}
.our-team-wrapper .our-team-members .member .member-image img {
  display: block;
  height: 280px;
  width: 280px;
  object-fit: cover;
}
.our-team-wrapper .our-team-members .member .member-image .image-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  background: #f8f8f8;
  height: 105%;
  z-index: -1;
}
.our-team-wrapper .our-team-members .member .member-data {
  margin-top: 0.75rem;
}
.our-team-wrapper .our-team-members .member .member-data p {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  line-height: 20px;
  color: #020202;
}
.our-team-wrapper .our-team-members .member .member-data .member-position p {
  color: #6f5151;
}
.our-team-wrapper .our-team-members .member .member-data .member-content {
  margin-top: 1rem;
  text-align: center;
}
.our-team-wrapper .our-team-members .member .member-data .member-content p {
  font-family: "BrasleyRegular";
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
}
.our-team-wrapper .our-team-members .member .member-data .member-name p {
  font-size: 20px;
}
.our-team-wrapper .our-team-members .member .member-data .member-email {
  margin-top: 1.5rem;
}
.our-team-wrapper .our-team-members .member .member-data .member-email a {
  line-height: 20px;
  color: #020202;
  padding: 0 15px 0 25px;
  position: relative;
  text-decoration: none;
}
.our-team-wrapper .our-team-members .member .member-data .member-email a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 13px;
  background-image: url("../assets/svg/mail_icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.support-wrapper {
  text-align: center;
  max-width: 1000px !important;
}
.support-wrapper h2 {
  font-size: 25px;
  line-height: 30px;
  color: #393939;
  margin-top: 4rem;
}
.support-wrapper p {
  line-height: 27px;
  margin-bottom: 2rem;
}
.support-wrapper img {
  max-width: 180px;
}
@media (min-width: 1024px) {
  .our-team-wrapper {
    margin: 5rem auto !important;
  }
  .our-team-wrapper .our-team-title {
    text-align: left;
  }
  .our-team-wrapper .our-team-title h2 {
    font-size: 39px;
    margin-bottom: 0;
  }
  .our-team-wrapper .our-team-members {
    display: flex;
    justify-content: space-between;
  }
  .our-team-wrapper .our-team-members .member .member-image img {
    width: 300px;
    height: 300px;
  }
  .our-team-wrapper .our-team-members .member .member-data {
    max-width: 300px;
    text-align: center;
  }
  .support-wrapper {
    margin: 5rem auto !important;
  }
  .support-wrapper .support-title h2 {
    font-size: 39px;
    line-height: 41px;
    margin-bottom: 2.5rem;
    margin-top: 8rem;
  }
  .support-wrapper p {
    margin-bottom: 4rem;
  }
}
.ambassador-wrapper {
  position: relative;
  padding: 2rem 0;
}
.ambassador-wrapper .background {
  position: absolute;
  pointer-events: none;
  right: -15px;
  top: 0;
  height: 100%;
  background-color: #fbf5f5;
  width: calc(100% + 30px);
  z-index: -1;
}
.ambassador-wrapper .desktop-data,
.ambassador-wrapper .desktop-title {
  display: none;
}
.ambassador-wrapper .mobile-data h2 {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  font-size: 25px;
  line-height: 30px;
  color: #393939;
  margin-bottom: 0;
}
.ambassador-wrapper .mobile-data p {
  color: #6f5151;
  line-height: 27px;
}
.ambassador-wrapper .ambassador-content p {
  color: #393939;
  line-height: 24px;
}
.ambassador-wrapper .ambassador-content p br {
  display: none;
}
.ambassador-wrapper .favourite-smoothie h3 {
  font-family: "BrasleySemiBold";
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  margin-bottom: 0.5rem;
}
.ambassador-wrapper .favourite-smoothie ul {
  padding: 0;
  margin-left: 15px;
}
.ambassador-wrapper .favourite-product h3 {
  font-family: "BrasleySemiBold";
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  text-align: left;
  font-size: 16px;
  margin-bottom: 0;
  max-width: 300px;
  margin: auto;
}
.ambassador-wrapper .favourite-product .product-mini-card {
  max-width: 300px;
  margin: 0 auto;
  width: 100%;
  padding: 15px;
  border: 1px solid #e8e8e8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border-radius: 3px;
}
.ambassador-wrapper .favourite-product .product-mini-card .product-image {
  width: 35%;
  max-width: 80px;
}
.ambassador-wrapper .favourite-product .product-mini-card .product-image img {
  display: block;
  width: 100%;
  border-radius: 4px;
}
.ambassador-wrapper .favourite-product .product-mini-card .product-data {
  width: 65%;
}
.ambassador-wrapper .favourite-product .product-mini-card .product-data .product-title a {
  color: #393939;
  line-height: 19px;
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 0.25rem;
  text-decoration: none;
  display: block;
}
.ambassador-wrapper .favourite-product .product-mini-card .product-data .product-attr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.ambassador-wrapper .favourite-product .product-mini-card .product-data .product-attr .product-price h4 {
  margin: 0;
  font-size: 20px;
  line-height: 24px;
  color: #393939;
}
.ambassador-wrapper .favourite-product .product-mini-card .product-data .product-attr .product-add-to-cart a {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  color: #8bc98d;
  text-decoration: none;
  margin-right: 0.75rem;
}
.ambassador-wrapper .favourite-product .product-mini-card .product-data .product-attr .product-add-to-cart .added_to_cart {
  display: none;
}
@media (min-width: 1024px) {
  .ambassador-wrapper {
    display: flex;
    justify-content: space-between;
    padding-top: 0;
    margin: 4rem 0;
  }
  .ambassador-wrapper .background {
    width: calc(100% - 95px);
    right: -15px;
  }
  .ambassador-wrapper .mobile-data {
    display: none;
  }
  .ambassador-wrapper .desktop-data,
  .ambassador-wrapper .desktop-title {
    display: block;
  }
  .ambassador-wrapper .ambassador-image {
    width: 45%;
    max-width: 400px;
  }
  .ambassador-wrapper .ambassador-image img {
    max-width: 360px;
    width: 100%;
  }
  .ambassador-wrapper .ambassador-image .desktop-data {
    padding-left: 140px;
  }
  .ambassador-wrapper .ambassador-image .desktop-data p {
    color: #6f5151;
    line-height: 27px;
  }
  .ambassador-wrapper .ambassador-data {
    width: 60%;
    margin: 0 auto;
  }
  .ambassador-wrapper .ambassador-data .desktop-title h2 {
    margin-bottom: 0;
    font-size: 39px;
    line-height: 47px;
    color: #393939;
  }
  .ambassador-wrapper .ambassador-data .ambassador-favourite {
    display: flex;
    justify-content: space-between;
  }
  .ambassador-wrapper .ambassador-data .ambassador-favourite p {
    color: #6f5151;
    line-height: 27px;
  }
  .ambassador-wrapper .ambassador-data .ambassador-favourite .favourite-product {
    min-width: 300px;
  }
  .ambassador-wrapper .ambassador-data .ambassador-favourite .favourite-product h3 {
    text-align: left;
  }
  .ambassador-wrapper .ambassador-data .ambassador-favourite .favourite-product .product-mini-card {
    border: unset;
  }
  .ambassador-wrapper .ambassador-data .ambassador-favourite .favourite-product .product-data .product-attr .product-add-to-cart a {
    transition: 0.3s ease;
  }
  .ambassador-wrapper .ambassador-data .ambassador-favourite .favourite-product .product-data .product-attr .product-add-to-cart a:hover {
    color: #66ba68;
  }
}
@media (min-width: 1200px) {
  .ambassador-wrapper .ambassador-data .ambassador-content p br {
    display: block;
  }
}
.recipes-page-wrapper .recipes-page-inner .recipes-title h2 {
  color: #6f5151;
  font-size: 31px;
  margin-bottom: 1rem;
  line-height: 69px;
  border-bottom: 2px solid #6f5151;
  max-width: 580px;
}
.recipes-page-wrapper .recipes-page-inner .recipes-categories {
  background-color: #fbf5f5;
}
.recipes-page-wrapper .recipes-page-inner .recipes-categories:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(to left, #fbf5f5, rgba(251, 245, 245, 0.13));
  z-index: 9;
}
.recipes-page-wrapper .recipes-page-inner .recipes-categories:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(to right, #fbf5f5, rgba(251, 245, 245, 0.13));
  z-index: 9;
}
.recipes-page-wrapper .recipes-page-inner .recipes-categories .swiper-button-next {
  outline: none;
}
.recipes-page-wrapper .recipes-page-inner .recipes-categories .swiper-button-next:after {
  content: "";
  font-family: unset;
  background-image: url("../assets/svg/swiper_arrow.svg");
  background-position: 100% 50%;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.recipes-page-wrapper .recipes-page-inner .recipes-categories .swiper-button-prev {
  outline: none;
}
.recipes-page-wrapper .recipes-page-inner .recipes-categories .swiper-button-prev:after {
  content: "";
  font-family: unset;
  background-image: url("../assets/svg/swiper_arrow.svg");
  background-position: 100% 50%;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  width: 100%;
  height: 100%;
}
.recipes-page-wrapper .recipes-page-inner .recipes-categories .swiper-wrapper {
  padding: 1rem;
}
.recipes-page-wrapper .recipes-page-inner .recipes-categories .swiper-slide {
  width: fit-content;
}
.recipes-page-wrapper .recipes-page-inner .recipes-categories .swiper-slide a {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  color: #393939;
  text-decoration: none;
  margin-right: 0.75rem;
  line-height: 35px;
}
.recipes-page-wrapper .recipes-page-inner .recipes .recipe-card {
  width: 100%;
  margin: 2rem 0;
}
.recipes-page-wrapper .recipes-page-inner .recipes .recipe-card img {
  width: 100%;
  object-fit: cover;
  display: block;
}
.recipes-page-wrapper .recipes-page-inner .recipes .recipe-card a {
  display: block;
  text-decoration: none;
  color: #393939;
}
.recipes-page-wrapper .recipes-page-inner .recipes .recipe-card a p {
  color: #393939;
  font-size: 16px;
  line-height: 19px;
  margin: 0;
  margin-top: 0.75rem;
}
.recipe-wrapper .content {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .recipes-page-wrapper .recipes-page-inner .recipes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .recipes-page-wrapper .recipes-page-inner .recipes .recipe-card {
    max-width: 300px;
    max-height: 300px;
  }
  .recipes-page-wrapper .recipes-page-inner .recipes .recipe-card img {
    max-height: 300px;
  }
}
@media (min-width: 1024px) {
  .recipes-page-wrapper .recipes-page-inner .recipes-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  .recipes-page-wrapper .recipes-page-inner .recipes-top .recipes-title {
    max-width: 390px;
    width: 100%;
  }
  .recipes-page-wrapper .recipes-page-inner .recipes-top .recipes-title h2 {
    font-size: 39px;
    line-height: 69px;
    padding-bottom: 1rem;
  }
  .recipes-page-wrapper .recipes-page-inner .recipes-top .recipes-categories {
    margin-left: 1.5rem;
    margin-right: 0;
  }
  .recipes-page-wrapper .recipes-page-inner .recipes-top .recipes-categories a {
    margin: 0 10px;
  }
  .recipes-page-wrapper .recipes-page-inner .recipes-top .recipes-categories a:hover {
    text-decoration: underline;
  }
  .recipes-page-wrapper .recipes-page-inner .recipes-top .recipes-categories .current-category {
    font-family: "BrasleyMedium";
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    text-decoration: underline;
  }
  .recipes-page-wrapper .recipes-page-inner .recipes {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
  }
  .recipes-page-wrapper .recipes-page-inner .recipes .recipe-card {
    flex: 0 0 23%;
  }
  .recipes-page-wrapper .recipes-page-inner .recipes .recipe-card a {
    transition: 0.3s ease;
  }
  .recipes-page-wrapper .recipes-page-inner .recipes .recipe-card a:hover p {
    color: #8bc98d;
  }
  .recipes-page-wrapper .recipes-page-inner .recipes .recipe-card a p {
    transition: 0.3s ease;
    font-size: 18px;
    line-height: 22px;
  }
  .recipes-page-wrapper .recipes-page-inner .recipes .recipe-card a .recipe-image img {
    width: 237px;
    height: 237px;
    object-fit: cover;
    border-radius: 4px;
  }
}
@media (min-width: 1200px) {
  .recipes-page-wrapper .recipes-page-inner .recipes .recipe-card a p {
    font-size: 20px;
    line-height: 24px;
  }
  .recipes-page-wrapper .recipes-page-inner .recipes .recipe-card a .recipe-image img {
    width: 277px;
    height: 277px;
  }
}
@media (min-width: 1400px) {
  .recipes-page-wrapper .recipes-page-inner .recipes-top .recipes-title {
    max-width: 580px;
  }
  .recipes-page-wrapper .recipes-page-inner .recipes .recipe-card a .recipe-image img {
    width: 300px;
    height: 300px;
  }
}
.blog-wrapper .blog-title h2 {
  color: #6f5151;
  font-size: 31px;
  margin-bottom: 1rem;
  line-height: 69px;
  border-bottom: 2px solid #6f5151;
  max-width: 580px;
}
.blog-wrapper .search-title {
  max-width: unset;
  width: unset;
}
.blog-wrapper .search-title h2 {
  max-width: unset;
}
.blog-wrapper .blog-categories {
  position: relative;
  background-color: #fbf5f5;
  padding: 0 2rem;
}
.blog-wrapper .blog-categories:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(to left, #fbf5f5, rgba(251, 245, 245, 0.13));
  z-index: 9;
}
.blog-wrapper .blog-categories:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(to right, #fbf5f5, rgba(251, 245, 245, 0.13));
  z-index: 9;
}
.blog-wrapper .blog-categories .swiper-wrapper {
  padding: 1rem 0;
}
.blog-wrapper .blog-categories a {
  color: #393939;
  text-decoration: none;
}
.blog-wrapper .blog-categories .swiper-slide {
  width: fit-content;
}
.blog-wrapper .blog-categories .swiper-button-next {
  outline: none;
}
.blog-wrapper .blog-categories .swiper-button-next:after {
  content: "";
  font-family: unset;
  background-image: url("../assets/svg/swiper_arrow.svg");
  background-position: 100% 50%;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.blog-wrapper .blog-categories .swiper-button-prev {
  outline: none;
}
.blog-wrapper .blog-categories .swiper-button-prev:after {
  content: "";
  font-family: unset;
  background-image: url("../assets/svg/swiper_arrow.svg");
  background-position: 100% 50%;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  width: 100%;
  height: 100%;
}
.blog-wrapper .blog-search {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.blog-wrapper .blog-search form {
  position: relative;
}
.blog-wrapper .blog-search form .search-submit {
  color: transparent;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-55%);
  padding: 0;
  border: unset;
  border-color: unset;
  background: unset;
  height: 22px;
  width: 22px;
  background-image: url(../assets/svg/search.svg);
}
.blog-wrapper .blog-search form .search-field {
  padding: 12px;
  width: 290px;
  border-radius: 7px;
  background: #f8f8f8;
  border-color: #f8f8f8;
  outline-color: #f8f8f8;
}
.blog-wrapper .blog-search form .search-field::placeholder {
  color: #393939;
}
.blog-wrapper .blog-search form input[type="search"]::-ms-clear,
.blog-wrapper .blog-search form input[type="search"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
.blog-wrapper .blog-search form input[type="search"]::-webkit-search-decoration,
.blog-wrapper .blog-search form input[type="search"]::-webkit-search-cancel-button,
.blog-wrapper .blog-search form input[type="search"]::-webkit-search-results-button,
.blog-wrapper .blog-search form input[type="search"]::-webkit-search-results-decoration {
  display: none;
}
.blog-wrapper .posts-wrapper {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.blog-wrapper .posts-wrapper .post-card {
  max-width: 340px;
  margin-bottom: 2rem;
}
.blog-wrapper .posts-wrapper .post-card a {
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #393939;
  text-decoration: none;
}
.blog-wrapper .posts-wrapper .post-card a .blog-post-read-more p {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  height: auto;
  position: relative;
  color: #8bc98d;
  display: block;
  text-align: right;
  padding-right: 60px;
  margin: 0;
  margin-top: 0.5rem;
}
.blog-wrapper .posts-wrapper .post-card a .blog-post-read-more p:after {
  content: "";
  position: absolute;
  right: 0;
  top: 40%;
  transform: translateY(-50%);
  width: 45px;
  height: 13px;
  background-image: url("../assets/svg/see-more.svg");
  background-repeat: no-repeat;
  transition: 0.25s ease;
}
.blog-wrapper .posts-wrapper .post-card a .blog-post-read-more p:hover:after {
  right: -10px;
}
.blog-wrapper .posts-wrapper .post-card .post-card-image {
  position: relative;
}
.blog-wrapper .posts-wrapper .post-card .post-card-image .post-card-category {
  position: absolute;
  left: -10px;
  bottom: 10px;
}
.blog-wrapper .posts-wrapper .post-card .post-card-image .post-card-category p {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  background: #fff;
  margin: 0;
  padding: 0.25rem 1rem;
  color: #c4c4c4;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 14px;
}
.blog-wrapper .posts-wrapper .post-card .post-card-image img {
  border-radius: 4px;
  max-height: 230px;
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.blog-wrapper .posts-wrapper .post-card .post-card-title {
  margin-top: 0.75rem;
}
.blog-wrapper .posts-wrapper .post-card h3 {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 22px;
  margin-top: 5px;
}
.blog-wrapper .nav-links {
  flex-direction: row-reverse;
}
.blog-wrapper .nav-links .nav-previous {
  text-align: right;
}
.blog-wrapper .nav-links .nav-next {
  text-align: left;
}
.blog-wrapper .nav-links a {
  color: #66b973;
}
@media (min-width: 1024px) {
  .blog-wrapper .blog-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  .blog-wrapper .blog-top .blog-title {
    max-width: 390px;
    width: 100%;
  }
  .blog-wrapper .blog-top .blog-title h2 {
    font-size: 39px;
    line-height: 69px;
    padding-bottom: 1rem;
  }
  .blog-wrapper .blog-top .search-title {
    max-width: unset;
    width: unset;
  }
  .blog-wrapper .blog-top .search-title h2 {
    max-width: unset;
  }
  .blog-wrapper .blog-top .blog-categories {
    display: flex;
    flex-wrap: wrap;
    max-width: max-content;
    margin-left: 1.5rem;
    margin-right: 0;
  }
  .blog-wrapper .blog-top .blog-categories .swiper-slide {
    width: fit-content;
  }
  .blog-wrapper .blog-top .blog-categories a {
    display: block;
    margin: 3px 10px;
  }
  .blog-wrapper .blog-top .blog-categories a:hover {
    text-decoration: underline;
  }
  .blog-wrapper .blog-top .blog-categories .current-category {
    font-family: "BrasleyMedium";
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    text-decoration: underline;
  }
  .blog-wrapper .blog-search {
    display: flex;
    justify-content: flex-end;
    margin-top: 3rem;
  }
  .blog-wrapper .blog-search form .search-field {
    width: 400px;
  }
  .blog-wrapper .posts-wrapper {
    margin: 4rem 0;
    gap: 35px;
  }
  .blog-wrapper .posts-wrapper .post-card {
    margin-bottom: 0;
    max-width: unset;
    flex: 0 0 calc(33% - 20.5px);
  }
  .blog-wrapper .posts-wrapper .post-card .post-card-image .post-card-category {
    bottom: 18px;
    left: -10px;
  }
  .blog-wrapper .posts-wrapper .post-card .post-card-image .post-card-category p {
    font-size: 16px;
  }
  .blog-wrapper .posts-wrapper .wide-card {
    flex: 0 0 calc(50% - 17.5px);
  }
  .blog-wrapper .posts-wrapper .wide-card .post-card-image img {
    width: 100%;
    max-height: 340px;
    height: 340px;
    object-fit: cover;
  }
}
.blog-post-wrapper {
  margin-bottom: 3rem;
}
.blog-post-wrapper .blog-post-inner {
  max-width: 860px;
  margin: 0 auto;
}
.blog-post-wrapper .blog-post-inner ul {
  margin-left: 0;
}
.blog-post-wrapper .blog-post-inner a,
.blog-post-wrapper .blog-post-inner p {
  color: #393939;
}
.blog-post-wrapper .blog-post-inner .blog-post-title h2 {
  font-size: 30px;
  line-height: 30px;
  color: #393939;
  margin-bottom: 0;
}
.blog-post-wrapper .blog-post-inner .blog-post-thumbnail {
  position: relative;
}
.blog-post-wrapper .blog-post-inner .blog-post-thumbnail .post-category {
  position: absolute;
  left: -10px;
  top: 20px;
}
.blog-post-wrapper .blog-post-inner .blog-post-thumbnail .post-category p {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0.45rem 1rem 0.25rem 1rem;
  background-color: #fff;
  color: #c4c4c4;
  border-radius: 20px;
  text-transform: uppercase;
  font-size: 14px;
}
.blog-post-wrapper .blog-post-inner .blog-post-date p {
  color: #b4b4b4;
}
.blog-post-wrapper .blog-post-inner h4 {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  color: #66b973;
  font-size: 20px;
}
@media (min-width: 1024px) {
  .blog-post-wrapper .blog-post-inner .blog-post-title h2 {
    font-size: 39px;
    line-height: 42px;
  }
  .blog-post-wrapper .blog-post-inner h4 {
    font-size: 25px;
  }
  .blog-post-wrapper .blog-post-inner .blog-post-thumbnail .post-category {
    left: -15px;
  }
}
.login-modal {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
}
.login-modal #login-form {
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 2rem;
  border-radius: 18px;
  max-width: 410px;
  width: calc(100% - 30px);
}
.login-modal #login-form h3 {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
  text-align: center;
  color: #393939;
}
.login-modal #login-form .login-message p {
  font-size: 16px;
  margin: 0;
  text-align: center;
}
.login-modal #login-form .login-message .error {
  color: #d00000;
}
.login-modal #login-form .login-message .success {
  color: #8bc98d;
}
.login-modal #login-form .login-message .success span {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-decoration: underline;
  cursor: pointer;
}
.login-modal #login-form label {
  display: block;
  padding-left: 5px;
  line-height: 19px;
  color: #393939;
  margin-bottom: 0.25rem;
}
.login-modal #login-form input {
  width: 100%;
  border: 1px solid #a5abbb;
  border-radius: 7px;
  padding: 0.5rem 1rem;
}
.login-modal #login-form .login-remember {
  display: none;
}
.login-modal #login-form .login-remember #rememberme {
  width: auto;
}
.login-modal #login-form .register {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #707070;
}
.login-modal #login-form .register p {
  text-align: center;
}
.login-modal #login-form .register span {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-decoration: underline;
  cursor: pointer;
}
.login-modal #login-form .login-submit input {
  display: block;
  margin: 1rem auto;
  margin-top: 2rem;
  width: max-content;
  padding: 1rem 5rem 0.75rem;
  background: #8bc98d;
  border-radius: 7px;
  color: #fff;
  font-weight: 400;
  cursor: pointer;
}
.login-modal .register-form-wrapper {
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 2rem;
  border-radius: 18px;
  max-width: 410px;
  width: calc(100% - 30px);
  display: none;
}
.login-modal .register-form-wrapper .field-input {
  margin-bottom: 0.75rem;
}
.login-modal .register-form-wrapper h3 {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
  text-align: center;
  color: #393939;
}
.login-modal .register-form-wrapper .register-message p {
  font-size: 16px;
  margin: 0;
  text-align: center;
}
.login-modal .register-form-wrapper .register-message .error {
  color: #d00000;
}
.login-modal .register-form-wrapper .register-message .success {
  color: #8bc98d;
}
.login-modal .register-form-wrapper .register-message .success span {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-decoration: underline;
  cursor: pointer;
}
.login-modal .register-form-wrapper fieldset {
  border: unset;
}
.login-modal .register-form-wrapper fieldset label {
  display: block;
  padding-left: 5px;
  line-height: 19px;
  margin-bottom: 0.25rem;
}
.login-modal .register-form-wrapper fieldset input {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #a5abbb;
  border-radius: 7px;
}
.login-modal .register-form-wrapper #register-button {
  display: block;
  margin: 1rem auto;
  margin-top: 2rem;
  width: max-content;
  padding: 1rem 5rem 0.75rem;
  background: #8bc98d;
  border-radius: 7px;
  color: #fff;
  font-weight: 400;
  cursor: pointer;
}
.login-modal .register-form-wrapper .login-here {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #707070;
}
.login-modal .register-form-wrapper .login-here p {
  text-align: center;
}
.login-modal .register-form-wrapper .login-here span {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-decoration: underline;
  cursor: pointer;
}
.toggled-login {
  display: block;
}
.woocommerce-order-pay .woocommerce-info {
  position: relative;
  top: unset;
  left: unset;
  transform: unset;
  margin: 2rem auto;
  padding: 1rem 2rem;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 3px 16px rgba(10, 46, 70, 0.16);
  z-index: 100;
  width: 90%;
  max-width: max-content;
  border: unset;
}
.woocommerce-order-pay .woocommerce-info:before {
  content: none;
}
.woocommerce-order-pay #payment {
  max-width: 600px;
}
.woocommerce-order-pay #payment #update_all_subscriptions_payment_method_field {
  padding: 10px 15px;
}
.woocommerce-order-pay #payment #place_order {
  background-color: #8bc98d !important;
  font-weight: 400 !important;
  padding: 1rem 2rem !important;
  display: block !important;
  margin: auto !important;
  width: auto !important;
  border-radius: 7px !important;
  float: unset !important;
}
@media (min-width: 1024px) {
  .woocommerce-order-pay #payment #place_order {
    transition: 0.3s ease;
  }
  .woocommerce-order-pay #payment #place_order:hover {
    background-color: #66BA68 !important;
  }
}
.woocommerce-view-subscription .subscription_details a {
  padding: 0.75rem 1rem 0.55rem;
}
.woocommerce-view-subscription .subscription_details a.button {
  font-family: "BrasleyRegular";
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  border: 1px solid #090909;
  border-radius: 4px;
  background-color: transparent;
}
.woocommerce-view-subscription .subscription_details a.cancel {
  border-color: #D00000;
  color: #D00000;
}
.woocommerce-view-subscription .order_item .wcs-switch-link {
  display: none;
}
@media (min-width: 1024px) {
  .woocommerce-view-subscription .subscription_details a.button {
    transition: 0.3s ease;
  }
  .woocommerce-view-subscription .subscription_details a.button:hover {
    background-color: #090909;
    color: #fff;
  }
  .woocommerce-view-subscription .subscription_details a.cancel:hover {
    background-color: #D00000;
  }
}
.account-page {
  background: #fafafa;
}
.account-page .woocommerce-message {
  max-width: max-content;
  box-shadow: 0px 3px 16px rgba(10, 46, 70, 0.16);
  z-index: 5;
  background: #fff;
  border-radius: 5px;
  margin: 0 auto;
  height: fit-content;
  margin-top: 2rem;
  border: unset;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
.account-page .woocommerce-message .woocommerce-Button {
  font-family: "BrasleyRegular";
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  margin-left: 1rem;
  background: #8bc98d;
  color: #fff;
  border-radius: 7px;
  padding: 13px 20px 10px 20px;
  transition: 0.25s ease;
}
.account-page .woocommerce-message .woocommerce-Button:hover {
  background: #66ba68;
  color: #fff;
}
.account-page .woocommerce-message:before {
  top: 50%;
  transform: translateY(-50%);
}
.account-page .woocommerce .woocommerce-MyAccount-content {
  width: 100%;
}
.account-page .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table {
  background-color: #fff;
  border: unset;
  padding: 1rem;
}
.account-page .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table th span {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}
.account-page .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td {
  border: unset;
}
.account-page .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table .woocommerce-orders-table__cell-order-number a {
  color: #393939;
}
.account-page .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table .view {
  font-family: "BrasleyMedium";
  -webkit-font-smoothing: antialiased;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  color: #8bc98d;
  border: 1px solid #8bc98d;
  border-radius: 5px;
  padding: 11px 15px 6px;
  background: #fff;
}
.account-page .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm {
  background: #fff;
  max-width: 540px;
  padding: 1rem;
}
.account-page .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm .woocommerce-address-fields p {
  max-width: 340px;
}
.account-page .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm p {
  float: unset;
  width: 100%;
}
.account-page .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm input {
  max-width: 340px;
  border-color: #a5abbb;
  border-radius: 7px;
  padding: 10px;
  display: block;
}
.account-page .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm em {
  color: #9c9c9c;
  font-family: "Glacial Indifference Italic";
  margin-top: 0.5rem;
  display: block;
}
.account-page .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset {
  border: unset;
  padding-left: 0;
  width: max-content;
  margin-top: 1.5rem;
}
.account-page .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset legend {
  text-transform: uppercase;
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}
.account-page .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm .woocommerce-Button,
.account-page .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm .button {
  background-color: #8bc98d;
  color: #fff;
  border-radius: 7px;
  padding: 1rem 2rem;
  margin-left: 115px;
  width: 224px;
  font-family: [object Object],[object Object],[object Object];
  font-weight: 400;
}
.account-page .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses {
  margin-top: 3rem;
  max-width: 500px;
  padding: 2rem 1rem;
  background: #fff;
}
.account-page .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address {
  float: unset;
  width: 100%;
  margin: 1rem 0;
  border-bottom: 1px solid #e4e4e4;
}
.account-page .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address a {
  position: relative;
  color: #727272;
  text-decoration: none;
}
.account-page .woocommerce .woocommerce-form {
  max-width: 413px;
  border: unset;
  border-radius: 18px;
  background: #fff;
  padding: 2rem;
}
.account-page .woocommerce .woocommerce-form .woocommerce-form-login__rememberme {
  display: block;
}
.account-page .woocommerce .woocommerce-form .woocommerce-button,
.account-page .woocommerce .woocommerce-form .button {
  background-color: #8bc98d;
  color: #fff;
  float: unset;
  border-radius: 7px;
  font-weight: 400;
  display: block;
  margin: 1rem auto;
  padding: 1rem 5rem;
}
@media (min-width: 1024px) {
  .account-page .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm {
    padding: 3rem 3rem 3rem 4rem;
    width: max-content;
    min-width: 500px;
  }
  .account-page .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses {
    padding: 2rem;
    height: max-content;
  }
  .account-page .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table {
    padding: 1.5rem 2rem;
  }
  .account-page .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table th,
  .account-page .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td {
    font-size: 18px;
  }
  .account-page .woocommerce .woocommerce-MyAccount-content .view {
    transition: 0.25s ease;
  }
  .account-page .woocommerce .woocommerce-MyAccount-content .view:hover {
    background: #8bc98d;
    color: #fff;
  }
}
@media (min-width: 1200px) {
  .account-page .woocommerce .woocommerce-MyAccount-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .account-page .woocommerce .woocommerce-MyAccount-content .woocommerce-notices-wrapper {
    flex: 0 0 100%;
  }
  .account-page .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses {
    padding: 2rem;
    margin-top: 0;
  }
  .account-page .woocommerce .noflex {
    display: block;
    flex-wrap: none;
    justify-content: none;
  }
}
@media (max-width: 413px) {
  .woocommerce-EditAccountForm label,
  .woocommerce-EditAccountForm span {
    max-width: 308px;
  }
  .woocommerce-EditAccountForm .button {
    margin-left: 87px !important;
  }
}
@media (max-width: 374px) {
  .woocommerce-EditAccountForm label,
  .woocommerce-EditAccountForm span {
    max-width: 250px;
  }
  .woocommerce-EditAccountForm .button {
    margin-left: 32px !important;
  }
}
.checkout-page .includes_tax {
  display: block;
}
.checkout-page #customer_details {
  width: 100%;
}
.checkout-page .order_review_wrapper {
  height: max-content;
  max-width: 520px;
  padding: 2rem 1rem;
  background: #f8f8f8;
}
.checkout-page .order_review_wrapper #order_review {
  background: #fff;
}
.checkout-page .order_review_wrapper #order_review select {
  max-width: 350px;
  width: 100%;
  border-color: #a5abbb;
  border-radius: 4px;
  padding: 10px 5px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("../assets/svg/select_arrow.svg");
  background-position: 95% center;
  background-repeat: no-repeat;
}
.checkout-page .order_review_wrapper #order_review select:before {
  content: none !important;
}
.checkout-page .order_review_wrapper #order_review table {
  border: unset;
}
.checkout-page .order_review_wrapper #order_review table .cart-discount a {
  display: none;
}
.checkout-page .order_review_wrapper #order_review td,
.checkout-page .order_review_wrapper #order_review th {
  border: unset;
  display: block;
}
.checkout-page .order_review_wrapper #order_review .cart_item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #edece9;
  margin-bottom: 0.75rem;
}
.checkout-page .order_review_wrapper #order_review .cart_item .product-name {
  width: 50%;
}
.checkout-page .order_review_wrapper #order_review .cart_item .product-total {
  width: 50%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.checkout-page .order_review_wrapper #order_review .cart_item .product-total .product-quantity,
.checkout-page .order_review_wrapper #order_review .cart_item .product-total .woocommerce-Price-amount {
  height: min-content;
  margin-top: auto;
}
.checkout-page .order_review_wrapper #order_review .cart_item .product-total .subscription-details {
  font-size: 12px;
  width: 100%;
  text-align: right;
}
.checkout-page .order_review_wrapper #order_review .cart_item .product-quantity {
  margin: 0;
  margin-right: 10px;
  color: #828282;
}
.checkout-page .order_review_wrapper #order_review .bundle_table_item {
  margin-bottom: 0;
}
.checkout-page .order_review_wrapper #order_review .in_bundle {
  margin-bottom: 2px;
  padding-left: 15px;
  font-size: 14px;
}
.checkout-page .order_review_wrapper #order_review .in_bundle td {
  padding: 0 12px;
}
.checkout-page .order_review_wrapper #order_review .in_bundle .product-name {
  width: calc(100% - 40px);
}
.checkout-page .order_review_wrapper #order_review .in_bundle .product-total {
  width: 40px;
}
.checkout-page .order_review_wrapper #order_review .cart-subtotal {
  display: flex;
  justify-content: space-between;
}
.checkout-page .order_review_wrapper #order_review .cart-subtotal th,
.checkout-page .order_review_wrapper #order_review .cart-subtotal bdi,
.checkout-page .order_review_wrapper #order_review .cart-subtotal span {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}
.checkout-page .order_review_wrapper #order_review .cart-shipping {
  display: flex;
  justify-content: space-between;
}
.checkout-page .order_review_wrapper #order_review .cart-shipping td {
  padding-bottom: 0;
}
.checkout-page .order_review_wrapper #order_review .cart-discount {
  display: flex;
  justify-content: space-between;
  color: #48b067;
}
.checkout-page .order_review_wrapper #order_review .cart-discount td {
  padding-top: 0;
}
.checkout-page .order_review_wrapper #order_review .order-total {
  display: flex;
  justify-content: space-between;
}
.checkout-page .order_review_wrapper #order_review .order-total td {
  text-align: right;
}
.checkout-page .order_review_wrapper #order_review .order-total th,
.checkout-page .order_review_wrapper #order_review .order-total bdi,
.checkout-page .order_review_wrapper #order_review .order-total span {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-transform: uppercase;
}
.checkout-page .order_review_wrapper #order_review .order-total th,
.checkout-page .order_review_wrapper #order_review .order-total td {
  padding-top: 0;
}
.checkout-page .order_review_wrapper #order_review .woocommerce-shipping-totals h3 {
  margin-top: 2rem;
  margin-bottom: 0;
}
.checkout-page .order_review_wrapper #order_review .payment_method_montonio_payments {
  background-color: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}
.checkout-page .order_review_wrapper #order_review .payment_method_montonio_payments .montonio-aspsp-grid {
  margin-top: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.checkout-page .order_review_wrapper #order_review .payment_method_montonio_payments .montonio-aspsp-grid .montonio-aspsp-grid-item {
  height: 60px;
}
.checkout-page .order_review_wrapper #order_review .payment_method_montonio_payments p {
  margin-bottom: 1rem;
}
.checkout-page .order_review_wrapper #order_review .payment_method_montonio_payments select {
  max-width: unset;
  width: 120px;
  margin-left: 0.5rem;
  border-color: #a5abbb;
  border-radius: 4px;
  padding: 5px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("../assets/svg/select_arrow.svg");
  background-position: 95% center;
  background-repeat: no-repeat;
}
.checkout-page .order_review_wrapper #order_review .payment_method_montonio_payments:before {
  content: none !important;
}
.checkout-page .order_review_wrapper #order_review .mc4wp-checkbox input {
  margin: -2px 8px 0 0;
}
.checkout-page .checkout-billing,
.checkout-page .checkout-shipping {
  max-width: 400px;
}
.checkout-page .checkout-billing .woocommerce-billing-fields label,
.checkout-page .checkout-shipping .woocommerce-billing-fields label,
.checkout-page .checkout-billing .woocommerce-shipping-fields label,
.checkout-page .checkout-shipping .woocommerce-shipping-fields label {
  padding-left: 5px;
}
.checkout-page .checkout-billing .woocommerce-billing-fields input,
.checkout-page .checkout-shipping .woocommerce-billing-fields input,
.checkout-page .checkout-billing .woocommerce-shipping-fields input,
.checkout-page .checkout-shipping .woocommerce-shipping-fields input {
  padding: 10px 5px;
  padding-bottom: 8px;
  border-radius: 7px;
  border: 1px solid #a5abbb;
}
.checkout-page .checkout-billing .checkout-shipping,
.checkout-page .checkout-shipping .checkout-shipping {
  display: none;
}
.checkout-page .woocommerce-checkout-review-order {
  padding: 2rem 1rem;
}
.checkout-page .woocommerce-checkout-review-order h3 {
  margin-top: 0;
  font-size: 20px;
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}
.checkout-page .woocommerce-checkout-review-order .wc_payment_methods {
  padding: 0 15px;
}
.checkout-page .woocommerce-checkout-review-order-div {
  background: #fff;
  border-radius: 4px;
  padding: 2rem 1rem;
}
.checkout-page .woocommerce-checkout-review-order-div .cart_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #edece9 !important;
}
.checkout-page .woocommerce-checkout-review-order-div .cart_item .product-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 52%;
}
.checkout-page .woocommerce-checkout-review-order-div .cart_item .woocommerce-Price-amount bdi {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}
.checkout-page .woocommerce-checkout-review-order-div .order-total {
  padding: 1rem 0.5rem;
}
.checkout-page .woocommerce-checkout-review-order-div .order-total .subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.checkout-page .woocommerce-checkout-review-order-div .order-total .subtotal p,
.checkout-page .woocommerce-checkout-review-order-div .order-total .subtotal bdi,
.checkout-page .woocommerce-checkout-review-order-div .order-total .subtotal span {
  margin: 0;
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}
.checkout-page .woocommerce-checkout-review-order-div .order-total .shipping-total {
  display: flex;
  justify-content: space-between;
}
.checkout-page .woocommerce-checkout-review-order-div .order-total .shipping-total p {
  margin: 0;
}
.checkout-page .woocommerce-checkout-review-order-div .order-total .coupon-wrapper {
  display: flex;
  justify-content: space-between;
  color: #48b067;
}
.checkout-page .woocommerce-checkout-review-order-div .order-total .coupon-wrapper a {
  display: none;
}
.checkout-page .woocommerce-checkout-review-order-div .order-total .coupon-wrapper .amount {
  position: relative;
  padding-left: 10px;
}
.checkout-page .woocommerce-checkout-review-order-div .order-total .coupon-wrapper .amount:before {
  content: "-";
  position: absolute;
  left: 0;
  height: 3px;
  width: 7px;
  color: #48b067;
}
.checkout-page .woocommerce-checkout-review-order-div .order-total .total {
  display: flex;
  justify-content: space-between;
}
.checkout-page .woocommerce-checkout-review-order-div .order-total .total p {
  margin: 0;
  margin-top: 5px;
  text-transform: uppercase;
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}
.checkout-page .woocommerce-checkout-review-order-div .payment_method_montonio_payments {
  background-color: unset;
}
.checkout-page .place-order {
  padding: 1rem 0.5rem !important;
}
.checkout-page .place-order button {
  background-color: #8bc98d !important;
  font-weight: 400 !important;
  padding: 1rem 4rem !important;
  display: block !important;
  margin: auto !important;
  width: auto !important;
  border-radius: 7px !important;
  float: unset !important;
}
.checkout-page .place-order .validate-required {
  padding: 0 !important;
  margin-bottom: 0.75rem !important;
}
.checkout-page .woocommerce-checkout-payment {
  background: transparent !important;
  margin-top: 3rem;
}
.checkout-page .woocommerce-checkout-payment ul {
  padding: 0 0.5rem !important;
  border-bottom: unset !important;
}
.checkout-page .checkout-shipping-methods {
  margin-top: 3rem;
}
.checkout-page .checkout-shipping-methods h3 {
  color: #393939;
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
}
.checkout-page .checkout-shipping-methods label {
  display: block;
  color: #393939;
}
.checkout-page .checkout-shipping-methods ul li label {
  display: initial;
}
.checkout-page .checkout-shipping-methods select {
  margin-top: 0.5rem;
  padding: 10px 5px;
  border-color: #a5abbb;
  border-radius: 7px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("../assets/svg/select_arrow.svg");
  background-position: 95% center;
  background-repeat: no-repeat;
}
@media (max-width: 374px) {
  .checkout-page .order_review_wrapper #order_review select {
    max-width: 210px;
  }
}
@media (max-width: 413px) {
  .checkout-page .order_review_wrapper #order_review select {
    max-width: 260px;
  }
}
@media (max-width: 568px) {
  .checkout-page .order_review_wrapper #order_review select {
    max-width: 290px;
  }
}
@media (min-width: 768px) {
  .checkout-page #customer_details {
    width: max-content;
  }
}
@media (min-width: 1024px) {
  .checkout-page .woocommerce .woocommerce-checkout {
    display: flex;
    justify-content: space-between;
  }
  .checkout-page .woocommerce .woocommerce-checkout .order_review_wrapper {
    padding: 2rem;
  }
  .checkout-page .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .woocommerce-checkout-review-order-div {
    padding: 2rem 1.5rem;
  }
}
/* .woocommerce-checkout p.woocommerce-invalid-required-field span.error {
  color: #ff2a00;
  display: block !important;
  font-weight: bold;
} */
.woocommerce-checkout .woocommerce-NoticeGroup-checkout {
  position: fixed;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  max-width: max-content;
  box-shadow: 0px 3px 16px rgba(10, 46, 70, 0.16);
  z-index: 5;
  background: #fff;
  border-radius: 5px;
}
.woocommerce-checkout .woocommerce-NoticeGroup-checkout .woocommerce-error {
  border: unset;
  margin: 0;
  background: unset;
}
.woocommerce-checkout .woocommerce-NoticeGroup-checkout .woocommerce-message {
  margin: 0;
  border: unset;
  background: unset;
}
.woocommerce-checkout .woocommerce-invalid-required-field .error {
  color: #ff2a00;
  display: block !important;
  font-size: 14px;
  padding-left: 5px;
  margin-top: 0.25rem;
  line-height: 18px;
}
@font-face {
  font-family: "BrasleyBold";
  src: url("../assets/fonts/BrasleyBold.woff");
}
@font-face {
  font-family: "BrasleySemiBold";
  src: url("../assets/fonts/BrasleySemiBold.woff");
}
@font-face {
  font-family: "BrasleyLight";
  src: url("../assets/fonts/BrasleyLight.woff");
}
@font-face {
  font-family: "BrasleyMedium";
  src: url("../assets/fonts/BrasleyMedium.woff");
}
@font-face {
  font-family: "BrasleyRegular";
  src: url("../assets/fonts/BrasleyRegular.woff");
}
@font-face {
  font-family: "BrasleyThin";
  src: url("../assets/fonts/BrasleyThin.woff");
}
@font-face {
  font-family: "BrasleyThin";
  src: url("../assets/fonts/BrasleyThin.woff");
}
@font-face {
  font-family: "Glacial Indifference";
  src: url("../assets/fonts/GlacialIndifference-Italic.otf");
  src: url("../assets/fonts/GlacialIndifference-Bold.otf");
  src: url("../assets/fonts/GlacialIndifference-Regular.otf");
}
@font-face {
  font-family: "Glacial Indifference Bold";
  src: url("../assets/fonts/GlacialIndifference-Bold.otf");
}
@font-face {
  font-family: "Glacial Indifference Italic";
  src: url("../assets/fonts/GlacialIndifference-Italic.otf");
}
@font-face {
  font-family: "Eluclid Circular B";
  src: url("../assets/fonts/EuclidCircularB-Bold.ttf");
  src: url("../assets/fonts/EuclidCircularB-Medium.ttf");
  src: url("../assets/fonts/EuclidCircularB-Regular.ttf");
}
@keyframes shake {
  0% {
    transform: translateX(0px);
  }
  10% {
    transform: translateX(2px);
  }
  20% {
    transform: translateX(0px);
  }
  30% {
    transform: translateX(-2px);
  }
  40% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(2px);
  }
  60% {
    transform: translateX(0px);
  }
  70% {
    transform: translateX(-2px);
  }
  80% {
    transform: translateX(0px);
  }
  90% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(0px);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
* {
  font-family: "BrasleyRegular";
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
body button,
body input {
  font-family: "BrasleyRegular";
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
h2,
h1 {
  font-family: "BrasleyMedium";
  -webkit-font-smoothing: antialiased;
  font-weight: 500;
}
strong {
  font-family: "BrasleyBold";
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
}
input,
textarea {
  -webkit-appearance: none;
}
input:focus,
textarea:focus {
  outline-color: #a5abbb !important;
  outline: solid #a5abbb;
}
input[type="radio"],
input[type="checkbox"] {
  -webkit-appearance: revert !important;
}
.see-more {
  z-index: 2;
  margin-top: 2rem;
}
.see-more a {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  z-index: 2;
  background: #8bc98d;
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-size: 16px;
  padding: 1rem 2rem 0.75rem 2rem;
}
.see-more a:visited {
  color: #fff;
}
@media (min-width: 1024px) {
  .see-more a {
    transition: 0.25s ease;
  }
  .see-more a:hover {
    background: #66ba68;
    color: #fff;
  }
}
html,
body {
  margin: 0 !important;
  padding: 0 !important;
}
.container {
  width: 100%;
  padding: 0 15px;
}
.small-container {
  position: relative;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
    margin: auto;
  }
  .popular-products-inner .mySwiper {
    max-width: calc(540px + 15px);
    margin-left: auto;
    margin-right: unset;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
  .popular-products-inner .mySwiper {
    max-width: calc(720px + 15px);
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 980px;
  }
  .popular-products-inner .mySwiper {
    max-width: calc(980px + 15px);
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  .popular-products-inner .mySwiper {
    max-width: calc(1140px + 15px);
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  .small-container {
    max-width: 1180px;
  }
  .popular-products-inner .mySwiper {
    max-width: calc(1300px + 15px);
  }
}
@media (min-width: 1600px) {
  .popular-products-inner .mySwiper {
    max-width: calc(1430px + 15px);
  }
}
@media (min-width: 1800px) {
  .popular-products-inner .mySwiper {
    max-width: calc(1570px + 15px);
  }
}
@media (min-width: 1920px) {
  .popular-products-inner .mySwiper {
    max-width: calc(1640px + 15px);
  }
}
.half-container {
  width: 100%;
  padding: 0 15px;
  margin: auto;
}
@media (min-width: 768px) {
  .ml-auto {
    margin-left: auto;
  }
  .mr-auto {
    margin-right: auto;
  }
}
@media (min-width: 1024px) {
  .half-container {
    max-width: calc(980px / 2);
  }
}
@media (min-width: 1200px) {
  .half-container {
    max-width: calc(1140px / 2);
  }
}
@media (min-width: 1400px) {
  .half-container {
    max-width: calc(1320px / 2);
  }
}
@media (min-width: 1600px) {
  .xl-container {
    max-width: 1510px;
  }
}
@media (min-width: 1700px) {
  .xl-container {
    max-width: 1600px;
  }
}
.overflow-hidden {
  overflow: hidden;
}
.notice {
  position: fixed;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem 2rem;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 3px 16px rgba(10, 46, 70, 0.16);
  z-index: 100;
  width: 90%;
  max-width: max-content;
}
.notice h3 {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  text-align: center;
}
.notice span {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  font-weight: 700;
}
.notice-cart h3 {
  padding-left: 40px;
}
.notice-cart h3:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 19px;
  width: 19px;
  background-image: url("../assets/svg/cart_green.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.woocommerce-notices-wrapper {
  position: fixed;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0px 3px 16px rgba(10, 46, 70, 0.16);
  z-index: 5;
  background: #fff;
  border-radius: 5px;
  display: none;
  width: 90%;
  max-width: max-content;
}
.woocommerce-notices-wrapper .woocommerce-error {
  border: unset;
  margin: 0;
  background: unset;
}
.woocommerce-notices-wrapper .woocommerce-message {
  margin: 0;
  border: unset;
  background: unset;
}
.site-header {
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  width: 100%;
  z-index: 999;
  transition: 0.35s ease;
}
.site-header .mini-cart-wrapper {
  display: none;
  top: 15px;
}
.site-header .header-inner {
  display: flex;
  padding: 1.25rem 0;
  transition: 0.35s ease;
}
.site-header .burger {
  display: block;
  position: absolute;
  top: 1.5rem;
  left: 15px;
  width: 27px;
  height: 22px;
  z-index: 9999;
}
.site-header .burger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background: #000000;
  border-radius: 2rem;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.35s ease;
}
.site-header .burger span:nth-child(1) {
  top: 1.5px;
}
.site-header .burger span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.site-header .burger span:nth-child(3) {
  bottom: 1.5px;
}
.site-header .mobile-menu-icons {
  display: flex;
  height: fit-content;
  align-items: flex-end;
  position: absolute;
  right: 16px;
  margin-top: 2px;
}
.site-header .mobile-menu-icons .menu-cart {
  position: relative;
  margin-right: 1.5rem;
}
.site-header .mobile-menu-icons .menu-cart svg {
  width: 21px;
}
.site-header .mobile-menu-icons .menu-cart .mini-cart-count {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2px;
  text-decoration: none;
  border-radius: 50%;
  background: #8bc98d;
  color: #fff;
  font-size: 14px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 1px;
}
.site-header .logo {
  margin: auto;
}
.site-header .logo img {
  display: block;
  width: 70px;
  height: 70px;
  transition: 0.25s ease;
}
.site-header .main-navigation {
  position: fixed;
  left: -100%;
  top: 0;
  height: 100%;
  background: #fff;
  transition: 0.35s ease;
}
.site-header .main-navigation .burger {
  position: absolute;
  left: 1rem;
}
.site-header .main-navigation .logo-mobile {
  margin-top: 1.5rem;
}
.site-header .main-navigation .logo-mobile img {
  display: block;
  width: 70px;
  height: 70px;
  margin: auto;
}
.site-header .main-navigation .menu {
  display: block;
  padding: 1rem 1rem 1rem 3rem;
}
.site-header .main-navigation .menu li a {
  color: #393939;
  font-size: 25px;
  line-height: 38px;
  margin: 1rem 0;
  transition: 0.25s ease;
}
.site-header .main-navigation .menu li a:hover {
  color: #8bc98d;
}
.site-header .main-navigation .menu .menu-item-has-children {
  position: relative;
}
.site-header .main-navigation .menu .menu-item-has-children:after {
  content: "";
  position: absolute;
  right: -5px;
  top: 40%;
  transform: rotate(-45deg) translateY(-50%);
  width: 10px;
  height: 10px;
  border-left: 2px solid #000000;
  border-bottom: 2px solid #000;
  transition: 0.25s ease;
  pointer-events: none;
}
.site-header .main-navigation .menu .menu-item-has-children:hover a {
  color: #8bc98d;
}
.site-header .main-navigation .menu .menu-item-has-children:hover:after {
  border-color: #8bc98d;
  right: 0;
  transform: rotate(135deg) translateY(-50%);
}
.site-header .main-navigation .menu .sub-menu {
  display: block;
  background: #fff;
  box-shadow: none;
  border-radius: 4px;
  padding: 1rem 0;
}
.site-header .main-navigation .menu .sub-menu a {
  color: #393939 !important;
}
.site-header .main-navigation .menu .sub-menu a:hover {
  color: #8bc98d !important;
}
.site-header .main-navigation .lang-switcher-mobile {
  padding-left: 2rem;
  margin-top: -1rem;
  margin-bottom: 5.25rem;
}
.site-header .main-navigation .lang-switcher-mobile .widgettitle {
  display: none;
}
.site-header .main-navigation .lang-switcher-mobile ul {
  display: block;
  position: relative;
  padding: 5px;
}
.site-header .main-navigation .lang-switcher-mobile ul:hover li {
  display: block;
  bottom: -50%;
  border-radius: 4px;
}
.site-header .main-navigation .lang-switcher-mobile ul li {
  position: absolute;
  display: none;
  background-color: #fff;
}
.site-header .main-navigation .lang-switcher-mobile ul li a {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  color: #393939;
  padding: 6px 10px 2px 10px;
}
.site-header .main-navigation .lang-switcher-mobile ul .wpml-ls-current-language {
  display: block;
  position: relative;
  background: transparent;
  bottom: 0;
  padding: 0;
  padding-right: 15px;
}
.site-header .main-navigation .lang-switcher-mobile ul .wpml-ls-current-language a {
  pointer-events: none;
}
.site-header .main-navigation .lang-switcher-mobile ul .wpml-ls-current-language:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  width: 15px;
  height: 7px;
  background-image: url("../assets/svg/dropdown_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.site-header .main-navigation .mobile-search {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.site-header .main-navigation .mobile-search .yith-ajaxsearchform-container {
  width: 100%;
  padding: 0 3rem;
}
.site-header .main-navigation .mobile-search #yith-ajaxsearchform {
  position: relative;
}
.site-header .main-navigation .mobile-search #yith-ajaxsearchform .yith-s {
  border: unset;
  border-bottom: 1px solid #000000;
  width: 100%;
  padding-right: 2rem;
  outline-color: #a5abbb;
  border-radius: 0;
  -webkit-border-radius: 0px;
}
.site-header .main-navigation .mobile-search #yith-ajaxsearchform input[type="search"] {
  -webkit-appearance: none;
  outline-color: #a5abbb;
  border-radius: 0;
}
.site-header .main-navigation .mobile-search #yith-ajaxsearchform input[type="search"]:focus {
  outline-color: #a5abbb;
}
.site-header .main-navigation .mobile-search #yith-ajaxsearchform #yith-searchsubmit {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: unset;
  background-image: url("../assets/svg/search.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.site-header .open {
  left: 0;
  z-index: 999;
  overflow-y: auto;
}
.site-header .open ul li {
  width: max-content;
  padding-right: 1rem;
}
.site-header .open-burger {
  position: fixed;
}
.site-header .open-burger span {
  width: 50%;
}
.site-header .menu-icons {
  display: none;
}
.site-header .menu-icons .menu-cart {
  position: relative;
}
.site-header .menu-icons .menu-cart .mini-cart-count {
  position: absolute;
  padding-top: 2px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2px;
  text-decoration: none;
  border-radius: 50%;
  background: #8bc98d;
  color: #fff;
  font-size: 14px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-header .menu-icons .lang-switcher .widgettitle {
  display: none;
}
.site-header .menu-icons .lang-switcher ul {
  position: relative;
  padding: 5px;
}
.site-header .menu-icons .lang-switcher ul:hover li {
  display: block;
  bottom: -50%;
  border-radius: 4px;
}
.site-header .menu-icons .lang-switcher ul li {
  position: absolute;
  display: none;
  background-color: #fff;
}
.site-header .menu-icons .lang-switcher ul li a {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  color: #393939;
  padding: 6px 10px 2px 10px;
}
.site-header .menu-icons .lang-switcher ul .wpml-ls-current-language {
  display: block;
  position: relative;
  background: transparent;
  bottom: 0;
  padding: 0;
  padding-right: 15px;
}
.site-header .menu-icons .lang-switcher ul .wpml-ls-current-language:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  width: 15px;
  height: 7px;
  background-image: url("../assets/svg/dropdown_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.white-header {
  background: #fff;
}
.white-header .header-inner {
  padding: 0.5rem 0;
}
.white-header .header-inner .logo img {
  width: 50px;
  height: 50px;
}
.header-hidden {
  top: -170px;
  background: #fff;
}
.header-hidden .logo {
  padding-top: 1rem;
}
.banner-wrapper {
  margin-top: 5rem;
  position: relative;
}
.banner-wrapper .banner-info {
  position: relative;
  min-height: 910px;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.banner-wrapper .banner-info h1 {
  font-size: 31px;
  line-height: 32px;
  color: #0b0b0b;
  z-index: 2;
  margin-top: auto;
}
.banner-wrapper .banner-info p {
  z-index: 2;
  color: #1e2020;
  line-height: 19px;
}
.banner-wrapper .banner-info .attributes {
  z-index: 2;
  margin-top: 105px;
  display: flex;
  justify-content: space-between;
  max-width: 800px;
}
.banner-wrapper .banner-info .attributes .attribute {
  max-width: 32%;
  width: 100%;
}
.banner-wrapper .banner-info .attributes .attribute img {
  display: block;
  margin: auto;
  height: 25px;
}
.banner-wrapper .banner-info .attributes .attribute h4 {
  font-family: "BrasleySemiBold";
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  text-align: center;
  margin-top: 0.75rem;
}
.banner-wrapper .banner-image {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 675px;
}
.banner-wrapper .banner-image img {
  min-height: 400px;
  max-height: 400px;
  object-fit: cover;
  object-position: 50%;
  display: block;
}
.banner-wrapper .banner-image .image-gradient {
  display: none;
  position: absolute;
  bottom: 275px;
  left: 0;
  width: 100%;
  height: 400px;
}
.banner-wrapper .banner-image .image-gradient:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url("../assets/svg/bottom_grad.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.banner-wrapper .banner-image:after {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  height: 400px;
  width: 100%;
  pointer-events: none;
  background-image: url("../assets/svg/left_blur.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.banner-wrapper .banner-image:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 280px;
  width: 100%;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #f8f8f8;
}
@media (max-width: 576px) {
  .banner-wrapper .banner-image img {
    object-position: 50%;
  }
}
@media (min-width: 1024px) {
  .site-header {
    background: transparent;
    z-index: 10;
    padding: 1rem 0;
  }
  .site-header .header-inner {
    display: flex;
    align-items: center;
    padding: 1rem;
  }
  .site-header .header-inner .logo {
    padding-top: 1rem;
    margin: 0;
    margin-right: auto;
    width: 110px;
    height: 110px;
    transition: 0.25s ease;
  }
  .site-header .header-inner .logo img {
    width: 110px;
    height: 110px;
  }
  .site-header .header-inner .burger {
    display: none;
  }
  .site-header .header-inner .main-navigation {
    position: relative;
    left: unset;
    top: unset;
    background: unset;
    width: max-content;
    margin: auto;
  }
  .site-header .header-inner .main-navigation .menu-inner-wrapper .logo-mobile {
    display: none;
  }
  .site-header .header-inner .main-navigation .menu-inner-wrapper .mobile-search {
    display: none;
  }
  .site-header .header-inner .main-navigation .menu-inner-wrapper .menu {
    display: flex;
    width: fit-content;
    margin: auto;
    padding: 1rem 0;
    align-items: center;
    height: 100%;
  }
  .site-header .header-inner .main-navigation .menu-inner-wrapper .menu li a {
    font-size: 16px;
    padding: 0 0.75rem;
    margin: 0;
  }
  .site-header .header-inner .main-navigation .menu-inner-wrapper .menu .menu-item-has-children a {
    padding-right: 1.25rem;
  }
  .site-header .header-inner .main-navigation .menu-inner-wrapper .menu .menu-item-has-children:hover .sub-menu {
    left: -10px;
  }
  .site-header .mobile-menu-icons {
    display: none;
  }
  .site-header .lang-switcher-mobile {
    display: none;
  }
  .site-header .menu-icons {
    display: flex;
    align-items: flex-end;
    width: 340px;
    justify-content: space-between;
  }
  .site-header .menu-icons .menu-search {
    position: relative;
  }
  .site-header .menu-icons .menu-search .search-inner form {
    position: relative;
    width: 200px;
  }
  .site-header .menu-icons .menu-search .search-inner form #yith-searchsubmit {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-55%);
    padding: 0;
    border: unset;
    border-color: unset;
    background: unset;
    height: 22px;
    width: 22px;
    background-image: url("../assets/svg/search.svg");
  }
  .site-header .menu-icons .menu-search .search-inner form #yith-s {
    width: 100%;
    padding: 5px;
    border: unset;
    border-bottom: 1px solid #a5abbb;
    border-radius: 0;
    background: transparent;
    outline-color: #a5abbb;
  }
  .site-header .menu-icons .menu-search .search-inner .autocomplete-suggestions {
    width: 100% !important;
  }
  .site-header .menu-icons .menu-search:hover .search-inner {
    display: block;
  }
  .site-header .menu-icons .menu-cart {
    margin: 0 auto;
    position: relative;
  }
  .site-header .menu-icons .menu-cart svg path {
    transition: 0.25s ease;
  }
  .site-header .menu-icons .menu-cart .mini-cart-wrapper {
    display: none;
    position: absolute;
    width: 400px;
    background: #fff;
    padding: 1rem;
    left: -375px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  }
  .site-header .menu-icons .menu-cart .mini-cart-wrapper .mini-cart-item {
    display: flex;
    border-bottom: 1px solid #edece9;
  }
  .site-header .menu-icons .menu-cart .mini-cart-wrapper .mini-cart-item .item-data {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .site-header .menu-icons .menu-cart .mini-cart-wrapper .mini-cart-item .item-image {
    min-width: 100px;
    margin-right: 1rem;
  }
  .site-header .menu-icons .menu-cart .mini-cart-wrapper .mini-cart-item .item-image img {
    width: 100px;
  }
  .site-header .menu-icons .menu-cart .mini-cart-wrapper .mini-cart-item .item-title h4 {
    margin: 0;
  }
  .site-header .menu-icons .menu-cart .mini-cart-wrapper .mini-cart-item .item-remove {
    margin-left: auto;
    display: flex;
    align-items: center;
    user-select: none;
    position: relative;
  }
  .site-header .menu-icons .menu-cart .mini-cart-wrapper .mini-cart-item .item-remove a {
    width: 24px;
  }
  .site-header .menu-icons .menu-cart .mini-cart-wrapper .mini-cart-item .loading a {
    animation: spin 0.75s linear infinite;
    width: 22px;
    height: 22px;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #8bc98d;
    border-radius: 50%;
    outline: none;
    user-select: none;
    pointer-events: none;
  }
  .site-header .menu-icons .menu-cart .mini-cart-wrapper .mini-cart-item .loading a img {
    display: none;
  }
  .site-header .menu-icons .menu-cart .mini-cart-wrapper .mini-cart-item .item-quantity-price {
    display: flex;
  }
  .site-header .menu-icons .menu-cart .mini-cart-wrapper .mini-cart-item .item-quantity-price p {
    margin: 0;
  }
  .site-header .menu-icons .menu-cart .mini-cart-wrapper .mini-cart-item .item-quantity-price p:nth-child(1) {
    color: #828282;
  }
  .site-header .menu-icons .menu-cart .mini-cart-wrapper .mini-cart-item .item-quantity-price p:nth-child(2) {
    margin-left: 0.5rem;
    font-family: "BrasleyMedium";
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
  }
  .site-header .menu-icons .menu-cart .mini-cart-wrapper .mini-cart-bottom .mini-cart-totals {
    display: flex;
    justify-content: space-between;
  }
  .site-header .menu-icons .menu-cart .mini-cart-wrapper .mini-cart-bottom .mini-cart-totals h3 {
    font-family: "BrasleyMedium";
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
  }
  .site-header .menu-icons .menu-cart .mini-cart-wrapper .mini-cart-bottom .to-cart a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 220px;
    height: 50px;
    color: #fff;
    border-radius: 7px;
    background: #8bc98d;
    text-decoration: none;
    margin: auto;
  }
  .site-header .menu-icons .menu-cart:hover .mini-cart-wrapper {
    display: block;
  }
  .site-header .menu-icons .menu-cart:hover svg path {
    stroke: #8bc98d;
  }
  .site-header .menu-icons .added-to-cart {
    animation-name: shake;
    animation-duration: 0.5s;
  }
  .site-header .menu-icons .added-to-cart svg path {
    stroke: #8bc98d;
  }
  .site-header .menu-icons .static:hover .mini-cart-wrapper {
    display: none;
  }
  .site-header .menu-icons .menu-user {
    margin: 0 auto;
    position: relative;
  }
  .site-header .menu-icons .menu-user svg {
    height: 25px;
    width: 17px;
  }
  .site-header .menu-icons .menu-user svg path,
  .site-header .menu-icons .menu-user svg circle {
    transition: 0.25s ease;
  }
  .site-header .menu-icons .menu-user .user-navigation {
    display: none;
    position: absolute;
    left: -225px;
    width: 245px;
    bottom: -145px;
    background: #fff;
    padding: 1rem 1.5rem;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  }
  .site-header .menu-icons .menu-user .user-navigation a {
    color: #393939;
    padding-left: 30px;
    display: block;
    width: max-content;
    text-decoration: none;
    margin: 0.5rem 0;
    position: relative;
  }
  .site-header .menu-icons .menu-user .user-navigation a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .site-header .menu-icons .menu-user .user-navigation .orders:before {
    width: 19px;
    height: 19px;
    background-image: url("../assets/svg/orders.svg");
    background-repeat: no-repeat;
  }
  .site-header .menu-icons .menu-user .user-navigation .info:before {
    width: 19px;
    height: 19px;
    background-image: url("../assets/svg/user.svg");
    background-repeat: no-repeat;
  }
  .site-header .menu-icons .menu-user .user-navigation .logout {
    margin-top: 1.5rem;
    color: #525252;
  }
  .site-header .menu-icons .menu-user .user-navigation .logout:before {
    width: 19px;
    height: 19px;
    background-image: url("../assets/svg/exit.svg");
    background-repeat: no-repeat;
  }
  .site-header .menu-icons .menu-user:hover path,
  .site-header .menu-icons .menu-user:hover circle {
    stroke: #8bc98d;
  }
  .site-header .menu-icons .menu-user:hover .user-navigation {
    display: block;
  }
  .site-header .menu-icons .not-logged {
    cursor: pointer;
  }
  .site-header .menu-icons .not-logged:hover path,
  .site-header .menu-icons .not-logged:hover circle {
    stroke: #393939;
  }
  .banner-wrapper {
    display: flex;
    background: #f8f8f8;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 55px;
    height: 100%;
    max-height: 930px;
    position: relative;
  }
  .banner-wrapper .half-container {
    margin-top: auto;
    margin-bottom: auto;
  }
  .banner-wrapper .inner-wrapper {
    margin-right: 0;
    margin-top: 8rem;
  }
  .banner-wrapper .banner-info {
    min-height: 530px;
  }
  .banner-wrapper .banner-info h1 {
    font-size: 48px;
    line-height: 56px;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
  }
  .banner-wrapper .banner-info p {
    font-size: 16px;
    line-height: 25px;
    max-width: 630px;
  }
  .banner-wrapper .banner-info .see-more {
    height: 80px;
  }
  .banner-wrapper .banner-info .attributes {
    margin-top: auto;
  }
  .banner-wrapper .banner-image {
    width: 50%;
    position: relative;
    left: unset;
    top: unset;
  }
  .banner-wrapper .banner-image .image-gradient {
    display: none;
  }
  .banner-wrapper .banner-image:before {
    position: absolute;
    bottom: unset;
    height: 100%;
    background-size: 200%;
    top: -1px;
    background-color: unset;
    background-image: url("../assets/svg/top_blur.svg");
  }
  .banner-wrapper .banner-image:after {
    height: 100%;
  }
  .banner-wrapper .banner-image img {
    display: block;
    min-height: 800px;
    object-position: 50%;
    max-height: 100%;
  }
  .white-header {
    background: #fff;
    padding: 0.5rem 0;
  }
  .white-header .header-inner {
    padding: 0 0.5rem;
  }
  .white-header .header-inner .logo {
    padding-top: 0;
  }
  .white-header .header-inner .logo img {
    width: 110px;
    height: 110px;
  }
}
@media (min-width: 1200px) {
  .front-page-wrapper .banner-wrapper .inner-wrapper {
    margin-top: 11rem;
  }
}
.front-page-wrapper .cat-swiper {
  padding: 3rem 0;
}
.front-page-wrapper .cat-swiper:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 15px;
  transform: translateX(-50%);
  height: 60px;
  width: 60px;
  background-image: url(../assets/svg/swipe.svg);
  z-index: 1;
  pointer-events: none;
}
.front-page-wrapper .product-categories .category {
  border-radius: 16px;
  height: auto;
}
.front-page-wrapper .product-categories .category:after {
  content: "";
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  height: 50%;
  width: 100%;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  z-index: 0;
}
.front-page-wrapper .product-categories .category a {
  text-decoration: none;
  color: #ffffff;
  border-radius: 16px;
  z-index: 2;
}
.front-page-wrapper .product-categories .category a .category-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  z-index: 2;
}
.front-page-wrapper .product-categories .category a .category-title h3 {
  margin: 0;
  font-size: 16px;
  z-index: 2;
}
.front-page-wrapper .product-categories .category a .category-image {
  border-radius: 16px;
  height: 100%;
  display: flex;
}
.front-page-wrapper .product-categories .category a .category-image img {
  display: block;
  border-radius: 16px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .front-page-wrapper .product-categories .category {
    flex: 0 0 32%;
  }
}
@media (min-width: 1024px) {
  .front-page-wrapper .cat-swiper {
    margin: 100px 0;
  }
  .front-page-wrapper .product-categories .category {
    flex: 0 0 16%;
    transition: 0.3s ease;
  }
  .front-page-wrapper .product-categories .category:nth-child(1) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
  }
  .front-page-wrapper .product-categories .category:nth-child(6) {
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .front-page-wrapper .product-categories .category:hover {
    transform: translateY(-30px);
  }
}
@media (min-width: 1200px) {
  .site-header .header-inner .menu-icons {
    width: 370px;
  }
  .site-header .header-inner .menu-icons .menu-search .search-inner form {
    width: 225px;
  }
  .site-header .header-inner .main-navigation .menu-inner-wrapper .menu li {
    margin: 0 0.25rem;
  }
  .site-header .header-inner .main-navigation .menu-inner-wrapper .menu li a {
    font-size: 16px;
    padding: 0 1rem;
    margin: 0;
  }
  .front-page-wrapper .product-categories .category {
    flex: 0 0 15%;
  }
}
@media (min-width: 1400px) {
  .site-header .header-inner .main-navigation .menu-inner-wrapper .menu li {
    margin: 0 0.5rem;
  }
  .site-header .header-inner .main-navigation .menu-inner-wrapper .menu li a {
    font-size: 16px;
    padding: 0 1rem;
    margin: 0;
  }
}
.front-page-wrapper .front-products {
  background: #f8f8f8;
}
.front-page-wrapper .front-products .new-products-inner {
  padding: 45px 15px;
}
.front-page-wrapper .front-products .icon {
  display: none;
}
.front-page-wrapper .front-products .all-products {
  display: none;
}
.front-page-wrapper .front-products .new-product-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.front-page-wrapper .front-products .new-product-row .product-card {
  flex: 0 0 48%;
}
@supports not (gap: 10px) {
  .front-page-wrapper .front-products .new-product-row {
    justify-content: space-between;
  }
}
.front-page-wrapper .front-products .new-products-title {
  text-align: center;
}
.front-page-wrapper .front-products .new-products-title h2 {
  font-size: 25px;
  font-weight: 700;
}
.front-page-wrapper .popular-products-inner .mySwiper {
  padding: 3rem 0;
  position: relative;
}
.front-page-wrapper .popular-products-inner .mySwiper:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 15px;
  transform: translateX(-50%);
  height: 60px;
  width: 60px;
  background-image: url("../assets/svg/swipe.svg");
  z-index: 1;
  pointer-events: none;
}
@media (min-width: 516px) {
  .front-page-wrapper .front-products .new-product-row {
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .front-page-wrapper .front-products {
    margin: 5rem 0;
  }
  .front-page-wrapper .front-products .new-products-inner {
    position: relative;
    padding: 100px 15px;
  }
  .front-page-wrapper .front-products .new-products-inner .all-products {
    display: block;
  }
  .front-page-wrapper .front-products .new-products-inner .all-products a {
    color: #010101;
    text-decoration: none;
    padding-right: 40px;
    position: relative;
    margin-bottom: 3rem;
    display: block;
    width: max-content;
    margin-left: auto;
  }
  .front-page-wrapper .front-products .new-products-inner .all-products a:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 6px;
    width: 30px;
    height: 14px;
    background-image: url("../assets/svg/see-more.svg");
    background-repeat: no-repeat;
    transition: 0.25s ease;
  }
  .front-page-wrapper .front-products .new-products-inner .all-products a:hover:after {
    right: -10px;
  }
  .front-page-wrapper .front-products .new-products-inner .icon {
    position: absolute;
    display: block;
    right: 0;
    top: -65px;
  }
  .front-page-wrapper .front-products .new-products-inner .icon .text-icon {
    animation: spinner 8s infinite linear;
  }
  .front-page-wrapper .front-products .new-products-inner .icon .leaf {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .front-page-wrapper .front-products .new-product-row .product-card {
    flex: 0 0 23%;
  }
  .front-page-wrapper .front-products .products-title {
    text-align: left;
  }
  .front-page-wrapper .front-products .products-title h2 {
    font-size: 39px;
    line-height: 39px;
    margin-bottom: 0;
  }
}
.foodmix-inner {
  padding: 4rem 0;
}
.foodmix-inner .foodmix-desktop-image {
  display: none;
}
.foodmix-inner .foodmix-data .foodmix-mobile-image img {
  max-height: 350px;
  width: 100%;
  object-fit: cover;
}
.foodmix-inner .foodmix-data .foodmix-title h2 {
  font-size: 25px;
  line-height: 30px;
  color: #393939;
}
.foodmix-inner .foodmix-data .see-more {
  margin-top: 1rem;
}
.foodmix-inner .foodmix-data .foodmix-info p {
  line-height: 25px;
  color: #393939;
}
.foodmix-inner .foodmix-data .foodmix-info p br {
  display: none;
}
@media (min-width: 1024px) {
  .foodmix-wrapper .foodmix-inner {
    display: flex;
    justify-content: space-between;
  }
  .foodmix-wrapper .foodmix-inner .foodmix-desktop-image {
    display: block;
    width: 50%;
  }
  .foodmix-wrapper .foodmix-inner .foodmix-desktop-image img {
    max-height: 680px;
  }
  .foodmix-wrapper .foodmix-inner .foodmix-data {
    max-width: 47%;
    margin-bottom: 5rem;
  }
  .foodmix-wrapper .foodmix-inner .foodmix-data .foodmix-title h2 {
    font-size: 39px;
    line-height: 47px;
  }
  .foodmix-wrapper .foodmix-inner .foodmix-data .foodmix-info p {
    font-size: 18px;
    line-height: 29px;
  }
  .foodmix-wrapper .foodmix-inner .foodmix-data .foodmix-info p br {
    display: block;
  }
  .foodmix-wrapper .foodmix-inner .foodmix-data .see-more {
    margin-top: 4rem;
  }
  .foodmix-wrapper .foodmix-inner .foodmix-data .foodmix-mobile-image {
    display: none;
  }
}
@media (min-width: 1200px) {
  .foodmix-wrapper .foodmix-inner .foodmix-data {
    margin-bottom: 0;
  }
  .foodmix-wrapper .foodmix-inner .foodmix-data .foodmix-info p {
    font-size: 16px;
    line-height: 25px;
  }
}
.recipes-inner {
  padding: 4rem 0;
}
.recipes-inner .recipes-image img {
  max-height: 350px;
  width: 100%;
  object-fit: cover;
}
.recipes-inner .recipes-title h2 {
  font-size: 25px;
  line-height: 30px;
  color: #393939;
}
.recipes-inner .recipes-info p {
  line-height: 25px;
  color: #393939;
}
.recipes-inner .recipes-info p br {
  display: none;
}
.recipes-inner .see-more {
  margin-top: 2rem;
}
@media (min-width: 1024px) {
  .recipes-wrapper {
    position: relative;
    height: 620px;
    margin-top: -7rem;
  }
  .recipes-wrapper .container {
    height: 100%;
    display: flex;
  }
  .recipes-wrapper .recipes-inner {
    width: max-content;
    margin-left: auto;
    margin-bottom: auto;
  }
  .recipes-wrapper .recipes-inner .recipes-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .recipes-wrapper .recipes-inner .recipes-image img {
    width: 100%;
    max-height: unset;
    pointer-events: none;
  }
  .recipes-wrapper .recipes-inner .recipes-title {
    z-index: 2;
  }
  .recipes-wrapper .recipes-inner .recipes-title h2 {
    font-size: 39px;
  }
  .recipes-wrapper .recipes-inner .recipes-info {
    margin-left: auto;
    z-index: 2;
  }
  .recipes-wrapper .recipes-inner .recipes-info p {
    font-size: 18px;
    line-height: 22px;
  }
  .recipes-wrapper .recipes-inner .recipes-info p br {
    display: block;
  }
  .recipes-wrapper .recipes-inner .see-more {
    margin-top: 4rem;
  }
}
@media (min-width: 1200px) {
  .recipes-wrapper .recipes-inner .recipes-image {
    width: 100%;
  }
  .recipes-wrapper .recipes-inner .recipes-image img {
    max-height: 880px;
  }
  .recipes-wrapper .recipes-inner .recipes-info p {
    font-size: 16px;
    line-height: 25px;
  }
}
@media (min-width: 1400px) {
  .recipes-wrapper {
    height: 800px;
  }
  .recipes-wrapper .recipes-inner {
    margin-top: 100px;
  }
}
@media (min-width: 1600px) {
  .recipes-wrapper {
    height: 900px;
  }
}
@media (min-width: 1800px) {
  .recipes-wrapper {
    height: 990px;
  }
  .recipes-wrapper .recipes-inner {
    margin-top: 200px;
  }
}
.home-inner {
  padding: 4rem 0;
}
.home-inner .home-image img {
  max-height: 350px;
  width: 100%;
  object-fit: cover;
}
.home-inner .home-title h2 {
  font-size: 25px;
  line-height: 30px;
  color: #393939;
}
.home-inner .home-info p {
  line-height: 25px;
  color: #393939;
}
.home-inner .home-info p br {
  display: none;
}
.home-inner .see-more {
  margin-top: 2rem;
}
.our-story-inner .our-story-content p br {
  display: none;
}
@media (min-width: 1024px) {
  .home-wrapper {
    position: relative;
    height: 800px;
    margin-top: -7rem;
    /*     &:after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to right, #f4f8fb 30%, rgba(#f4f8fb, 0.03));
      z-index: -1;
    } */
  }
  .home-wrapper .container {
    height: 100%;
    display: flex;
  }
  .home-wrapper .home-inner {
    width: max-content;
    margin-right: auto;
    margin-bottom: auto;
    margin-top: auto;
  }
  .home-wrapper .home-inner .home-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
  }
  .home-wrapper .home-inner .home-image img {
    width: 100%;
    max-height: unset;
    pointer-events: none;
    height: 100%;
    object-position: center;
  }
  .home-wrapper .home-inner .home-title {
    z-index: 2;
  }
  .home-wrapper .home-inner .home-title h2 {
    font-size: 39px;
  }
  .home-wrapper .home-inner .home-info {
    margin-left: auto;
    z-index: 2;
  }
  .home-wrapper .home-inner .home-info p {
    font-size: 16px;
    line-height: 25px;
  }
  .home-wrapper .home-inner .home-info p br {
    display: block;
  }
  .home-wrapper .home-inner .see-more {
    margin-top: 4rem;
  }
}
@media (min-width: 1400px) {
  .our-story-wrapper .our-story-inner .our-story-content p br {
    display: block;
  }
}
.our-story-wrapper {
  position: relative;
  padding: 5rem 0 2rem 0;
}
.our-story-wrapper:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fbf5f5;
  z-index: -1;
}
.our-story-wrapper .our-story-inner .our-story-images {
  display: flex;
  position: relative;
}
.our-story-wrapper .our-story-inner .our-story-images h3 {
  font-family: "BrasleyBold";
  -webkit-font-smoothing: antialiased;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -42px;
  z-index: 3;
  margin: 0;
  font-size: 56px;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #000;
  width: max-content;
  font-weight: 700;
}
.our-story-wrapper .our-story-inner .our-story-images img {
  height: 100%;
  object-fit: cover;
  display: block;
}
.our-story-wrapper .our-story-inner .our-story-images .left-image {
  width: 44%;
  z-index: 2;
}
.our-story-wrapper .our-story-inner .our-story-images .right-image {
  width: 44%;
  margin: auto;
  z-index: 2;
}
.our-story-wrapper .our-story-inner .our-story-titles {
  z-index: 2;
}
.our-story-wrapper .our-story-inner .our-story-titles h2 {
  z-index: 2;
  margin-bottom: 0;
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  font-size: 31px;
  line-height: 37px;
  font-weight: 700;
  color: #393939;
}
.our-story-wrapper .our-story-inner .our-story-titles h4 {
  margin: 0;
  z-index: 2;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
}
.our-story-wrapper .our-story-inner .our-story-content p {
  line-height: 26px;
}
@media (max-width: 576px) {
  .our-story-images img {
    max-height: 260px;
  }
}
@media (min-width: 1024px) {
  .our-story-wrapper .our-story-inner {
    display: flex;
    align-items: center;
  }
  .our-story-wrapper .our-story-inner img {
    max-height: 610px;
  }
  .our-story-wrapper .our-story-inner .our-story-data {
    margin-bottom: auto;
    margin-top: 0;
  }
  .our-story-wrapper .our-story-inner .our-story-titles h2 {
    font-size: 48px;
    line-height: 58px;
  }
  .our-story-wrapper .our-story-inner .our-story-titles h4 {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 3rem;
  }
}
@media (min-width: 1200px) {
  .our-story-wrapper {
    margin-top: 100px;
  }
}
@media (min-width: 1600px) {
  .our-story-wrapper {
    margin-top: 100px;
  }
}
.help-wrapper {
  margin: 4rem auto;
}
.help-wrapper .help-inner {
  display: flex;
  justify-content: space-between;
}
.help-wrapper .help-inner .help-image {
  width: 50%;
  margin-left: -50px;
}
.help-wrapper .help-inner .help-data {
  width: 65%;
}
.front-page-wrapper .blog-posts-wrapper {
  margin: 4rem 0;
}
.front-page-wrapper .blog-posts-wrapper h2 {
  text-transform: uppercase;
  color: #393939;
  margin-top: 6rem;
  font-size: 25px;
  line-height: 30px;
}
.front-page-wrapper .blog-posts-wrapper a {
  text-decoration: none;
  color: #393939;
}
.front-page-wrapper .blog-posts-wrapper .blog-post-title p {
  font-size: 16px;
  line-height: 24px;
  margin-top: 0.25rem;
}
.front-page-wrapper .blog-posts-wrapper .blog-post-image img {
  height: 400px;
  object-fit: cover;
  border-radius: 3px;
}
.front-page-wrapper .blog-posts-wrapper .blog-post-read-more a {
  font-family: "BrasleySemiBold";
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  position: relative;
  color: #8bc98d;
  display: block;
  text-align: right;
  padding-right: 60px;
}
.front-page-wrapper .blog-posts-wrapper .blog-post-read-more a:after {
  content: "";
  position: absolute;
  right: 0;
  top: 40%;
  transform: translateY(-50%);
  width: 45px;
  height: 13px;
  background-image: url("../assets/svg/see-more.svg");
  background-repeat: no-repeat;
  transition: 0.25s ease;
}
.front-page-wrapper .blog-posts-wrapper .blog-post-read-more a:hover:after {
  right: -10px;
}
.comments-area {
  display: none;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .help-wrapper .help-inner {
    align-items: center;
  }
  .help-wrapper .help-inner .help-image {
    margin-left: 0;
    width: 40%;
  }
  .help-wrapper .help-inner .help-data {
    width: 60%;
  }
  .help-wrapper .help-inner .help-data .help-title h2 {
    font-size: 39px;
    margin-top: 0;
  }
  .help-wrapper .help-inner .help-data .help-content p {
    font-size: 18px;
  }
  .front-page-wrapper .blog-posts-wrapper h2 {
    text-align: center;
    margin-top: 9rem;
    font-size: 39px;
    line-height: 47px;
    margin-bottom: 5rem;
  }
  .front-page-wrapper .blog-posts-wrapper .blog-posts-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
    gap: 30px;
  }
  .front-page-wrapper .blog-posts-wrapper .blog-posts-inner .blog-post-image img {
    height: 350px;
    width: 100%;
    object-fit: cover;
  }
}
@media (min-width: 1200px) {
  .help-wrapper .help-inner .help-data {
    width: 55%;
  }
  .help-wrapper .help-inner .help-data .help-content p {
    font-size: 16px;
    line-height: 25px;
  }
}
.site-footer {
  background: #f8f8f8;
  padding-top: 4rem;
  font-size: 16px;
}
.site-footer .footer-title h3 {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  margin-top: 0;
  color: #393939;
}
.site-footer a {
  text-decoration: none;
  color: #393939;
  display: block;
}
.site-footer .footer-contact {
  margin-bottom: 1rem;
}
.site-footer .footer-contact a {
  line-height: 25px;
  padding-left: 30px;
  position: relative;
  margin: 0.75rem 0;
}
.site-footer .footer-contact a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: contain;
}
.site-footer .footer-contact .mobile:after {
  background-image: url("../assets/svg/mobile.svg");
  width: 12px;
  left: 3px;
}
.site-footer .footer-contact .mail:after {
  background-image: url("../assets/svg/mail_footer.svg");
}
.site-footer .footer-contact .location:after {
  background-image: url("../assets/svg/location.svg");
  left: 2px;
  width: 15px;
}
.site-footer .footer-social-media {
  display: flex;
  margin-bottom: 2rem;
}
.site-footer .footer-social-media a {
  margin-right: 1.5rem;
}
.site-footer .footer-pages a {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  color: #393939;
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  margin-bottom: 1rem;
}
.site-footer .footer-pages a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 45%;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background-image: url("../assets/svg/link_arrow.svg");
}
.site-footer .footer-logo {
  display: flex;
  align-items: center;
}
.site-footer .footer-logo img {
  max-height: 110px;
  display: block;
  overflow-y: hidden;
}
.site-footer .footer-logo img:nth-child(1) {
  margin-right: 1rem;
}
.site-footer .footer-logo img:nth-child(2) {
  margin-bottom: 2rem;
}
.site-footer .footer-bank-logos {
  padding: 2rem 0 5rem 0;
  background: #fff;
}
.site-footer .footer-bank-logos .logos-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.site-footer .footer-bank-logos .logos-inner img {
  margin: 5px 15px;
}
@media (max-width: 1023px) {
  .site-footer .footer-inner {
    display: flex;
    flex-direction: column;
  }
  .site-footer .footer-inner .footer-info {
    order: 2;
  }
  .site-footer .footer-inner .footer-pages {
    order: 1;
  }
  .site-footer .footer-inner .footer-logo {
    order: 3;
  }
}
@media (max-width: 10023px) {
  .site-footer .footer-title {
    margin-top: 2rem;
  }
}
@media (min-width: 1024px) {
  .site-footer {
    padding-top: 5rem;
  }
  .site-footer .footer-inner {
    display: flex;
  }
  .site-footer .footer-inner .footer-social-media {
    margin-top: 3rem;
  }
  .site-footer .footer-inner .footer-title h3 {
    margin-bottom: 2.5rem;
  }
  .site-footer .footer-inner .footer-title h3 br {
    display: none;
  }
  .site-footer .footer-inner a {
    transition: 0.3s ease;
  }
  .site-footer .footer-inner a:hover {
    color: #8bc98d;
  }
  .site-footer .footer-inner .footer-pages {
    margin: 0;
    margin-left: 175px;
    margin-top: 105px;
  }
  .site-footer .footer-inner .footer-pages p {
    margin-top: 0;
    margin-bottom: 2.5rem;
  }
  .site-footer .footer-inner .footer-pages a {
    margin-right: 2rem;
    height: fit-content;
  }
  .site-footer .footer-inner .footer-pages a:nth-child(3) {
    margin-right: 0;
  }
  .site-footer .footer-inner .footer-logo {
    display: block;
    margin-left: 100px;
  }
  .site-footer .footer-inner .footer-logo img:nth-child(1) {
    margin-bottom: 1rem;
    margin-left: 1.25rem;
  }
  .site-footer .footer-bank-logos {
    padding: 2rem 0 7rem 0;
  }
}
@media (min-width: 1200px) {
  .site-footer .footer-inner .footer-pages {
    margin-left: 200px;
  }
  .site-footer .footer-inner .footer-logo {
    margin-left: 150px;
  }
}
@media (min-width: 1400px) {
  .site-footer .footer-inner .footer-pages {
    margin-left: 250px;
  }
  .site-footer .footer-inner .footer-logo {
    margin-left: 250px;
  }
}
.spacer-top-1 {
  margin-top: 1rem;
}
.spacer-top-2 {
  margin-top: 2rem;
}
.spacer-top-3 {
  margin-top: 3rem;
}
.spacer-top-4 {
  margin-top: 4rem;
}
.spacer-top-5 {
  margin-top: 5rem;
}
.spacer-top-6 {
  margin-top: 5rem;
}
.spacer-top-7 {
  margin-top: 7rem;
}
.spacer-top-8 {
  margin-top: 8rem;
}
.spacer-top-9 {
  margin-top: 9rem;
}
.spacer-top-10 {
  margin-top: 10rem;
}
@media (min-width: 1024px) {
  .spacer-top-1,
  .spacer-top-2,
  .spacer-top-3,
  .spacer-top-4,
  .spacer-top-5,
  .spacer-top-6,
  .spacer-top-7,
  .spacer-top-8,
  .spacer-top-9,
  .spacer-top-10 {
    margin-top: 0rem;
  }
}
/* AMBASSADORS */
.brand-ambassadors-page-wrapper .brand-ambassadors-title h2 {
  color: #6f5151;
  font-size: 31px;
  line-height: 69px;
  border-bottom: 2px solid #6f5151;
  max-width: 580px;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .brand-ambassadors-page-wrapper .brand-ambassadors-title h2 {
    font-size: 48px;
    line-height: 69px;
  }
}
/* SALES POINTS */
.sales-points-wrapper {
  margin-top: 2rem;
}
.sales-points-wrapper .sales-location {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sales-points-wrapper .sales-location h3 {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  border-bottom: 1px solid #393939;
  margin-bottom: 3rem;
}
.sales-points-wrapper .sales-point {
  margin-bottom: 2rem;
  display: flex;
  flex: 0 0 33%;
  align-items: center;
}
.sales-points-wrapper .sales-point .logo {
  margin-bottom: 0.5rem;
  display: flex;
  width: 100px;
  justify-content: center;
  align-items: center;
}
.sales-points-wrapper .sales-point .logo img {
  max-width: 90px;
  max-height: 70px;
  height: 100%;
}
.sales-points-wrapper .sales-point p {
  margin: 0;
}
@media (min-width: 1024px) {
  .sales-points-wrapper .sales-points-title {
    max-width: 650px;
  }
  .sales-points-wrapper .sales-points-title h3 {
    font-size: 31px;
    line-height: 42px;
  }
  .sales-points-wrapper .sales-points {
    margin-top: 5rem;
  }
  .sales-points-wrapper .sales-location {
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem;
  }
  .sales-points-wrapper .sales-location h3 {
    width: 100%;
    font-size: 31px;
  }
  .sales-points-wrapper .sales-location .sales-point {
    flex: 0 0 33%;
    margin-bottom: 1rem;
  }
}
.fans-wrapper {
  max-width: 1060px;
  margin: 4rem auto;
  position: relative;
  padding: 0;
  padding-bottom: 4rem;
}
.fans-wrapper h2 {
  text-align: center;
  text-transform: uppercase;
  color: #393939;
  font-size: 25px;
}
.fans-wrapper .fans-swiper {
  overflow: hidden;
}
.fans-wrapper .fans-swiper .swiper-slide {
  padding: 2rem 0;
  background-image: url("../assets/images/fan-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
}
.fans-wrapper .fans-swiper .swiper-slide .fan-image {
  margin-bottom: -50px;
  z-index: 0;
  position: relative;
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
}
.fans-wrapper .fans-swiper .swiper-slide .fan-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: contain;
  display: block;
  margin: auto;
}
.fans-wrapper .fans-swiper .swiper-slide .fan-logo img {
  object-fit: scale-down;
  border-radius: 0;
}
.fans-wrapper .fans-swiper .swiper-slide .fan-text {
  position: relative;
  z-index: 1;
  margin: 1rem;
  padding: 2rem 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 15px 26px rgba(6, 21, 48, 0.14);
}
.fans-wrapper .fans-swiper .swiper-slide .fan-text p {
  line-height: 26px;
  font-size: 14px;
}
.fans-wrapper .fans-swiper .swiper-slide .fan-position {
  padding-left: 2rem;
  padding-right: 1rem;
}
.fans-wrapper .fans-swiper .swiper-slide .fan-position h3 {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-transform: uppercase;
  color: #393939;
  font-weight: 600;
}
.instagram-wrapper h2 {
  text-align: center;
  text-transform: uppercase;
  color: #393939;
  font-size: 25px;
}
@media (min-width: 1024px) {
  .fans-wrapper {
    padding: 0 15px;
    padding-bottom: 4rem;
  }
  .fans-wrapper h2 {
    font-size: 39px;
    margin-bottom: 4rem;
  }
  .fans-wrapper .fans-swiper .swiper-slide .fan-image {
    position: absolute;
    bottom: 40px;
    margin-bottom: 0;
    left: 130px;
    height: 190px;
    width: 190px;
  }
  .fans-wrapper .fans-swiper .swiper-slide .fan-image img {
    width: 190px;
    height: 190px;
  }
  .fans-wrapper .fans-swiper .swiper-slide .fan-text {
    margin-right: 6rem;
    margin-left: 17rem;
  }
  .fans-wrapper .fans-swiper .swiper-slide .fan-text p {
    line-height: 21px;
    margin: 0;
  }
  .fans-wrapper .fans-swiper .swiper-slide .fan-position {
    margin-left: 20rem;
    margin-right: 6rem;
  }
  .fans-wrapper .fans-swiper .swiper-slide .fan-position h3 {
    font-size: 20px;
    line-height: 25px;
  }
  .instagram-wrapper {
    margin-top: 8rem;
  }
  .instagram-wrapper h2 {
    font-size: 39px;
    margin-bottom: 4rem;
  }
}
/* FAQ */
.faq-wrapper .faq-title h2 {
  color: #6f5151;
  font-size: 31px;
  margin-bottom: 1rem;
  line-height: 69px;
  border-bottom: 2px solid #6f5151;
  max-width: 580px;
}
.faq-wrapper .faq-questions .question {
  cursor: pointer;
  padding: 1.25rem 1rem;
  border: 1px solid #fbf5f5;
  border-radius: 9px;
  margin-bottom: 1.25rem;
  transition: 0.3s ease;
}
.faq-wrapper .faq-questions .question h4 {
  font-family: "BrasleyMedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  position: relative;
  font-size: 20px;
  margin: 0;
  padding-right: 1.25rem;
}
.faq-wrapper .faq-questions .question h4:after {
  content: "";
  position: absolute;
  height: 12px;
  width: 16px;
  right: 0;
  top: 7px;
  display: flex;
  align-items: center;
  background-image: url("../assets/svg/select_arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.3s ease;
}
.faq-wrapper .faq-questions .question .answer {
  display: none;
  padding-left: 2rem;
}
.faq-wrapper .faq-questions .toggled-question {
  background-color: #f8f8f8;
}
.faq-wrapper .faq-questions .toggled-question h4 {
  text-decoration: underline;
}
.faq-wrapper .faq-questions .toggled-question h4:after {
  transform: rotate(180deg);
  top: 5px;
}
.faq-wrapper .faq-questions .toggled-question .answer {
  display: block;
}
@media (min-width: 1024px) {
  .faq-wrapper .faq-title h2 {
    font-size: 48px;
    line-height: 69px;
    padding-bottom: 1rem;
  }
  .faq-wrapper .faq-questions .question {
    padding: 1.25rem 2rem;
  }
  .faq-wrapper .faq-questions .question h4 {
    padding-right: 2rem;
  }
  .faq-wrapper .faq-questions .question:hover {
    background-color: #f8f8f8;
  }
  .faq-wrapper .faq-questions .question .answer {
    padding-left: 4rem;
    padding-right: 1rem;
  }
}
.swiper-pagination .swiper-pagination-bullet {
  background-color: transparent;
  border: 1px solid #707070;
  width: 13px;
  height: 13px;
  opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #2a2a2a;
  border-color: #2a2a2a;
}
/* pagination */
.custom-pagination {
  display: flex;
  justify-content: center;
  margin: 4rem 0 2rem;
}
.custom-pagination .pagination {
  display: flex;
}
.custom-pagination .pagination a,
.custom-pagination .pagination span {
  font-size: 16px;
  margin: 0 0.25rem;
  text-decoration: none;
  color: #393939;
}
.custom-pagination .pagination span {
  color: #8bc98d;
}
.custom-pagination .pagination .next.page-numbers {
  margin-left: 1rem;
}
.custom-pagination .pagination .prev.page-numbers {
  margin-right: 1rem;
}
@media (min-width: 1024px) {
  .custom-pagination .pagination a {
    transition: 0.3s ease;
  }
  .custom-pagination .pagination a:hover {
    color: #8bc98d;
  }
}
.newsletter-wrapper {
  background-image: url("../assets/images/bg_newsletter.png");
  background-position: center;
  background-size: cover;
  padding-top: 1.5rem;
  padding-bottom: 3rem;
  text-align: center;
}
.newsletter-wrapper h2 {
  font-size: 25px;
  line-height: 30px;
  margin: 0;
  margin-bottom: 0.5rem;
  color: #393939;
}
.newsletter-wrapper p {
  margin-top: 0;
  line-height: 20px;
  max-width: 340px;
}
.newsletter-wrapper .mailchimp-form button {
  cursor: pointer;
  border: unset;
  background: #8bc98d;
  color: #fff;
  border-radius: 7px;
  padding: 1rem 2rem;
  margin-left: 0.5rem;
}
.newsletter-wrapper .mailchimp-form input {
  padding: 0.75rem;
  border-radius: 7px;
  border-color: #a5abbb;
}
.newsletter-wrapper .mailchimp-form .mc4wp-response {
  max-width: 500px;
}
.newsletter-wrapper .mailchimp-form .mc4wp-response p {
  margin: 0;
  margin-top: 1.25rem;
}
@media (min-width: 1024px) {
  .newsletter-wrapper {
    padding: 1rem 0;
    text-align: left;
  }
  .newsletter-wrapper .newsletter-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    min-height: 200px;
  }
  .newsletter-wrapper .newsletter-inner .newsletter-text {
    padding-left: 100px;
    position: relative;
  }
  .newsletter-wrapper .newsletter-inner .newsletter-text:before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    height: 54px;
    width: 67px;
    background-image: url("../assets/svg/mail.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
  .newsletter-wrapper .newsletter-inner .mailchimp-form button {
    transition: 0.25s ease;
  }
  .newsletter-wrapper .newsletter-inner .mailchimp-form button:hover {
    background: #66ba68;
  }
  .newsletter-wrapper .newsletter-inner .mailchimp-form input {
    width: 355px;
  }
  .newsletter-wrapper .newsletter-inner .mailchimp-form .mc4wp-response p {
    font-family: "BrasleySemiBold";
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    font-size: 28px;
    line-height: 36px;
  }
}
#review_form .comment-form-author label,
#review_form .comment-form-email label {
  display: inline-block;
  width: 70px;
}
.instagram-wrapper .sb_instagram_header {
  display: none;
}

/* start */
.woocommerce-cart .popular-products-inner {
	display: flex;
    flex-wrap: wrap;
    background: #f8f8f8;
	margin-top: 6rem;
    justify-content: center;
    padding-bottom: 4rem;
}

.cart-wrapper .others-title h3 {
    font-family: "BrasleyMedium";
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    margin-top: 2rem;
    text-transform: uppercase;
    font-size: 20px;
    text-align: center;
	margin-bottom: 3rem;
}

.cart-wrapper .mySwiper .product-card {
    padding: 1rem 0 5rem 0;
}
