body {
  font-family: "Hikasami", sans-serif;
}

img,
video,
canvas {
  overflow: clip !important;
}

.ff-2 {
  font-family: "Magnolia Script", sans-serif;
}

.dark-green-text {
  color: #114600;
}

.dark-red-text {
  color: #540000 !important;
}

.dark-red-bg {
  background: #540000;
}

.dark-green-bg {
  background: #114600;
}

.text-dkgrey {
  color: #5C5C5C;
}

.text-grey {
  color: grey;
}

.text-beige {
  color: #8E5C3B;
}

.brown-bg {
  background: #8E5C3B !important;
}

.text-brown {
  color: #8E5C3B;
}

.brown-red-text {
  color: #D45113 !important;
}

.brown-red-bg {
  background: #D45113 !important;
}

.copper-brown-text {
  color: #C59D7A !important;
}

.copper-brown-bg {
  background: #C59D7A !important;
}

.black-text {
  color: #38383A !important;
}

.black-bg {
  background: #38383A !important;
}

.black-accent-text {
  color: #07070A !important;
}
.black-accent-text span {
  color: #07070A !important;
}

.black-accent-bg {
  background: #07070A;
}

.grey-accent-text {
  color: #939598 !important;
}

/* NEW CLASSES */
.text-accent {
  color: #004C4C;
}

.bg-mahagony {
  background-color: #FCFAF8;
}

.text-mahagony {
  color: #FCFAF8;
}

.light-green-bg {
  background: #F4F9EC;
}

.light-green-text {
  color: #F4F9EC;
}

.lime-green-text {
  color: #90C544;
}

.blog-bg {
  background: linear-gradient(to bottom, #F4F9EC 0px, #F4F9EC 364px, #ffffff 364px, #ffffff 100%);
}

.primary-btn {
  border-radius: 48px;
  background: linear-gradient(270deg, #114600 0%, #90C544 100%) !important;
  border: 0;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: normal;
  padding: 9px 24px;
  min-height: 44px;
}
.primary-btn:hover, .primary-btn:active {
  color: #FFF !important;
  border: 0 !important;
}

.secondary-btn {
  display: block;
  width: 100%;
  color: #FFF;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 9px 24px;
  border-radius: 48px;
  border: none;
  background: linear-gradient(90deg, #765007 0%, #A9833A 100%), linear-gradient(270deg, #734E3B 0%, #EEBC9B 100%);
  transition: all 0.5s ease;
}
.secondary-btn:hover {
  color: white;
}

.accent-btn {
  border-radius: 48px;
  background: linear-gradient(90deg, #033 -0.64%, #337070 59.99%, #80A5A5 100.41%);
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 9px 24px;
  transition: all 0.5s ease;
  border: none !important;
}
.accent-btn:hover, .accent-btn:active {
  color: #FFF !important;
  background: linear-gradient(270deg, #80A5A5 -0.64%, #337070 59.99%, #033 100.41%);
  border: none !important;
}

.blog-card {
  border-radius: 20px;
  border: 1px solid #E0E0E0;
  background: #FFF;
  overflow: hidden;
}

.blog-card__media {
  display: block;
  height: 249px;
  overflow: hidden;
  background: #F2F2F2;
}
.blog-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-card__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 14px 20px 20px;
}

.blog-card__date {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #828282;
  font-size: 12px;
  line-height: normal;
}

.blog-card__title {
  color: #114600;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
  margin: 16px 0 12px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog-card__excerpt {
  color: #5C5C5C;
  font-size: 13px;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.blog-card__cta {
  margin-top: auto;
  padding-top: 18px;
}

.article-content-body {
  margin-inline: auto;
  padding-top: 0;
  padding-bottom: 0;
  color: #5C5C5C;
  font-size: 16px;
}
.article-content-body p {
  margin-bottom: 24px;
  color: #5C5C5C;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.article-content-body h2 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: #114600;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}
.article-content-body h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: #114600;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}
.article-content-body ul,
.article-content-body ol {
  margin-bottom: 24px;
  padding-left: 20px;
}
.article-content-body li {
  color: #5C5C5C;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.article-content-body strong {
  font-weight: 600;
}
.article-content-body img,
.article-content-body .wp-block-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.single-post-article .single-post-hero {
  position: relative;
  margin-top: 32px;
}
.single-post-article .single-post-hero__image {
  display: block;
  width: 100%;
}
.single-post-article .single-post-hero__card {
  display: none;
}
.single-post-article .single-post-title,
.single-post-article .single-post-breadcrumbs,
.single-post-article .single-post-meta,
.single-post-article .article-content-body {
  max-width: 1000px;
  margin-inline: auto;
}
.single-post-article .single-post-title {
  text-wrap: balance;
}
.single-post-article .single-post-breadcrumbs #breadcrumbs,
.single-post-article .single-post-breadcrumbs p {
  margin: 0;
}
.single-post-article .single-post-breadcrumbs #breadcrumbs {
  color: #828282;
  font-size: 14px;
  line-height: 1.5;
}
.single-post-article .single-post-meta {
  width: 100%;
}
.single-post-article .single-post-meta__date,
.single-post-article .single-post-meta__share {
  min-width: 0;
}
.single-post-article .article-content-body p,
.single-post-article .article-content-body li {
  font-weight: 400;
}

@media (min-width: 768px) {
  .article-content-body {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
@media (min-width: 1200px) {
  .single-post-article .single-post-hero-shell {
    max-width: 1300px;
    margin-inline: auto;
  }
  .single-post-article .single-post-header-shell {
    max-width: 1060px;
    margin-inline: auto;
  }
  .single-post-article .single-post-body-shell {
    max-width: 1040px;
    margin-inline: auto;
  }
  .single-post-article .single-post-hero {
    margin-top: 18px;
  }
  .single-post-article .single-post-hero__card {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    width: min(532px, 100% - 64px);
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 26px 38px 30px;
    border-radius: 24px;
    background: rgba(17, 70, 0, 0.62);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(6px);
    transform: translate(-50%, -50%);
  }
  .single-post-article .single-post-hero__logo {
    display: block;
    width: 138px;
    height: auto;
  }
  .single-post-article .single-post-hero__card-title {
    margin: 0;
    color: #FFFFFF;
    font-family: "Magnolia Script", sans-serif;
    font-size: clamp(36px, 3.3vw, 48px);
    font-weight: 400;
    line-height: 1.08;
    text-align: center;
    text-wrap: balance;
  }
  .single-post-article .single-post-entry-header {
    padding-top: 30px;
    padding-bottom: 20px;
  }
  .single-post-article .single-post-title {
    max-width: 900px;
    font-size: clamp(34px, 2.9vw, 48px) !important;
    line-height: 1.12;
  }
  .single-post-article .single-post-breadcrumbs {
    margin-top: 10px;
  }
  .single-post-article .single-post-meta {
    margin-top: 18px;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }
  .single-post-article .article-content-body {
    padding-top: 10px;
    padding-bottom: 0;
  }
  .single-post-article .article-content-body p,
  .single-post-article .article-content-body li {
    font-size: 16px;
    line-height: 24px;
  }
  .single-post-article .single-post-more-news {
    margin-top: 72px;
  }
}
.pagination-container,
.sfc-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination-container .page-numbers,
.sfc-pagination .page-numbers {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.pagination-container .page-numbers li,
.sfc-pagination .page-numbers li {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.pagination-container .page-numbers .page-numbers,
.sfc-pagination .page-numbers .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  width: 52px;
  height: 52px;
  text-decoration: none;
  font-family: "Sofia Sans", sans-serif;
  color: #114600;
  background-color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  border-radius: 999px;
  border: 1px solid #BDBDBD;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}
.pagination-container .page-numbers .page-numbers:hover, .pagination-container .page-numbers .page-numbers:focus,
.sfc-pagination .page-numbers .page-numbers:hover,
.sfc-pagination .page-numbers .page-numbers:focus {
  border-color: #90C544;
  color: #114600;
  outline: none;
}
.pagination-container .page-numbers .page-numbers.current,
.sfc-pagination .page-numbers .page-numbers.current {
  color: #fff;
  background: #90C544;
  border-color: #90C544;
}
.pagination-container .page-numbers .page-numbers:not(.current):not(.dots),
.sfc-pagination .page-numbers .page-numbers:not(.current):not(.dots) {
  border: 1px solid #BDBDBD !important;
}
.pagination-container .page-numbers .page-numbers.dots,
.sfc-pagination .page-numbers .page-numbers.dots {
  min-width: auto;
  width: auto;
  height: 52px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #114600;
}

#breadcrumbs a {
  color: #5C5C5C;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.contact-box {
  background: rgba(255, 255, 255, 0);
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.07);
  padding: 24px 14px;
}
@media screen and (min-width: 400px) {
  .contact-box {
    padding: 32px 24px;
  }
}

.grey-hr {
  height: 1px;
  background: #E0E0E0;
}

.privacy-contact-form input:not([type=checkbox]), .privacy-contact-form textarea {
  background: #F8F8F8 !important;
  padding: 10px 15px !important;
  color: #5C5C5C !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  border: none !important;
  width: 100% !important;
}

#contact-message {
  min-height: 200px;
}

.tabs-wrapper {
  display: flex;
  gap: 40px;
}

.tabs-nav {
  width: 250px;
  list-style: none;
  padding: 0;
}

.tabs-nav .tab {
  cursor: pointer;
  padding: 12px 16px;
  border-left: 3px solid transparent;
}

.tabs-nav .tab.active {
  border-color: #000;
  font-weight: bold;
}

.tabs-content {
  flex: 1;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-title {
  margin-bottom: 32px;
}

.frontPageSwiper .swiper-button-next::after,
.frontPageSwiper .swiper-button-prev::after {
  display: none;
}

.frontPageSwiper .swiper-slide {
  height: auto;
}

.frontPageSwiper .swiper-slide > a,
.frontPageSwiper .swiper-slide > div {
  display: block;
}

.frontPageSwiper .swiper-button-next,
.frontPageSwiper .swiper-button-prev {
  margin: 0;
  top: 50%;
  transform: translateY(-50%);
}

.frontPageSwiper .swiper-button-next {
  right: 8px;
}

.frontPageSwiper .swiper-button-prev {
  left: 9px;
}

.frontPageSwiper--mobile {
  display: block;
}

.frontPageSwiper--desktop {
  display: none;
}

.frontPageSwiper--desktop .front-page-hero-slide-media,
.frontPageSwiper--mobile .front-page-hero-slide-media {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.frontPageSwiper--desktop .front-page-hero-slide-media {
  aspect-ratio: 1300/480;
  background: #F4F9EC;
}

.frontPageSwiper--desktop .front-page-hero-slide-media img,
.frontPageSwiper--mobile .front-page-hero-slide-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.frontPageSwiper--desktop .front-page-hero-slide-media img,
.frontPageSwiper--mobile .front-page-hero-slide-media img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.frontPageSwiper--mobile .front-page-hero-slide-media {
  background: #F4F9EC;
}

.frontPageSwiper .front-page-hero-slide-media.is-image-failed picture,
.frontPageSwiper .front-page-hero-slide-media.is-image-failed img {
  display: none;
}

.frontPageSwiper.is-single-slide .swiper-button-next,
.frontPageSwiper.is-single-slide .swiper-button-prev {
  display: none;
}

@media (max-width: 767px) {
  .frontPageSwiper .swiper-button-next {
    right: 0;
  }
  .frontPageSwiper .swiper-button-prev {
    left: 0;
  }
  .frontPageSwiper--desktop .front-page-hero-slide-media,
  .frontPageSwiper--mobile .front-page-hero-slide-media {
    border-radius: 16px;
  }
  .frontPageSwiper .swiper-button-next img,
  .frontPageSwiper .swiper-button-prev img {
    min-width: 32px;
    width: 32px;
  }
}
@media (max-width: 767px) {
  .frontPageSwiper--mobile {
    display: block !important;
  }
  .frontPageSwiper--desktop {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .frontPageSwiper--mobile {
    display: none !important;
  }
  .frontPageSwiper--desktop {
    display: block !important;
  }
}
.p-weight p {
  font-weight: 500;
}

.required {
  color: #D45113;
}

.add-file-div {
  border-radius: 7px;
  padding: 21px;
  border-style: dashed;
  border-width: 2px;
  color: #7D7D7D;
}

.text-gradient {
  background: var(--gradient-2, linear-gradient(270deg, #765007 0%, #A9833A 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.woocommerce-breadcrumb {
  color: #5C5C5C !important;
  font-size: 16px !important;
  font-weight: 700;
}
.woocommerce-breadcrumb a {
  font-weight: 500;
}

.back-to-top img {
  width: 55px;
}

.woocommerce-no-products-found .woocommerce-info {
  border-top: none;
  background-color: #ffffff;
  padding: 0;
  text-align: center;
}
.woocommerce-no-products-found .woocommerce-info:before, .woocommerce-no-products-found .woocommerce-info:after {
  display: none;
}

.woocommerce form .form-row {
  padding: 3px;
  margin: 0 0 6px;
}
.woocommerce form .form-row [placeholder]:focus::-webkit-input-placeholder {
  -webkit-transition: opacity 0.5s 0.5s ease;
  transition: opacity 0.5s 0.5s ease;
  opacity: 0;
}
.woocommerce form .form-row label {
  line-height: 2;
}
.woocommerce form .form-row label.hidden {
  visibility: hidden;
}
.woocommerce form .form-row label.inline {
  display: inline;
}
.woocommerce form .form-row .woocommerce-input-wrapper .description {
  background: #1e85be;
  color: #fff;
  border-radius: 3px;
  padding: 1em;
  margin: 0.5em 0 0;
  clear: both;
  display: none;
  position: relative;
}
.woocommerce form .form-row .woocommerce-input-wrapper .description a {
  color: #fff;
  text-decoration: underline;
  border: 0;
  box-shadow: none;
}
.woocommerce form .form-row .woocommerce-input-wrapper .description::before {
  left: 50%;
  top: 0%;
  margin-top: -4px;
  transform: translateX(-50%) rotate(180deg);
  content: "";
  position: absolute;
  border-width: 4px 6px 0 6px;
  border-style: solid;
  border-color: #1e85be transparent transparent transparent;
  z-index: 100;
  display: block;
}
.woocommerce form .form-row .input-checkbox {
  display: inline;
  margin: -2px 8px 0 0;
  text-align: center;
  vertical-align: middle;
  font-size: 16px !important;
}
.woocommerce form .form-row .input-text,
.woocommerce form .form-row select {
  font-family: inherit;
  font-weight: normal;
  letter-spacing: normal;
  padding: 0.5em;
  display: block;
  background-color: var(--wc-form-color-background, #fff);
  border: var(--wc-form-border-width) solid var(--wc-form-border-color);
  border-radius: var(--wc-form-border-radius);
  color: var(--wc-form-color-text, #000);
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  line-height: normal;
  height: auto;
}
.woocommerce form .form-row .input-text:focus,
.woocommerce form .form-row select:focus {
  border-color: currentColor;
}
.woocommerce form .form-row select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: 3em;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJmZWF0aGVyIGZlYXRoZXItY2hldnJvbi1kb3duIj48cG9seWxpbmUgcG9pbnRzPSI2IDkgMTIgMTUgMTggOSI+PC9wb2x5bGluZT48L3N2Zz4=);
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: calc(100% - 0.5em) 50%;
}
.woocommerce form .form-row textarea {
  height: 4em;
  line-height: 1.5;
  box-shadow: none;
}
.woocommerce form .form-row .country_to_state--single {
  background: transparent;
  border: 0;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: none;
  font: inherit;
  font-weight: 700;
  color: inherit;
  width: auto;
  pointer-events: none;
}
.woocommerce form .form-row .required {
  color: var(--wc-red);
  font-weight: 700;
  border: 0 !important;
  text-decoration: none;
  visibility: hidden;
}
.woocommerce form .form-row .optional {
  visibility: visible;
}
.woocommerce form .form-row.woocommerce-invalid label {
  color: var(--wc-red);
}
.woocommerce form .form-row.woocommerce-invalid input.input-text,
.woocommerce form .form-row.woocommerce-invalid select {
  border-color: var(--wc-red);
}
.woocommerce form .form-row.woocommerce-invalid .select2-container:not(.select2-container--open) .select2-selection {
  border-color: var(--wc-red);
}
.woocommerce form .form-row.woocommerce-validated input.input-text,
.woocommerce form .form-row.woocommerce-validated select {
  border-color: var(--wc-green);
}
.woocommerce form .form-row.woocommerce-validated .select2-container:not(.select2-container--open) .select2-selection {
  border-color: var(--wc-green);
}
.woocommerce form .form-row ::-webkit-input-placeholder {
  line-height: normal;
}
.woocommerce form .form-row :-moz-placeholder {
  line-height: normal;
}
.woocommerce form .form-row :-ms-input-placeholder {
  line-height: normal;
}

:where(.woocommerce) .select2-container {
  width: 100%;
}
:where(.woocommerce) .select2-container .select2-selection--single {
  height: auto;
}
:where(.woocommerce) .select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0.5em;
  line-height: normal;
  box-sizing: border-box;
  color: var(--wc-form-color-text, #444);
  font-weight: normal;
}
:where(.woocommerce) .select2-container .select2-selection--single .select2-selection__placeholder {
  color: #999;
}
:where(.woocommerce) .select2-container .select2-selection--single .select2-selection__arrow {
  position: absolute;
  top: 2px;
  right: 0.5em;
  height: 100%;
  width: 16px;
}
:where(.woocommerce) .select2-container .select2-selection--single .select2-selection__arrow b {
  border: none;
  display: block;
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJmZWF0aGVyIGZlYXRoZXItY2hldnJvbi1kb3duIj48cG9seWxpbmUgcG9pbnRzPSI2IDkgMTIgMTUgMTggOSI+PC9wb2x5bGluZT48L3N2Zz4=) no-repeat;
  background-size: 16px;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 0;
  margin: -8px 0 0;
}
:where(.woocommerce) .select2-container .select2-selection,
:where(.woocommerce) .select2-container .select2-dropdown {
  background-color: var(--wc-form-color-background, #fff);
  border: var(--wc-form-border-width, 1px) solid var(--wc-form-border-color, #aaa);
  border-radius: var(--wc-form-border-radius, 4px);
}
:where(.woocommerce) .select2-container.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
:where(.woocommerce) .select2-container.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
:where(.woocommerce) .select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}
:where(.woocommerce) .select2-results__option {
  margin: 0;
}

.description-style {
  color: #333;
  font-family: "Hikasami", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.page-slug-obshti-usloviya .entry-content a,
.page-slug-obshti-usloviya .sfc-policy-content a {
  color: #114600;
  font-weight: 600;
  text-decoration-line: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  text-decoration-color: currentColor;
}
.page-slug-obshti-usloviya .entry-content a:hover,
.page-slug-obshti-usloviya .entry-content a:focus-visible,
.page-slug-obshti-usloviya .sfc-policy-content a:hover,
.page-slug-obshti-usloviya .sfc-policy-content a:focus-visible {
  color: #540000;
  text-decoration-thickness: 2px;
}

.best-selling-next,
.featured-next,
.best-selling-prev,
.featured-prev {
  color: #000000;
}

.best-selling-next:after,
.featured-next:after,
.best-selling-prev:after,
.featured-prev:after {
  font-size: 20px;
}

.best-selling-prev,
.featured-prev {
  left: 0;
}

.best-selling-next,
.featured-next {
  right: 0;
}

.featured-swiper-pagination,
.best-selling-products-pagination {
  bottom: -30px !important;
}

.featured-swiper-pagination .swiper-pagination-bullet,
.best-selling-products-pagination .swiper-pagination-bullet {
  background: #BDBDBD;
}

.featured-swiper-pagination .swiper-pagination-bullet-active,
.best-selling-products-pagination .swiper-pagination-bullet-active {
  background: #004C4C;
}

.page-numbers {
  border: none !important;
}
.page-numbers li {
  border: none !important;
  margin-right: 8px !important;
}/*# sourceMappingURL=theme.css.map */