@font-face {
  font-family: Gilroy-Regular;
  src: url(Gilroy-Regular.otf);
}

:root {
  /* widths for rows and containers
     */
  --header-height: 160px;
  --header-height-min: 80px;
}

/* on mobile devices below 600px
 */
@media screen and (max-width: 600px) {
  :root {
    --header-height: 100px;
    --header-height-min: 80px;
  }
}

/* Theme Colors */
:root {
  --accent-color: #dead6f;
  --dark-color: #222222;
  --light-dark-color: #727272;
  --light-color: #fff;
  --grey-color: #dbdbdb;
  --light-grey-color: #fafafa;
  --primary-color: #6995b1;
  --light-primary-color: #eef1f3;
}

/* Fonts */
:root {
  /*
  --body-font: 'Gilroy-Regular', cursive!important;
  --heading-font: 'Gilroy-Regular', cursive!important;
  --secondary-font: 'Montserrat', sans-serif!important;
  */
  --body-font: "Gilroy-Regular", "Montserrat", "Roboto", sans-serif, cursive !important;
  --heading-font: "Gilroy-Regular", "Montserrat", "Roboto", sans-serif, cursive !important;
  --secondary-font: "Montserrat", "Roboto", sans-serif !important;
}

body {
  --bs-link-color: #333;
  --bs-link-hover-color: #333;

  --bs-link-color-rgb: 40, 40, 40;
  --bs-link-hover-color-rgb: 0, 0, 0;

  /* --bs-link-color: #DEAD6F;
  --bs-link-hover-color: #DEAD6F; */

  --bs-light-rgb: 248, 248, 248;
  /*
  --bs-font-sans-serif: 'Gilroy-Regular', cursive!important;
  */
  --bs-font-sans-serif: "Gilroy-Regular", "Montserrat", "Roboto", sans-serif,
    cursive !important;
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 2;
  --bs-body-color: #41403e;

  --bs-primary: #dead6f;
  --bs-primary-rgb: 222, 173, 111;

  --bs-primary-bg-subtle: #fff9eb;
  --bs-border-color: #f7f7f7;

  --bs-secondary-rgb: 230, 243, 251;

  --bs-success-rgb: 238, 245, 228;
  --bs-danger-rgb: 249, 235, 231;
  --bs-warning-rgb: 255, 249, 235;
  --bs-info-rgb: 230, 243, 250;
}

.btn-primary {
  padding: 1.2rem 3rem;
  --bs-btn-color: #fff;
  --bs-btn-bg: #dead6f;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #e9b775;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #dead6f;
  --bs-btn-active-border-color: transparent;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #d3d7dd;
  --bs-btn-disabled-border-color: transparent;
}

.btn-outline-primary {
  transition: all 0.3s ease-in;
  padding: 1.2rem 3rem;
  letter-spacing: 0.02375rem;
  --bs-btn-color: #dead6f;
  --bs-btn-border-color: #dead6f;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #dead6f;
  --bs-btn-hover-border-color: #dead6f;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #dead6f;
  --bs-btn-active-border-color: #dead6f;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #dead6f;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #dead6f;
  --bs-gradient: none;
}

.btn-outline-dark {
  transition: all 0.3s ease-in;
  padding: 1.2rem 3rem;
  letter-spacing: 0.02375rem;
  text-transform: uppercase;
  --bs-btn-color: #41403e;
  --bs-btn-border-color: #41403e;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #41403e;
  --bs-btn-hover-border-color: #41403e;
  --bs-btn-focus-shadow-rgb: 33, 37, 41;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #41403e;
  --bs-btn-active-border-color: #41403e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #41403e;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #41403e;
  --bs-gradient: none;
}

.btn-dark {
  padding: 1.2rem 3rem;
  font-size: 1.1875rem;
  text-transform: uppercase;
  --bs-btn-color: #fff;
  --bs-btn-bg: #41403e;
  --bs-btn-border-color: #41403e;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #363533;
  --bs-btn-hover-border-color: #363533;
  --bs-btn-focus-shadow-rgb: 66, 70, 73;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #41403e;
  --bs-btn-active-border-color: #41403e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #41403e;
  --bs-btn-disabled-border-color: #41403e;
}

.uppercase {
  text-transform: uppercase;
}

body {
  letter-spacing: 0.01625rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  color: var(--bs-body-color);
  font-weight: 400;
  text-transform: capitalize;
}

a {
  text-decoration: none;
}

.breadcrumb.text-white {
  --bs-breadcrumb-divider-color: #fff;
  --bs-breadcrumb-item-active-color: var(--bs-primary);
}

.dropdown-menu {
  --bs-dropdown-link-active-bg: var(--bs-primary);
}

.secondary-font {
  font-family: var(--secondary-font);
  font-weight: 300;
}

/*----------------------------------------------*/
/* 6. SITE STRUCTURE */
/*----------------------------------------------*/
/* 6.1 Header
--------------------------------------------------------------*/
/* Preloader */
.preloader-wrapper {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 111;
  background: #fff;
}

.preloader-wrapper .preloader {
  margin: 20% auto 0;
  transform: translateZ(0);
}

.preloader:before,
.preloader:after {
  content: "";
  position: absolute;
  top: 0;
}

.preloader:before,
.preloader:after,
.preloader {
  border-radius: 50%;
  width: 2em;
  height: 2em;
  animation: animation 1.2s infinite ease-in-out;
}

.preloader {
  animation-delay: -0.16s;
}

.preloader:before {
  left: -3.5em;
  animation-delay: -0.32s;
}

.preloader:after {
  left: 3.5em;
}

@keyframes animation {
  0%,
  80%,
  100% {
    box-shadow: 0 2em 0 -1em var(--accent-color);
  }

  40% {
    box-shadow: 0 2em 0 0 var(--accent-color);
  }
}

/* search bar style  */
.search-bar {
  border: 1px solid #eaeaea;
}

.search-bar ::placeholder {
  font-family: var(--secondary-font);
}

.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #86b7fe;
  outline: 0;
  box-shadow: none;
}

/* nav bar style  */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.nav-link:focus,
.nav-link:hover {
  color: var(--accent-color);
}

/* category style */
@media screen and (min-width: 600px) {
  .img-category-desk {
    max-width: 90%;
  }
}

iconify-icon.category-icon {
  color: #dead6f99;
  font-size: 100px;
  transition: all 0.3s ease-in;
}

a.categories-item:hover iconify-icon.category-icon {
  color: #dead6f;
}

/* banner style */
.swiper-pagination-bullet {
  border: 1px solid var(--bs-body-color);
  background-color: transparent;
  opacity: 1;
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 15px)
  );
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 15px)
  );
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--bs-body-color);
  background: var(--bs-body-color);
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 8px);
}

/* pet clothing */
.card {
  --bs-card-inner-border-radius: none;
  --bs-card-bg: transparent;
  background-color: transparent;
  border: none;
  text-align: center;
}

a.btn-cart {
  border-radius: 0.25rem;
  border: 1px solid rgba(65, 64, 62, 0.2);
  margin: 0 auto;
}

a.btn-wishlist {
  border-radius: 0.25rem;
  border: 1px solid rgba(65, 64, 62, 0.2);
}

/* pet foodies style  */
button.filter-button {
  letter-spacing: 0.02125rem;
  border: none;
  border-bottom: 2px solid #d9d9d8;
  background: transparent;
  text-transform: uppercase;
  font-size: 1.0625rem;
  transition: all 0.3s ease-in;
}

button.filter-button.active,
button.filter-button:hover {
  border-bottom: 2px solid #dead6f;
}

/* testimonial style  */
.testimonial-content {
  color: #908f8d;
  font-size: 22px !important;
}

iconify-icon.quote-icon {
  color: #f7eee4;
  font-size: 14rem;
}

/* register form  */
.form-control {
  color: #908f8d;
  line-height: normal;
  letter-spacing: 0.02125rem;
  /* text-transform: capitalize; */
  border-radius: 0.25rem;
  border: 1px solid rgba(65, 64, 62, 0.2);
  background: #fff;
  display: flex;
  padding: 1.25rem 0rem 1.25rem 1.25rem;
  align-items: center;
  gap: 0.375rem;
  align-self: stretch;
}

.form-control:focus {
  border-color: #41403e;
}

/* blog style */
.blog-paragraph {
  color: #908f8d;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
}

.blog-read {
  color: #908f8d;
  font-size: 1rem;
  letter-spacing: 0.02rem;
  text-transform: uppercase;
}

a.blog-read {
  border-bottom: 3px solid #d9d9d8;
  transition: all 0.3s ease-in;
}

a.blog-read:hover {
  border-bottom: 3px solid #8a8a8a;
}

/* services style  */
.service-icon {
  font-size: 30px;
  border-radius: 3.125rem;
  border: 1px solid #d9d9d8;
  padding: 1.25rem;
}

/* insta style  */
.instagram-item:hover:before,
.instagram-item:hover .icon-overlay {
  opacity: 1;
  cursor: pointer;
}

.icon-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  align-items: center;
  font-size: 3rem;
  cursor: pointer;
  opacity: 0;
  -moz-transition: 0.8s ease;
  -webkit-transition: 0.8s ease;
  transition: 0.8s ease;
}

/* footer style */
iconify-icon.social-icon {
  color: #cacaca;
  font-size: 1.125rem;
  padding: 0.75rem;
  border-radius: 4.375rem;
  border: 1px solid #d9d9d8;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.03);
  transition: all 0.5s ease;
}

li.social:hover iconify-icon.social-icon {
  color: #fff;
  border: 1px solid #dead6f;
  background: #dead6f;
}

iconify-icon.send-icon {
  cursor: pointer;
  font-size: 1.125rem;
  padding: 0.75rem;
  border-radius: 4.375rem;
  color: #fff;
  border: 1px solid #dead6f;
  background: #dead6f;
}
/*--------------------------------------------------------------
faqs section style start
--------------------------------------------------------------*/
.accordion-button:not(.collapsed) {
  color: var(--body-text-color);
  background-color: transparent;
  box-shadow: none;
}

.accordion {
  --bs-accordion-color: var(--light-text-color);
  --bs-accordion-bg: none;
  --bs-accordion-btn-color: var(--body-text-color);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxZW0iIGhlaWdodD0iMWVtIiB2aWV3Qm94PSIwIDAgMTAyNCAxMDI0Ij48cGF0aCBmaWxsPSJjdXJyZW50Q29sb3IiIGQ9Ik0xMDQuNzA0IDMzOC43NTJhNjQgNjQgMCAwIDEgOTAuNDk2IDBsMzE2LjggMzE2LjhsMzE2LjgtMzE2LjhhNjQgNjQgMCAwIDEgOTAuNDk2IDkwLjQ5Nkw1NTcuMjQ4IDc5MS4yOTZhNjQgNjQgMCAwIDEtOTAuNDk2IDBMMTA0LjcwNCA0MjkuMjQ4YTY0IDY0IDAgMCAxIDAtOTAuNDk2Ii8+PC9zdmc+");
}

.accordion-button::after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxZW0iIGhlaWdodD0iMWVtIiB2aWV3Qm94PSIwIDAgMTAyNCAxMDI0Ij48cGF0aCBmaWxsPSJjdXJyZW50Q29sb3IiIGQ9Ik0xMDQuNzA0IDMzOC43NTJhNjQgNjQgMCAwIDEgOTAuNDk2IDBsMzE2LjggMzE2LjhsMzE2LjgtMzE2LjhhNjQgNjQgMCAwIDEgOTAuNDk2IDkwLjQ5Nkw1NTcuMjQ4IDc5MS4yOTZhNjQgNjQgMCAwIDEtOTAuNDk2IDBMMTA0LjcwNCA0MjkuMjQ4YTY0IDY0IDAgMCAxIDAtOTAuNDk2Ii8+PC9zdmc+");
}

.accordion-button:focus {
  z-index: 3;
  border-color: none;
  box-shadow: none;
}

/*--------------------------------------------------------------
Account section style start
--------------------------------------------------------------*/
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
Blog section style start
--------------------------------------------------------------*/
/* ------ Pagination ------*/
.pagination .page-numbers {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  color: var(--bs-body-color);
  padding: 0 10px;
  line-height: 1.4;
  transition: 0.9s all;
  border-radius: 8px;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  color: var(--accent-color);
}

iconify-icon.pagination-arrow {
  color: var(--bs-body-color);
  transition: 0.9s all;
}

iconify-icon.pagination-arrow:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
Single Product section style start
--------------------------------------------------------------*/
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--light-color);
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
NEW STYLES
--------------------------------------------------------------*/
.CartNum {
  padding: 5px 7px 5px 7px !important;
}
#offcanvasCart .img-thumbnail {
  padding: 0.05rem;
  border: none;
  margin-top: -18px;
}

#offcanvasCart .offcanvas-body {
  padding: 8px;
}

#offcanvasCart .list-group-item {
  padding: 0;
  padding-top: 22px;
}
#cardButton {
  background: #dead6f !important;
  width: 100%;
  display: block;
  margin: 0 auto !important;
  padding: 0 !important;
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.removeProductCart {
  border: 1px solid;
  border-radius: 30px;
  margin-top: -5px;
}
.qc-total {
  margin-left: 5px !important;
}

#d_quickcheckout tbody,
#d_quickcheckout tr {
  border-style: none;
}

.removeProductCart:hover {
  border: 1px solid red;
}

.progress-container {
  width: 100%;
  background-color: #f3f3f3;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  margin: 2px 0px;
}
.progress-bar {
  height: 13px;
  width: 0%;
  background-color: #dead6f;
  text-align: center;
  line-height: 30px;
  color: white;
  border-radius: 25px 0 0 25px;
  transition: width 0.25s;
}

#cookie-consent-bar {
  text-align: left;
  padding: 10px 20px 10px 10px;
  font-size: 18px;
  background-color: rgb(249 234 211);
  position: fixed;
  bottom: 0;
  z-index: 2222;
  width: 100%;
  color: #fff;
  /* border-top-right-radius: 40px; */
  width: 100%;
  display: flex;
  align-items: center;
  opacity: 0.9;
}

#cookie-consent-bar p {
  color: black;
  font-size: 15px;
  margin: 0 10px 0 16px;
  max-width: 90%;
}

#cookie-consent-bar a {
  font-weight: 500;
  cursor: pointer;
  color: #008dcb;
}

#accept-cookies,
#read-cookie-policy {
  padding: 5px;
  font-size: 0.8em;
  border-width: 2px;
  border-style: solid;
  background-color: rgb(249 243 236);
  color: black;
  display: inline-block;
  width: 200px;
  height: 40px;
  margin: 5px;
  cursor: pointer;
}

#read-cookie-policy {
  background: #333;
  color: #fff;
}

div#offcanvasLanguage img {
  max-width: 50px;
  border: 2px solid #ededed;
  border-radius: 50px;
  padding: 2px;

  box-shadow: rgba(14, 63, 126, 0.06) 0px 0px 0px 1px,
    rgba(42, 51, 70, 0.03) 0px 1px 1px -0.5px,
    rgba(42, 51, 70, 0.04) 0px 2px 2px -1px,
    rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px,
    rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px,
    rgba(42, 51, 70, 0.03) 0px 10px 10px -5px,
    rgba(42, 51, 70, 0.03) 0px 24px 24px -8px;
}

div#offcanvasLanguage img:hover {
  border: 2px solid #e3ad6f;
}

@media (max-width: 360px) {
  #offcanvasLanguage a {
    margin-right: 0.8rem !important;
    margin-left: 0.8rem !important;
  }
}

.mobileLanguage img,
.desktopLanguage img {
  max-width: 24px;
}

/*///////// STEP 3 - SUCCESS ///////////*/

.fontCenter {
  text-align: center;
}

.f19 {
  font-size: 19px;
}

.f26 {
  font-size: 26px;
}

.congrats {
  display: table;
  margin: 20px auto 0;
}

.congrats img {
  margin: 0 10px 0 0;
}

.congrats strong {
  display: table-cell;
  vertical-align: middle;
  font-size: 22px;
  font-weight: bold;
}

.step3_box {
  text-align: center;
  background-color: #f9f3ec;
  max-width: 700px;
  margin: 20px auto;
  padding: 20px 0;
  font-size: 16px;
  width: 100%;
}

table.tableStep3 {
  background: #ffffff none repeat scroll 0 0;
  border-collapse: collapse;
  border-radius: 10px;
  font: 13px Arial, Helvetica, sans-serif;
  text-align: left;
  max-width: 470px;
  margin: 20px auto;
  border: 1px solid #000;
  color: #000;
  width: 100%;
}

table.tableStep3 th {
  background: #dead6f;
  color: #ffffff;
  font-weight: bold;
  padding: 10px 5px 10px 10px;
}

table.tableStep3 td {
  border: 1px solid #000000;
  margin: 0;
  padding: 10px 5px 10px 10px;
}

/*///////// END STEP 3 - SUCCESS ///////////*/

@media (max-width: 767px) {
  #cookie-consent-bar {
    width: 100%;
    padding: 10px;
    flex-direction: column;
    text-align: center;
  }

  #cookie-consent-bar p {
    font-size: 14px;
  }

  #cookie-consent-bar img {
    display: none;
  }

  #cookie-consent-bar p {
    margin: 0;
  }
}

#categories img {
  margin-bottom: 17px;
}
#categories .container {
  padding-top: 1rem !important;
  padding-bottom: 0 !important;
}
#testimonial .container {
  padding-top: 1rem !important;
  padding-bottom: 0 !important;
}
#testimonialDoc .py-5 {
  padding-top: 1rem !important;
}
#bestselling {
  margin-bottom: 60px;
  margin-top: 60px;
}
#bestselling .pt-4 {
  padding-top: 0 !important;
}
.center {
  text-align: center;
}
.bold {
  font-weight: bold;
}
#banner-2 .p-5 {
  padding-left: 0 !important;
}
#service {
  background: #f9f3ec;
  text-align: center;
}
#service .container {
  padding: 0 !important;
}
.footer-menu img {
  margin-top: -15px;
}
.margin-bottom-li {
  margin-bottom: 10px;
}
#testimonial .row {
  --bs-gutter-x: 0;
}
#testimonialProduct .row {
  --bs-gutter-x: 0;
}
#testimonialProduct {
  max-width: 1320px;
  margin: 0 auto;
}
#testimonialProduct h2 {
  width: 80%;
  margin: 0 auto;
  margin-bottom: -30px;
}
#pictures .row {
  width: 99% !important;
  margin: 0 auto;
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
  text-align: center;
}
#mobileLogo {
  display: none;
}
#banner {
  background: #f9f3ec;
  margin-top: 74px;
}
#banner .py-5 {
  padding-top: 1rem !important;
}
#banner .rating {
  margin-bottom: 10px;
}
#banner .ratingStars {
  font-size: 25px;
}
#banner .discount {
  font-size: 20px;
  font-weight: 400;
}
#smallProducts {
  margin: 0 !important;
  padding: 0 !important;
  padding-top: 20px !important;
  padding-bottom: 10px !important;
}
#smallProducts h3 {
  font-size: 0.8rem !important;
}
#smallProducts .pb-5 {
  padding: 0 !important;
}
#smallProducts .pt-4 {
  padding-top: 16px;
}
#smallProducts .smallProdImage {
  background: linear-gradient(#fff 0 0) padding-box,
    linear-gradient(180deg, #dead6f, #7c5338) border-box;
  padding: 1.5px;
  border: 2.5px solid transparent;
  border-radius: 50%;
}
#smallProducts .smallProdNew {
  background: #dead6f;
  position: absolute;
  left: 0;
  right: 0;
  top: -4px;
  margin-left: auto;
  margin-right: auto;
  width: 39px;
  border-radius: 1.5rem;
  line-height: 1rem;
  padding: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
}
#smallProducts .swiper {
  overflow: visible !important;
  padding-left: 10px;
  padding-right: 10px;
}
.mobileSlide {
  display: none;
}
header {
  position: fixed;
  top: 0;
  z-index: 1000;
  background: white;
  width: 100%;
}
/*--------------------------------------------------------------
SHOP / Category
--------------------------------------------------------------*/
#shop {
  margin-top: 34px;
  text-align: center;
}
#shop .row {
  margin: 0 auto !important;
}
#shop .row h3 {
  margin-top: -10px !important;
}
#shop .row h5 {
  font-size: 16px;
}
#shop .row .btn-cart {
  padding: 10px 17px 10px 17px !important;
}
#shop .col-6 {
  padding-top: 40px;
  position: relative;
}
#shop .card-body {
  margin-top: 20px;
}
#shop .shop_product_wrapper {
  margin-top: 40px;
  position: relative;
  padding: 0 !important;
}
#shop .newBadge {
  left: 12px;
  top: -5px;
  background: #29387e;
  color: white;
}
#shop .card-title {
  font-size: 20px;
  font-weight: bold;
}
/*--------------------------------------------------------------
SHOP / Category END
--------------------------------------------------------------*/
/*--------------------------------------------------------------
PRODUCT LISTING
--------------------------------------------------------------*/
.product-large-slider .swiper-pagination,
.product-large-slider .swiper-button-prev,
.product-large-slider .swiper-button-next {
  display: none;
}
#selling-product a.btn-cart {
  margin: 0;
  padding: 15px 55px 10px 55px !important;
  text-align: center;
}
#selling-product a.btn-cart h5 {
  color: white;
}
#addToCart {
  background: #0095e1;
}
#buyNow {
  background: #86bf3d;
  margin-left: 2px !important;
}
#free_over_product {
  border: 3px dashed #ff0000;
  font-size: 17px;
  letter-spacing: 1.8px;
  padding: 10px;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;
  line-height: 20px;
  color: black;
  font-weight: bold;
  padding-top: 11px;
}
.btn-margin-right {
  margin-right: 0 !important;
}
.cart-wrap {
  margin-bottom: 8px;
}
.underButtons {
  text-align: center;
}
.underButtons p {
  line-height: 1.5 !important;
}
.underButtons h5 {
  margin-top: 10px;
}
.table {
  font-weight: bold;
  margin-bottom: 0;
  border: none;
}
.table th,
.table td {
  padding: 12px;
  font-size: 20px;
  border: none;
  vertical-align: middle;
}
.table th {
  text-align: center;
}
.greenRow {
  background-color: #e8f5e6 !important;
}
.oldPrice {
  color: red !important;
}
.newPrice {
  color: green !important;
}
.brief {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.accordionWrapper {
  padding: 0;
  margin: 0;
}
.accordion-item {
  border: 0 !important;
}
.accordion-button {
  font-size: 1.5rem;
}
.tableRight {
  text-align: right;
}
.accordion-header {
  border-bottom: 1px solid #dead6f;
}
.containerFaq {
  max-width: 720px;
  margin: 0 auto;
}
#selling-product {
  margin-bottom: 2rem;
}
#selling-product .py-5 {
  padding-bottom: 0 !important;
}
#selling-product h2,
#ingredients h2,
#testimonialProduct h2,
#service h2,
#faq h2,
#description h2,
#reviews h2 {
  font-weight: bold;
}
#selling-product h2 {
  margin-top: 10px;
}
.floatImage {
  float: left;
  margin-right: 20px;
}
#faq h2 {
  margin-bottom: 25px;
}
#faq .row {
  --bs-gutter-x: 0;
}
#ingredients {
  margin-bottom: 3rem;
}
#ingredients .row {
  margin: 0 auto;
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 1rem;
  text-align: left;
  line-height: 1.5;
}
#ingredients h3 {
  margin-top: 1rem;
}
#smallSliderProduct {
  margin: 0 auto;
  margin-top: 5rem;
  margin-bottom: 2rem;
  text-align: center;
  background: black;
  padding: 10px;
}
#smallSliderProduct div {
  color: white;
}
#smallSliderPrev:after,
#smallSliderNext:after {
  font-size: 15px !important;
  font-weight: bold;
}
#smallSliderPrev:after {
  margin-left: -35px;
}
#smallSliderNext:after {
  margin-left: 35px;
}
.productsStrip {
  font-weight: bold;
  max-width: 600px;
}
.productTopSlide {
  padding-top: 5px;
}
#video {
  float: left;
  margin-right: 20px;
}
.mostPopular {
  background: yellow;
  padding: 0;
  padding-top: 3px;
  border-radius: 33px;
  font-size: 14px;
  width: 110px;
  text-align: center;
  border: 1px dashed red;
}
.bestValue {
  background: #86bf3d;
  padding: 0;
  padding-top: 3px;
  border-radius: 33px;
  font-size: 14px;
  width: 110px;
  text-align: center;
  border: 1px dashed red;
}
.productH2 {
  margin-bottom: 0 !important;
  font-weight: bold;
}
#description .container {
  margin: 0 auto;
}
.certificatesButton {
  display: block;
  margin: 0 auto;
  padding-top: 8px;
}
.review-box {
  margin-top: 25px;
}
.image-holder {
  text-align: center;
  margin-right: 10px;
}
.radio-button,
.checkbox {
  position: relative;
}
.checkbox {
  display: block;
}

.radio-button input,
.checkbox input {
  position: absolute;
  margin: 5px;
  padding: 0;
  /* for mobile accessibility (iOS Label Bug) */
  visibility: hidden;
}
.radio-button .label-visible,
.checkbox .label-visible {
  margin-left: 2em;
  margin-bottom: 0;
}

.fake-radiobutton,
.fake-checkbox {
  position: absolute;
  display: block;
  top: 5px;
  left: 3px;
  width: 32px;
  height: 32px;
  border: 1px solid #dead6f;
  background-color: white;
}
.fake-radiobutton:after,
.fake-checkbox:after {
  content: "";
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 25px;
  background: #dead6f;
  transform: translateX(-50%) translateY(-50%);
}

.fake-radiobutton {
  border-radius: 50%;
}
.fake-radiobutton:after {
  border-radius: 50%;
}

input[type="radio"]:checked + span .fake-radiobutton:after,
input[type="checkbox"]:checked + span .fake-checkbox:after {
  display: block;
}



/*--------------------------------------------------------------
PRODUCT LISTING END
--------------------------------------------------------------*/
/*--------------------------------------------------------------
Other pages, terms, privacy, etc.
--------------------------------------------------------------*/
#information-information,
#information-contact,
#error-not-found,
#blog {
  margin-top: 80px;
}
/*--------------------------------------------------------------
Other pages END
--------------------------------------------------------------*/
/*--------------------------------------------------------------
CART
--------------------------------------------------------------*/
.cartName {
  width: 40%;
}
/*--------------------------------------------------------------
CART END
--------------------------------------------------------------*/
img {
  max-width: 100%;
}
@media screen and (max-width: 1400px) {
  #shop .newBadge {
    left: 8px;
    top: -9px;
    font-size: 16px;
  }
}
@media screen and (max-width: 1200px) {
  #shop .newBadge {
    left: 11px;
    top: -8px;
    font-size: 12px;
  }
  #shop .card-title {
    height: 50px !important;
  }
}
@media (max-width: 992px) {
  #desktopLogo {
    display: none;
  }
  #mobileLogo {
    display: block;
  }

  .product-large-slider .swiper-pagination,
  .product-large-slider .swiper-button-prev,
  .product-large-slider .swiper-button-next {
    display: block;
  }

  .product-thumbnail-slider {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  /* offcanvas menu */
  .offcanvas-body .nav-item {
    font-weight: 700;
    border-bottom: 1px solid #d1d1d1;
  }

  .offcanvas-body .filter-categories {
    width: 100%;
    margin-bottom: 20px !important;
    border: 1px solid #d1d1d1 !important;
    padding: 14px;
    border-radius: 8px;
  }

  /* dropdown-menu */
  .dropdown-menu {
    padding: 0;
    border: none;
    line-height: 1.4;
    font-size: 0.9em;
  }

  .dropdown-menu a {
    padding-left: 0;
  }

  .dropdown-toggle::after {
    position: absolute;
    right: 0;
    top: 21px;
  }
  .btn-primary,
  .btn-outline-primary,
  .btn-outline-dark,
  .btn-dark {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
  }
  #shop .newBadge {
    left: 3px;
    top: -12px;
    font-size: 10px;
  }
  #shop .card-title {
    height: 50px !important;
  }
}

@media (max-width: 768px) {
  #banner {
    margin-top: 67px !important;
  }
  #banner .col-md-7 {
    flex: 0 0 auto;
    /* width: 58.33333333%; */
  }
  #banner .col-md-5 {
    flex: 0 0 auto;
    width: 100%;
  }
  #banner .container {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
    text-align: center;
  }
  #banner .py-5,
  #banner .p-5 {
    padding: 0 20px !important;
    margin: 0 !important;
  }
  #banner .mb-5 {
    margin: 0 !important;
  }
  #banner .mb-4 {
    margin: 0 !important;
  }
  #banner a {
    margin-bottom: 20px;
  }
  #banner .display-1 {
    font-size: 40px !important;
  }
  #banner .rating {
    line-height: 1.5;
    font-size: 14px;
    margin-bottom: 15px;
  }
  #smallProducts a {
    margin-bottom: -10px;
  }
  .py-5 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .my-5 {
    margin-top: 1rem !important;
    margin-bottom: 2rem !important;
  }
  .quote-icon {
    font-size: 5rem !important;
  }
  .testimonial-content {
    font-size: 15px !important;
    line-height: 1.5;
  }
  #banner-2 .p-5 {
    padding: 0 10px 35px 10px !important;
    text-align: center;
  }
  .footer-menu img {
    margin-top: 15px;
    margin-bottom: 30px;
  }
  #bestselling .btn-outline-dark {
    display: none;
  }
  #bestselling .mb-3 {
    text-align: center;
  }
  .desktopSlide {
    display: none;
  }
  .mobileSlide {
    display: block;
  }
  .ratingStars {
    display: block;
  }
  #mobileLogo {
    width: 30%;
    margin-left: 30px;
    text-align: center;
  }
  #testimonial h2 {
    padding: 0 5px !important;
  }
  #latest-blog .section-header {
    text-align: center !important;
    margin-top: -20px !important;
  }
  #selling-product a.btn-cart {
    margin: 0;
    text-align: center;
    width: 100%;
    margin: 0 !important;
  }
  #selling-product #buyNow {
    margin-top: 15px !important;
  }
  #selling-product #free_over_product {
    margin-top: 0;
    font-size: 16px;
  }
  #selling-product .rating {
    text-align: center;
    line-height: 1.5;
  }
  .table th,
  .table td {
    padding: 0px;
    padding-top: 5px;
    padding-bottom: 10px;
    font-size: 16px;
  }
  #ingredients .row {
    --bs-gutter-x: 1rem;
  }
  #smallSliderProduct {
    margin-bottom: 0;
    margin-top: 4rem;
  }
  #selling-product {
    margin-bottom: 0;
  }
  #ingredients {
    margin-bottom: 1rem;
  }
  #video {
    width: 110px;
    height: 195px;
  }
  .brief {
    margin-bottom: 0;
  }
  #faq .accordion-button {
    font-size: 18px;
  }
  #bestselling {
    margin-bottom: 40px;
    margin-top: 20px;
  }
  #bestselling h2 {
    margin-bottom: -20px;
  }
  .floatImage {
    width: 110px;
    height: 195px;
  }
  .radio-button {
    margin-right: 15px;
  }
  #service .row {
    --bs-gutter-x: 0;
    padding-left: 15px;
  }
  .productSliderWrapper {
    padding: 0;
  }
  .image-holder {
    margin-right: 0;
  }
  #shop {
    margin-top: 35px;
  }
  #shop .row h5 {
    font-size: 13px;
  }
  #shop .newBadge {
    top: -11px;
    left: 3px;
    font-size: 12px;
  }
  #shop .shop_product_wrapper {
    padding: 0px 5px 0px 5px !important;
    margin-top: 30px !important;
  }
  #shop .card-title {
    height: 50px !important;
  }
  #shop .container {
    padding-right: 5px !important;
    padding-left: 5px !important;
  }
  
  .review-box .col-lg-4.col-6.d-flex.flex-wrap {
    display: block !important;
	}
}


.table td.oldPrice, .table td.newPrice {
    padding: 0px 5px 0px 5px;
    /* font-size: 16px; */
    white-space: nowrap;
} 