@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green: #86c342;
  --yellow: #976325;
}

body {
  /* font-family: 'DIN','Helvetica Neue',Helvetica,Arial,sans-serif; */
  font-family: "Lato", sans-serif;
  color: #000;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lato", sans-serif;
}

p,
span {
  font-family: "Lato", sans-serif;
}

.relative {
  position: relative;
}

a {
  text-decoration: none;
  color: #000;
  cursor: pointer !important;
}

a:hover {
  color: var(--green);
}

input:focus,
a:focus,
.form-check-input:focus {
  box-shadow: none;
  outline: 0px;
}

.topbar {
  background: #86c342;
  padding: 8px;
  color: #fff;
  display: flex;
}

.topbar a {
  color: #000;
}

.logo_header {
  background: #fff;
  padding: 0 12px;
}

.logo_header a {
  color: #000;
}

.logo {
  max-width: 280px;
}

.search {
  max-width: 49%;
  margin: 0 5%;
}

.search .form-control {
  border-radius: 40px;
  background: #ecf8df;
  border: 0px;
  padding: 12px 20px;
  height: 46px;
}

.search .btn {
  position: absolute;
  right: 8px;
  width: 50px;
  height: 46px;
  line-height: 35px;
  font-size: 24px;
  color: var(--green);
}

.search-results {
  padding: 15px;
  border-radius: 5px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50px;
  width: 100%;
  max-height: 300px;
  overflow-y: scroll;
  z-index: 2;
  box-shadow: 0 5px 10px -5px #00000038;
  transition: all 0.3s;
  /* opacity: 0;
    visibility: hidden; */
}

.search-results::-webkit-scrollbar {
  width: 5px;
}

.search-results::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.search-results::-webkit-scrollbar-thumb {
  background: #ababab;
}

.search-results::-webkit-scrollbar-thumb:hover {
  background: #000;
}

.search-results li:not(:last-child) {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 8px;
}

.search-results li img {
  width: 70px;
  height: 40px;
  object-fit: contain;
  margin-right: 15px;
}

.search-results .pct-desc p {
  color: #000;
  font-size: 14px;
}

.search-results li:hover .pct-desc p {
  color: var(--green);
}

.search-results .quantity .qty {
  -webkit-box-shadow: none;
  box-shadow: none;
  height: 31px;
  text-align: center;
  padding: 1px;
  background-color: #fff;
  font-size: 16px;
  line-height: 1;
  color: #000;
  width: 46px;
  outline: 0;
  margin: 0;
  border: none;
  border-right: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
}

.search-btn-cart {
  background-color: #86c342;
  border-radius: 30px;
  padding: 7px 15px;
  margin-right: 17px;
  color: #fff !important;
}

.search-results li .pct-desc p {
  text-transform: capitalize;
}

.search-results li:hover .pct-desc p {
  color: var(--green);
}

.search-results .btn.view_prd {
  padding: 0;
  font-size: 24px;
  color: var(--green);
  position: relative;
  margin-left: auto;
}

ul.list-styled {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side_links {
  max-width: calc(36% - 210px);
}

.side_links ul {
  display: flex;
  align-items: center;
  max-width: 300px;
  margin-left: auto;
}

.side_links .login {
  margin-right: auto;
}

.side_links .icons {
  padding: 5px;
  margin: 0 4px;
  font-size: 20px;
  position: relative;
}

.side_links .icons .user_name {
  font-size: 15px;
}

.add_cnt {
  width: 20px;
  height: 20px;
  background: red;
  color: #fff;
  text-align: center;
  font-size: 12px;
  position: absolute;
  top: -10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  right: 0px;
}

.cart_card {
  position: absolute;
  width: 32em;
  /*changes*/
  max-height: 360px;
  /*changes*/
  top: 100%;
  right: 0;
  z-index: 2;
  background: #fff;
  color: #000;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 18px -12px #000;
  opacity: 1;
  visibility: hidden;
  transition: all 0.3s;
}

.side_links li.v_cart:hover .cart_card {
  opacity: 1;
  visibility: visible;
}

.cart_card .pct-desc {
  width: 200px;
  /*changes*/
  max-width: 100%;
  /*changes*/
  margin: auto 20px;
}

.cart_card .pct-desc p {
  font-size: 14px;
  text-transform: capitalize;
}

.d-flex.qty-right {
  align-items: center !important;
}

.cart_card ul {
  margin-left: 0;
  max-width: 100%;
  flex-direction: column;
  max-height: 230px;
  /*changes*/
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 15px;
}

.cart_card .quantity .qty {
  height: 35px;
  /*changes*/
}

.cart_card .price {
  font-size: 14px;
  /*changes*/
  margin: 0 25px;
  width: 100px;
  font-weight: 600;
}

.qty-list.input-group.d-flex.justify-content-end {
  justify-content: flex-start !important;
}

.qty-list .button-plus,
.qty-list .button-minus {
  width: 30px !important;
  height: 30px !important;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
  cursor: pointer;
  font-size: 0.875rem;
  color: #a3a3a3;
}

.qty-list.input-group .quantity-field {
  height: 30px !important;
  width: 30px !important;
  font-size: 14px;
  border-right: none !important;
}

/* .qty-list .input-group .quantity-field {
    position: relative;
    height: 35px !important;
    text-align: center;
    width: 44px !important;
    display: inline-block;
    font-size: 16px;
    margin: 0 0 5px;
    resize: vertical;
    border: 1px solid #c6c6c6;
} */

.search-results .quantity input[type="number"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.cart_card ul::-webkit-scrollbar {
  width: 5px;
}

.cart_card ul::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.cart_card ul::-webkit-scrollbar-thumb {
  background: #ababab;
}

.cart_card ul::-webkit-scrollbar-thumb:hover {
  background: #000;
}

.cart_card ul li {
  border-bottom: 1px solid #ccc;
  margin-bottom: 12px;
  padding-bottom: 5px;
}

.cart_card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin: auto;
}

.cart_card li a {
  color: #000;
  gap: 15px;
}

.pct-desc {
  min-width: 160px;
  font-size: 14px;
}

.pct-desc p {
  line-height: 1.35;
  margin-bottom: 5px;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pct-desc span {
  /* color: var(--green); */
  font-size: 14px;
}

.btn.remove {
  padding: 0;
  rotate: 90deg;
  font-size: 24px;
  color: red;
}

.cart_card a.view-all {
  padding: 10px 18px;
  font-size: 14px;
}

.cart_card a.view-all.yellow {
  background: var(--yellow);
  color: #000;
}

.cart_card a.view-all.yellow:hover {
  background: #000;
  color: #fff;
}

p.sub-total {
  font-size: 18px;
  font-weight: 700;
  padding: 0 10px;
  margin-top: 12px;
}

.menubar {
  border-top: 1px solid #e8e6e6;
  border-bottom: 1px solid #e8e6e6;
}

.menubar ul.navbar-nav {
  /* width: 100%; */
  justify-content: space-between;
}

.menubar nav .navbar-nav .nav-link {
  margin: 0px 8px;
  color: #000;
  /* text-transform: uppercase; */
  font-weight: 500;
  position: relative;
}

.menubar nav .navbar-nav .nav-link:before {
  content: "";
  width: 0px;
  height: 1px;
  background: var(--green);
  transition: all 0.3s linear;
  position: absolute;
  bottom: 0;
  left: 0;
}

.menubar nav .navbar-nav .nav-link:hover:before {
  width: 100%;
}

/* .menubar nav .navbar-nav .nav-item:hover .nav-link {
    color: var(--green);
} */
.menubar .store i {
  font-size: 20px;
  color: #85c440;
}

li.nav-item {
  position: relative;
}

li.nav-item:focus,
.menu-item:focus {
  outline: none !important;
}

.offer {
  background: url(./images/offer-banner.jpg) no-repeat right center / cover;
  padding: 60px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.offer p {
  font-size: 30px;
  font-weight: 500;
}

.shop-btn {
  display: inline-block;
  text-align: center;
  transition: all 0.3s;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 13px 27px 13px 27px;
  line-height: 20px;
  letter-spacing: 0.5px;
  font-size: 16px;
  background-color: var(--green);
  color: #fff;
}

.btn_wrapper {
  margin: 30px 0;
}

.view-all {
  display: inline-block;
  text-align: center;
  /* transition: all 0.3s; */
  text-transform: uppercase;
  border-radius: 50px;
  padding: 13px 27px 13px 27px;
  line-height: 20px;
  letter-spacing: 0.5px;
  font-size: 15px;
  background-color: var(--green);
  color: #fff;
}

.view-all:hover,
.shop-btn:hover {
  background-color: #000;
  color: #fff;
  transform: translateY(-5px);
}

.view-all i {
  font-size: 20px;
  transform: translateY(3px);
}

.secs {
  padding-top: 60px;
}

.sec_title {
  font-weight: 600;
  font-size: 26px;
  padding: 0 0 15px 0;
  border-bottom: 1px solid var(--green);
  margin-bottom: 30px;
}

.cat-box-link {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cat-box {
  background: var(--bg-color);
  text-align: center;
  padding: 0;
  border-radius: 50%;
  width: 160px;
  height: 160px;
  transition: all 0.3s linear;
  border: 10px solid var(--bg-color);
  margin: 10px auto 0;
  overflow: hidden;
}

.cat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px -12px #0000001c;
  border-color: var(--green);
}

.cat-box:hover + .catgory-name {
  color: var(--green);
}

.cat-box .category-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*    margin-bottom: 15px;*/
}

.owl-theme .owl-nav [class*="owl-"] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #a9a9a9 !important;
  border: 1px solid #e8e6e6 !important;
  background: #fff !important;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  color: #fff !important;
  border: 1px solid #e8e6e6 !important;
  background: var(--green) !important;
}

.owl-carousel .owl-nav button.owl-prev {
  left: -12px;
  font-size: 22px;
  line-height: 43px;
}

.owl-carousel .owl-nav button.owl-next {
  right: -12px;
  font-size: 22px;
  line-height: 43px;
}

.address {
  display: flex;
  justify-content: end;
}

.healthy .col {
  background: #fff0;
  padding: 12px;
  margin: 5px;
  border-radius: 10px;
  transition: all 0.3s linear;
}

.healthy .col:hover {
  background: var(--bg-color);
  transform: translateY(-10px);
}

.circle {
  border-radius: 50%;
}

.healthy .col img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border: 4px solid #976325;
}

.healthy .col h3 {
  font-size: 15px;
  margin-top: 12px;
  margin-bottom: 0;
}

/*Products*/
.products .owl-carousel .owl-stage {
  padding-top: 5px;
}

.products .owl-carousel .item {
  padding: 0 5px;
}

.prd-box {
  padding: 12px;
  border: 1px solid #e8e6e6;
  border-radius: 5px;
  position: relative;
  transition: all 0.3s linear;
}

.onsale {
  position: absolute;
  top: 10px;
  left: 10px;
  right: auto;
  background-color: #e43c16;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 11px;
  display: inline-block;
  color: #fff;
  padding: 2px 6px;
}

.prd-box:hover {
  border: 1px solid var(--green);
  transform: translateY(-5px);
}

.prd-box .prd-img img {
  height: 170px;
  object-fit: contain;
  border-bottom: 1px solid #efefef;
}

.prd-box .prd-desc span {
  display: block;
}

.prd-box .prd-desc span.prd-name {
  line-height: 22px;
  margin-bottom: 15px;
  margin-top: 10px;
  min-height: 46px;
}

.prd-box .d-flex.justify-content-between {
  align-items: center !important;
}

.prd-box .prd-desc span.prd-name a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 15px;
  text-transform: capitalize;
}

.prd-box .prd-desc span.ratings {
  color: #e3e3e3;
  font-size: 14px;
  margin-top: 2px;
}

.prd-box .prd-desc .price {
  color: #000;
  font-weight: 600;
  margin-bottom: 8px;
  /* width: auto; */
  display: flex;
  gap: 5px;
}

.prd-box .prd-desc del {
  color: #aaaaaa;
  font-weight: 300;
  font-size: 14px;
}

span.ratings i.active {
  color: #ffc000;
}

.add_to_cart {
  display: block;
  /* position: absolute; */
  bottom: 15px;
  right: 12px;
  background: var(--yellow);
  color: #fff;
  border-radius: 5px;
  padding: 4px 12px;
  transition: all 0.2s linear;
  font-size: 15px;
  margin-top: 15px;
  text-align: center;
}

.add_to_cart i {
  font-size: 18px;
  transform: translateY(2px);
}

.add_to_cart:hover {
  background: var(--green);
  color: #fff;
}

.recommend {
  padding-bottom: 50px;
  background: #eefcef;
  margin-top: 50px;
}

.recommend img {
  background: var(--bg-color);
  width: 100%;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 15px;
  padding: 15px;
}

.recommend .prd-box {
  background: #fff;
  border: 1px solid #fff0;
}

.recommend .prd-box .prd-desc span.prd-name {
  height: auto;
}

.recommend .prd-box .off,
.recommend .prd-box .wishlist {
  font-size: 13px;
  padding: 5px;
  text-align: center;
  border-radius: 4px;
  background: var(--bg-color);
  margin-bottom: 15px;
}

/*Offer box*/
.offer-box {
  overflow: hidden;
  height: 250px;
  padding: 30px;
}

.offer-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s linear;
}

.offer-box:hover img {
  scale: 1.05;
}

.offer-box * {
  position: relative;
  color: #fff;
  font-weight: 600;
}

.offer-box.light h3,
.offer-box.light h4 {
  position: relative;
  color: #000;
  font-weight: 600;
}

.offer-box h4 {
  font-size: 21px;
  font-weight: 400;
  margin-bottom: 30px;
}

.offer-box .shop-btn {
  font-size: 15px;
  font-weight: 500;
}

.brands .col,
.brands .item {
  min-width: 20%;
  padding: 15px;
  border: 1px solid #e8e6e6;
  text-align: center;
  margin: 8px;
  height: 110px;
}

.brands .col,
.brands .item img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center center;
}

.usps {
  background: var(--green);
  margin-top: 80px;
  padding: 30px 0;
}

.usps img {
  width: 72px;
}

.usps * {
  color: #fff;
}

.usps h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 0px;
}

/*****************/
footer {
  padding: 50px 0;
  background: #fdfdfd;
}

footer h2 {
  font-size: 18px;
  font-weight: 600;
  color: #86c342;
}

footer p,
footer ul li a,
footer p a,
footer ul li {
  color: #000000;
  font-size: 15px;
}

footer p.tel a {
  color: var(--green);
  font-weight: 600;
  font-size: 22px;
}

footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

footer ul li {
  padding: 3px 0;
}

.c_details:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  right: 30px;
  top: 0;
  border-right: 1px solid #93c572;
}

.copyrights {
  border-top: 1px solid #e8e6e6;
  padding-top: 20px;
  align-items: center;
  margin-top: 50px;
}

footer form input.form-control {
  border-radius: 40px;
  background: #f1fcdb;
  border: 0px;
  padding: 12px 20px;
  height: 46px;
}

.subcribe {
  display: inline-block;
  text-align: center;
  transition: all 0.3s;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 8px 20px;
  line-height: 20px;
  letter-spacing: 0.5px;
  font-size: 14px;
  background-color: var(--green);
  color: #fff;
  margin-top: 15px;
}

.mx-100 .carousel .carousel-item img {
  height: 480px;
  object-fit: cover;
  width: 100%;
}

/*ProductListing page*/
.list_page {
  padding-bottom: 50px;
}

.sidebar {
  width: 250px;
  background: #fff;
}

/* .products_list_box,
.account_details {
  width: calc(100% - 250px);
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  padding-left: 20px;
} */

.products_list_box,
.account_details {
  width: calc(100% - 250px);
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  background: #fff;
  padding-left: 20px;
  place-self: flex-start;
}

.products_list_box .item {
  width: 14%;
  flex-grow: 1;
  margin: 5px;
}

a.btn-category {
  border: 0px;
  width: 100%;
  display: block;
  text-align: left;
  font-weight: 600;
}

a.btn-category:focus {
  box-shadow: none;
  outline: 0px;
}

.card-body {
  padding: 5px;
  border-width: 1px 0px 0px 0px;
}

.sidebar .card-body {
  padding: 9px 15px;
  border-width: 1px 0px 0px 0px;
  height: 250px;
  overflow-y: scroll;
}

.sidebar .card-body::-webkit-scrollbar {
  width: 2px;
}

.sidebar .card-body::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar .card-body::-webkit-scrollbar-thumb {
  background: #b4b4b4;
}

.sidebar .card-body::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.card-body .form-check {
  margin-bottom: 8px;
}

.card-body .form-check {
  color: #5f5f5f;
  font-size: 15px;
}

.card-body .form-check:hover label {
  color: var(--green);
}

.form-check-input:checked {
  background-color: #94c573;
  border-color: #94c573;
}

.sidebar ul.list-group {
  position: sticky;
  top: 40px;
}

.sidebar .form-check a {
  color: #5f5f5f;
  font-size: 15px;
  position: relative;
  margin-left: -20px;
}

.sidebar .list-group-item {
  padding: 6px 0 !important;
}

.sidebar .form-check a::before {
  content: "";
  height: 2px;
  width: 8px;
  background-color: #86c342;
  position: absolute;
  top: 7px;
  left: -16px;
  border-radius: 0px;
  display: none;
}

.owl-thumb-item {
  width: 25%;
  border: 1px solid #0a408682;
  margin: 0 12px;
}

.owl-thumb-item img {
  max-width: 100%;
  height: 90px;
  object-fit: contain;
  object-position: center center;
  padding: 6px;
  margin: auto;
}

.owl-thumbs {
  /* position: absolute; */
  /* bottom: -10.5em; */
  left: 0;
  display: table;
  width: 100%;
  text-align: center;
  padding: 3% 5px;
}

.owl-thumb-item {
  display: table-cell;
  /*        border: none;*/
  background: none;
  padding: 0;
  opacity: 1;
}

.owl-thumb-item.active {
  opacity: 1;
}

.detail-addtocart {
  display: flex;
  align-items: center;
}

.input-group .button-minus,
.input-group .button-plus {
  font-weight: bold;
  height: 38px;
  padding: 0;
  font-size: 18px;
  width: 28px;
  position: relative;
  border: 1px solid #c6c6c6;
}

.qty-list.input-group .button-minus,
.qty-list.input-group .button-plus,
.qty-list.input-group .quantity-field {
  height: 30px;
  width: 29px;
  font-size: 14px;
}

.input-group .quantity-field {
  position: relative;
  height: 38px;
  text-align: center;
  width: 35px;
  display: inline-block;
  font-size: 18px;
  margin: 0 0 5px;
  resize: vertical;
  border: 1px solid #c6c6c6;
}

.number label + .input-group {
  width: auto;
  display: inline-flex !important;
  margin-left: 5px;
}

.number .input-group .button-minus,
.number .input-group .button-plus {
  width: 34px;
}

.number .input-group .button-minus,
.number .input-group .button-plus,
.number .input-group .quantity-field {
  height: 40px;
}

.prd_images {
  padding: 4px;
  /* width: 70%; */
  /* border: 1px solid #e1e1e1; */
}

.prd_images .owl-item img {
  /* max-width: 350px; */
  height: 330px;
  width: 100%;
  object-fit: contain;
  object-position: center center;
  margin: auto;
}
#sync1 .item {
  width: 100% !important;
}
.prd_images .item {
  /* border-bottom: 1px solid #c3c3c3; */
  padding: 8px;
}

.detail_page .container.normal {
  max-width: 1400px !important;
}

.detail_page .prd_desc {
  padding-left: 30px;
}

.detail_page .prd_desc h2 {
  font-size: 23px;
  margin-bottom: 10px;
}

.prd_desc {
  margin-bottom: 80px;
}

.prd_desc span.ratings {
  color: #e3e3e3;
  font-size: 16px;
}

.prd-price {
  font-weight: 700;
  font-size: 25px;
}

.prd-price del {
  color: #aaaaaa;
  font-weight: 300;
  font-size: 23px;
  margin-right: 12px;
}

p.highlight-text {
  font-size: 18px;
  background: var(--green);
  display: inline-block;
  padding: 5px 15px;
  color: #fff;
}

.number {
  display: inline-block;
}

.detail-addtocart .add-cart a {
  display: inline-block;
  margin-left: 20px;
  background: var(--green);
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 18px;
  min-width: 200px;
  text-align: center;
  margin-bottom: 5px;
}

.detail-addtocart .add-cart a:hover {
  background: #000;
  color: #fff;
}

.tab-content {
  padding: 20px;
}

.tab-content h2 {
  font-size: 27px;
  font-weight: 700;
}

.tab-content h4 {
  font-size: 16px;
  font-weight: 700;
}

.nav-tabs .nav-link {
  color: #000;
  font-size: 17px;
}

.nav-tabs .nav-link.active {
  background: var(--green);
  color: #fff;
}

/*Login page*/
/*--------------------------*/
.login_box {
  width: 90%;
  margin: 0 auto 70px;
  display: block;
  padding: 5% 0;
}

.login-pass {
  position: absolute;
  top: 30%;
  right: 20px;
  font-size: 20px;
  color: var(--green);
}

.login-pass .bx-show-alt {
  color: red;
}

.login_box p {
  margin: 0 !important;
}

.login_box p a {
  color: var(--green) !important;
  font-weight: 400;
}

.login_box .view-all {
  padding: 8px 27px 8px 27px;
  font-size: 13px;
}

.login_box hr {
  margin: 0 !important;
}

input.form-control:focus {
  box-shadow: none;
  border-collapse: #000;
}

.cart_updated {
  background: #e7efe2;
  padding: 15px 20px;
  border-radius: 5px;
}

.cart_updated i {
  color: var(--green);
  background-color: #fff;
  text-align: center;
  -webkit-box-shadow: 0 4px 10px 0 rgba(198, 198, 198, 0.75);
  box-shadow: 0 4px 10px 0 rgba(198, 198, 198, 0.75);
  width: 34px;
  height: 34px;
  font-size: 18px;
  line-height: 34px;
  border-radius: 50%;
  margin-right: 12px;
}

.table thead tr {
  background-color: #f8f8f8;
  border-radius: 4px;
}

.table thead tr th {
  border: none;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 600;
  color: #111;
  padding: 16px 12px;
  text-align: left;
}

.book-table .table thead tr th {
  background-color: #212121;
  color: #fff !important;
  font-size: 14px;
  padding: 12px 10px;
  border-right: 1px solid #434242;
}

tr.tr-divide {
  background: #fffae8;
}

.table tbody tr td {
  /*    border: none;*/
  padding: 10px 12px;
  color: #111;
  font-size: 14px;
  line-height: 1.3;
  text-align: left;
  vertical-align: middle;
}

td.remove i {
  display: block;
  font-size: 20px;
  color: #111 !important;
  border: 1px solid #c2c2c2;
  height: 30px;
  width: 30px;
  line-height: 31px;
  text-align: center;
  border-radius: 50%;
  font-weight: 400;
}

th.time-slots {
  background: #86c342;
  font-size: 14px;
}

table td img {
  width: 50px;
  margin-right: 15px;
  height: auto;
}

.table tbody tr td.item-total {
  font-weight: 600;
}

.order-summary h3 {
  font-size: 24px;
}

.coupon_code input {
  margin: 0;
  padding: 8px 25px;
  width: 100%;
  border-radius: 30px;
  font-size: 16px;
  line-height: 1.3;
  height: 50px;
}

.coupon_code .theme-btn {
  background: var(--green);
  padding: 4px 20px;
  border-radius: 4px;
  text-transform: uppercase;
  height: 50px;
  border-radius: 30px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  line-height: 1;
  font-weight: 600;
  margin: 0;
}

.row.cart-prd {
  padding: 0 12px;
  margin-top: 20px;
}

.order-summary {
  margin-bottom: 70px;
}

.order-summary .row {
  margin: 15px 0;
}

.order-summary #grand-total-detail {
  margin-top: 15px;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-bottom: 20px;
  font-size: 18px;
  background-color: var(--green);
  font-weight: 600;
  color: #fff;
}

.proceed {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.applied_coupon {
  margin-top: 15px;
}

.proceed .continue-btn {
  color: #000;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  padding: 10px 30px;
  display: block;
  background: transparent;
  border-radius: 40px;
  border: 1px solid #000;
  transition: 0.4s all;
}

.proceed .continue-btn:hover {
  background-color: var(--green);
  color: #fff;
  border-color: var(--green);
}

.proceed .checkout-btn {
  color: #fff;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  padding: 10px 40px;
  display: block;
  background: var(--green);
  border-radius: 40px;
  border: 1px solid var(--green);
}

/* .proceed:hover {
  background: var(--yellow);
} */
/* .proceed:hover a {
  color: #000;
} */
.breadcrumb-item.active {
  color: var(--green);
}

.list-group-item.active {
  background-color: var(--green);
  border-color: var(--green);
}

.list-group-item.active a {
  color: #fff;
}

.avatar_box {
  padding: 15px;
  align-items: center;
}

.avatar_box img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  margin-right: 12px;
}

.avatar_box .avatar_details {
  width: calc(100% - 84px);
}

.avatar_box h3 {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--green);
}

.avatar_box p {
  font-size: 13px;
  margin-bottom: 0;
}

.account_details .add_box {
  border-left: 1px solid #efefef;
  background: #f8f9fa;
  height: 100%;
  width: 100%;
  display: block;
  padding: 25px;
}

.link-primary {
  color: var(--green);
}

.btn-outline-primary {
  color: var(--green);
  border-color: var(--green);
  font-size: 15px;
}

.btn-outline-primary:hover {
  background-color: var(--green);
  border-color: var(--green);
}

.btn-sm.view-all {
  font-size: 12px;
  padding: 6px 20px;
}

@media screen and (min-width: 1400px) {
  .container {
    width: 96%;
    max-width: 1920px;
  }

  .container.mx-100 {
    max-width: 100%;
  }

  .products_list_box .item {
    width: 200px;
    max-height: 100%;
  }
}

@media screen and (min-width: 1600px) {
  .container {
    width: 94%;
    max-width: 1920px;
  }

  .prd-box .prd-img img {
    height: 220px;
  }

  .mx-100 .carousel .carousel-item img {
    height: 600px;
    object-fit: cover;
    width: 100%;
  }

  .sidebar {
    width: 300px;
  }

  .products_list_box {
    width: calc(100% - 300px);
  }

  /*    .products_list_box .item {  width: 13%;  }*/
}

@media screen and (min-width: 1900px) {
  .sidebar {
    width: 300px;
  }

  .products_list_box {
    width: calc(100% - 300px);
  }

  .products_list_box .item {
    width: 13%;
  }
}

@media screen and (max-width: 1400px) {
  .container {
    width: 100%;
    max-width: 100%;
  }

  .container.mx-100 {
    max-width: 100%;
  }

  .mx-100 .carousel .carousel-item img {
    height: 425px;
  }

  .usps {
    margin-top: 40px;
  }

  .container.secs.healthy {
    padding: 0 24px;
  }
}

@media screen and (max-width: 1280px) {
  .healthy .col {
    padding: 0;
  }

  .healthy .row {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .healthy .col {
    padding: 1px;
    margin: 1%;
    flex: 0 0 15%;
  }
}

@media screen and (min-width: 992px) and (max-width: 1280px) {
  body,
  .menubar nav .navbar-nav .nav-link,
  p.highlight-text {
    font-size: 14px;
  }

  .menubar .store i,
  .detail-addtocart .add-cart a {
    font-size: 16px;
  }

  .menubar .store a.me-3 {
    margin-right: 5px !important;
  }

  .menubar nav .navbar-nav .nav-link {
    margin: 0;
    padding: 6px 4px;
  }

  .owl-thumb-item {
    margin: 0 2%;
  }

  .owl-thumb-item img {
    height: 80px;
  }

  .number .input-group .button-minus,
  .number .input-group .button-plus,
  .number .input-group .quantity-field {
    height: 35px;
  }

  .products_list_box .item {
    width: 20%;
  }

  .mx-100 .carousel .carousel-item img {
    height: 375px;
  }
}

@media all and (min-width: 992px) and (max-width: 1215px) {
  .products_list_box .item {
    width: 25%;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .offer p {
    flex-direction: column;
  }
  body,
  .menubar nav .navbar-nav .nav-link,
  p.highlight-text {
    font-size: 14px;
  }

  .owl-thumbs {
    position: static;
  }

  .owl-thumb-item {
    margin: 0 2%;
  }

  .owl-thumb-item img {
    height: 60px;
  }

  .number .input-group .button-minus,
  .number .input-group .button-plus,
  .number .input-group .quantity-field {
    height: 35px;
  }

  .detail-addtocart .add-cart a {
    min-width: 195px;
  }

  .detail_page .row.pb-5 {
    padding-bottom: 15px !important;
  }

  .detail_page .prd_desc h2 {
    font-size: 25px;
  }

  .nav-tabs .nav-link {
    font-size: 15px;
  }

  .tab-content {
    padding: 20px 5px 0;
  }

  .detail_page .prd_desc {
    margin-bottom: 0px;
  }

  footer h2 {
    font-size: 16px;
  }

  .secs {
    padding-top: 30px;
  }

  .logo {
    max-width: 165px;
  }

  .search {
    max-width: 57%;
    margin: 0 0 0 3%;
  }

  .side_links {
    max-width: calc(60% - 210px);
    margin-left: auto;
  }

  .logo_header .row .search {
    order: 3;
    margin: 0;
    max-width: 84%;
  }

  .navbar-toggler {
    background-color: #86c342;
    float: right;
    margin-top: -60px;
    padding: 2px 4px;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  i.bx.bx-menu-alt-right {
    font-size: 28px;
    color: #976325;
  }

  .products_list_box .item {
    width: 28%;
  }

  .products_list_box {
    width: calc(100% - 118px);
    padding-left: 1px;
  }

  .mx-100 .carousel .carousel-item img {
    height: 315px;
  }
}

@media all and (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: none;
    box-shadow: 4px 5px 14px #0000001c;
  }

  .navbar .nav-item:hover .nav-link {
  }

  .navbar .nav-item:hover .dropdown-menu {
    display: block;
    max-height: 400px;
    /* overflow-y: scroll; */
  }

  .navbar .nav-item:hover .dropdown-menu::-webkit-scrollbar {
    width: 5px;
  }

  .navbar .nav-item:hover .dropdown-menu::-webkit-scrollbar-track {
    background: #ffffff00;
  }

  .navbar .nav-item:hover .dropdown-menu::-webkit-scrollbar-thumb {
    background: #86c342;
  }

  .navbar .nav-item:hover .dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #86c342;
  }

  .navbar .nav-item .dropdown-menu {
    margin-top: 0;
  }

  .navbar .nav-item .dropdown-menu li a {
    /* border-bottom: 1px solid #efefef; */
    padding: 8px 14px 8px 3px;
    display: inline-block;
    font-size: 15px;
    text-transform: capitalize;
  }

  .navbar .nav-item .dropdown-menu li a:hover {
    color: var(--green);
    background: #fff;
  }

  .dropdown-toggle::after {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .mt-4 {
    margin-top: 0.5rem !important;
  }

  .mt-5 {
    margin-top: 30px !important;
  }

  body {
    font-size: 14px;
  }

  .topbar {
    padding: 4px;
    font-size: 12px;
  }

  .navbar-toggler {
    background-color: #86c342;
    float: right;
    margin-top: -53px;
    padding: 2px 4px;
    margin-right: -6px;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  i.bx.bx-menu-alt-right {
    font-size: 28px;
    color: #ffe797;
  }

  .logo_header {
    padding: 13px 12px 0px 8px;
  }

  .logo_header .row .search {
    order: 3;
    margin: 0;
    max-width: 84%;
  }

  .logo {
    max-width: 135px;
    padding: 0;
  }

  .side_links {
    max-width: calc(100% - 135px);
  }

  .side_links .login {
    margin-right: 12px;
    font-size: 13px;
  }

  .side_links,
  .side_links .icons {
    font-size: 15px;
    padding: 1px;
  }

  .search .form-control {
    height: 35px;
    margin-top: 8px;
    font-size: 14px;
    padding: 5px 15px;
  }

  .search .btn {
    height: 35px;
    line-height: 24px;
    font-size: 18px;
    top: 8px;
  }

  .add_cnt {
    width: 14px;
    height: 14px;
    font-size: 8px;
  }

  .pct-desc {
    font-size: 14px;
  }

  p.sub-total {
    font-size: 15px;
  }

  .cart_card a.view-all {
    padding: 5px 18px;
    font-size: 12px;
  }

  .cart_card ul {
    max-height: 230px;
  }

  .search-results {
    padding: 4px;
    overflow-x: hidden;
    width: 120%;
  }

  .search-results li img {
    width: 60px;
    height: 60px;
    margin-right: 4px;
  }

  .search-results .pct-desc {
    max-width: 100%;
    min-width: 100px;
  }

  .search-results .pct-desc p,
  .search-results .pct-desc span {
    font-size: 12px;
  }

  .search-results .btn.view_prd {
    font-size: 18px;
    text-align: right;
  }

  .mx-100 .carousel .carousel-item img {
    height: 140px;
  }

  .secs {
    padding-top: 20px;
  }

  .sec_title {
    font-size: 18px;
    padding: 0 0 4px 0;
    margin-bottom: 10px;
  }

  .prd-box .prd-desc span.prd-name {
    line-height: 18px;
    margin-bottom: 15px;
    height: 50px;
  }

  .prd-box .prd-desc span.ratings {
    color: #e3e3e3;
    font-size: 10px;
    margin-top: 0px;
  }

  .add_to_cart {
    right: 6px;
  }

  .prd-box {
    padding: 6px 10px;
    height: 330px;
    max-height: 320px;
  }

  .prd-box .prd-img img {
    height: 125px;
  }

  .prd-box .prd-desc del {
    font-size: 10px;
  }

  .owl-theme .owl-nav [class*="owl-"] {
    width: 28px;
    height: 28px;
  }

  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next {
    font-size: 18px;
    line-height: 31px;
  }

  .view-all,
  .shop-btn,
  .offer-box .shop-btn {
    font-size: 12px;
    padding: 5px 18px;
    line-height: 24px;
  }

  .btn_wrapper {
    margin: 20px 0;
  }

  .cat-box {
    width: 110px;
    height: 110px;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .cat-box .category-icon img {
    width: 100%;
    scale: 1.2;
  }

  span.d-block.catgory-name {
    font-size: 12px;
    line-height: 1.35;
  }

  .container.secs.healthy {
    padding: 30px 12px 10px;
  }

  .container.secs.healthy .row {
    margin: 0 -5px;
  }

  .healthy .col img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border: 2px solid #976325;
  }

  .healthy .col {
    padding: 1px;
    margin: 1%;
    flex: 0 0 23%;
  }

  .offer-box {
    overflow: hidden;
    height: 200px;
    padding: 15px;
    margin-bottom: 15px;
  }

  .offer-box h3 {
    font-size: 20px;
  }

  .offer-box h4 {
    font-size: 15px;
  }

  .offer {
    padding: 15px 12px;
  }

  .offer .bx-md {
    font-size: 1.5rem !important;
  }

  .offer p {
    font-size: 13px;
    flex-direction: column;
  }

  .brands .col,
  .brands .item {
    padding: 12px 5px;
  }

  .c_details:before {
    display: none;
  }

  .usps {
    margin-top: 20px;
    padding: 15px 0;
  }

  .usps img {
    width: 48px;
  }

  .usps h3 {
    font-size: 14px;
  }

  .usps p {
    font-size: 12px;
  }

  footer {
    padding: 30px 0;
  }

  footer p,
  footer ul li a,
  footer p a,
  footer ul li {
    font-size: 13px;
    color: #000000;
  }

  .footer .row ul {
    margin-bottom: 15px;
  }

  footer form input.form-control {
    height: 40px;
    font-size: 14px;
  }

  .subcribe {
    font-size: 12px;
  }

  .copyrights {
    margin-top: 30px;
  }

  .copyrights .text-start {
    text-align: center !important;
  }

  .copyrights img {
    margin-top: 12px;
  }

  .cart-prd-table .table thead,
  .cart-prd-table .table tr td img {
    display: none !important;
  }

  .cart-prd-table .table tr td {
    display: block;
    text-align: right !important;
    border: 0px;
  }

  .cart-prd-table td.remove i,
  .cart-prd-table table .quantity {
    margin-left: auto;
  }

  .cart-prd-table .table tbody tr {
    border: 1px solid #dfdfdf;
    margin-bottom: 20px;
    padding: 14px 10px;
    display: block;
  }

  .cart-prd-table .table tbody tr td {
    padding: 8px 12px;
    font-size: 14px;
  }

  .cart-prd-table td.remove i {
    height: 30px;
    width: 30px;
    line-height: 28px;
    font-size: 20px;
  }

  .cart-prd-table .table tbody tr td[title="Quantity"] {
    display: flex;
    align-items: center;
  }

  .cart-prd-table table tr td:not(:first-child)::before {
    content: attr(title) " : ";
    font-weight: 700;
    float: left;
  }

  .cart-prd-table td .d-block {
    width: 70%;
    margin-left: auto;
  }

  .container-fluid.coupon_code {
    border: 1px solid #ccc;
    padding: 15px 20px;
    border-radius: 4px;
  }

  .proceed a {
    font-size: 13px;
    padding: 14px;
  }

  .coupon_code input {
    font-size: 13px;
    padding: 8px 15px;
    height: 40px;
  }

  .coupon_code .theme-btn {
    font-size: 12px;
    padding: 5px 16px;
    height: 40px;
  }

  button.btn.theme-btn.mb-3.w-sm-100 {
    width: 100%;
    margin-bottom: 0px !important;
  }

  .listing_wrapper .col-12.d-flex,
  .account_page .col-12.d-flex {
    flex-direction: column;
  }

  .products_list_box,
  .account_details {
    width: 100%;
    padding-left: 0;
  }

  .products_list_box .item {
    width: 45%;
  }

  .list_page .healthy .row {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .sidebar {
    width: 82%;
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 999;
    transition: all 0.3s;
    height: 100vh;
    overflow: auto;
  }

  .sidebar.open {
    left: 0;
    z-index: 999;
  }

  .sidebar a.btn-category {
    padding: 0 0 5px;
    font-size: 13px;
  }

  .owl-thumbs {
    position: static;
  }

  .owl-thumb-item {
    margin: 0 2%;
  }

  .owl-thumb-item img {
    height: 68px;
  }

  .prd_images .owl-item img {
    height: 245px;
    object-fit: contain;
  }

  .detail_page .prd_desc {
    padding-left: 0;
    margin-top: 20px;
    margin-bottom: 0;
  }

  .detail_page .prd_desc h2,
  .prd-price,
  .tab-content h2 {
    font-size: 21px;
  }

  .prd-price del {
    font-size: 18px;
  }

  p.highlight-text,
  .nav-tabs .nav-link {
    font-size: 12px;
  }

  .table tbody tr td {
    font-size: 14px;
  }

  .detail-addtocart {
    flex-wrap: wrap;
    gap: 0 15px;
  }

  .detail-addtocart .add-cart,
  .detail-addtocart .add-cart a {
    width: 100%;
    margin-left: 0;
  }

  .detail-addtocart .add-cart {
    display: flex;
    gap: 6px;
  }

  .detail-addtocart .addToCart a {
    width: 260px;
  }

  .number .input-group .button-minus,
  .number .input-group .button-plus,
  .number .input-group .quantity-field {
    height: 30px;
    font-size: 14px;
  }

  .pb-5 {
    padding-bottom: 20px !important;
  }

  .prd_sepcs .pe-5 {
    padding-right: 0px !important;
  }

  .nav-tabs .nav-link {
    padding: 5px 10px;
  }

  .tab-content {
    padding: 10px;
  }
}

@media screen and (max-width: 420px) {
  body {
    font-size: 13px;
  }

  .products_list_box .item {
    width: 46%;
  }
}

.banner {
  height: 500px;
}

.banner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.disabled {
  opacity: 0.8;
  pointer-events: none;
}

.flex-1 {
  flex: 1;
}

.flex-2 {
  flex: 2;
}

/* ------quantity--------- */

.search-results .col-lg-1.text-center {
  padding: 0 !important;
}

.search-results .quantity {
  border: 1px solid #dddddd;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  overflow: hidden;
  display: flex;
  width: 105px;
  margin: auto;
}

.search-results .quantity .input-group-btn {
  display: flex;
  flex: 0 0 30px;
}

.search-results .quantity .input-group-btn .quantity-btn {
  width: 27px;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  font-size: 0.875rem;
  color: #a3a3a3;
}

.quantity .input-group-btn .quantity-btn.quantity-plus {
  border-width: 0 0 0 1px;
}

.quantity .input-group-btn .quantity-btn.quantity-minus {
  border-width: 1px 0 0 1px;
}

.quantity .qty {
  -webkit-box-shadow: none;
  box-shadow: none;
  height: 48px;
  text-align: center;
  padding: 1px;
  background-color: #fff;
  font-size: 16px;
  line-height: 1;
  color: #000;
  width: 50px;
  outline: 0;
  margin: 0;
  border: none;
  border-right: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
}

.quantity input[type="number"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#searched-item-List .col-lg-2.text-center {
  font-size: 14px;
}

#searched-item-List .search-price {
  font-size: 14px;
}

a.sign-up.view-all.d-block {
  background-color: transparent !important;
  border: 1px solid #e1e1e1;
  color: #000;
  margin-bottom: 10px;
}

a.sign-up.view-all.d-block:hover {
  background-color: var(--green);
}

.account_page .sidebar .list-group-item {
  padding: 6px 6px !important;
}

.container.normal.secs {
  padding-top: 10px;
}

.container.secs.listing_wrapper {
  padding-top: 0;
}

.brd_heading {
  font-size: 22px;
  text-align: center;
  padding: 13px 0;
  font-weight: 600;
}

.checkout-prd {
  width: 90%;
  margin-left: auto;
}

.order-summary.rounded.shadow,
.order-summary.rounded.border {
  border-radius: 20px !important;
  padding: 20px;
  background-color: #f6f6f6;
  box-shadow: none !important;
}

.order-summary.rounded.shadow .bg-light {
  background-color: #f6f6f6 !important;
  background-color: #f6f6f6 !important;
  border-radius: 20px 20px 0 0 !important;
  text-align: left !important;
  padding-top: 0px !important;
  padding-left: 7px !important;
}

.proceed #submitBtn {
  color: #000;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  padding: 10px 30px;
  display: block;
  background: transparent;
  border-radius: 40px;
  border: 1px solid #000;
  transition: 0.4s all;
  width: 100%;
}

.proceed #submitBtn:hover {
  background-color: var(--green);
  color: #fff;
  border-color: var(--green);
}

.checkout-prd .order-summary h3 {
  font-size: 24px;
  text-align: left !important;
  padding: 0 0 10px 0 !important;
  background-color: #f6f6f6 !important;
}

.book-a-time {
  background: #86c342;
  padding: 9px 15px;
  border-radius: 5px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff !important;
  font-weight: 500;
}

.book-a-time i {
  font-size: 23px;
}

.my-cart {
  background: #86c342;
  padding: 9px 12px;
  border-radius: 5px;
}

.my-cart i {
  color: #fff;
}

.my-cart .cart-text {
  font-size: 14px;
  display: none;
}

.header-top-left.text-right > li {
  display: inline-block;
  background: #000;
  border-radius: 4px;
  padding-bottom: 3px;
}

.header-top-left.text-right > li a {
  color: #fff !important;
  padding: 1px 10px;
}

.header-top-left button:focus {
  box-shadow: none !important;
}

.header-top-left .dropdown-item:hover {
  background-color: #86c342 !important;
}

ul.header-top-left.w-100.text-right.mb-0 {
  display: flex;
  justify-content: end;
  gap: 10px;
}

.logo_header {
  position: sticky;
  top: -1px;
  z-index: 999;
}

/* .cat-box .catgory-name {
    word-break: break-all;
} */
.cart-image-wrapper {
  display: flex;
}

.menu-item {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
}

/* .menubar .dropdown-item{
    padding: .25rem .5rem;
}
.menu-item {
    padding: 0 .5rem;
} */
#sync1 {
  border: 1px solid #e1e1e1;
}

#sync2 .owl-item .item {
  border: 1px solid #e1e1e1;
}
#sync2 .owl-item img {
  height: 70px;
  width: -webkit-fill-available;
}

@media screen and (max-width: 767px) {
  .quantity .qty {
    height: 35px;
    width: 55px;
  }

  .quantity .input-group-btn .quantity-btn {
    width: 40px;
  }

  .prd-box .prd-desc .price {
    display: block;
    width: 30%;
  }

  .banner {
    height: 150px;
    object-fit: cover;
  }

  .prd-box .prd-desc span.prd-name a {
    font-size: 14px;
  }

  .menubar {
    border-bottom: none;
    background-color: #ffffff00;
    margin-top: 8px;
  }

  .logo_header a {
    color: #ffffff;
  }

  .logo_header a.dropdown-item {
    padding: 9px 0px !important;
  }

  .logo_header .dropdown-menu a.dropdown-item {
    padding: 9px 10px !important;
    color: #000;
  }

  .logo_header .nav-item {
    border-bottom: 1px solid #ffffff52;
    width: 100%;
    position: relative;
  }

  .logo_header .nav-link.dropdown-toggle {
    padding: 11px 0 !important;
  }

  .menu-item i {
    margin-left: auto;
    font-size: 20px;
    position: absolute;
    right: 0;
    top: 11px;
    width: 47px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* color: #fff; */
  }

  .logo_header .dropdown-toggle::after {
    display: none !important;
  }

  .menubar nav .navbar-nav .nav-link {
    /* color: #fff; */
    margin: 0;
    display: flex;
  }

  .menubar .navbar-nav.align-items-center {
    align-items: start !important;
  }

  .dropdown-menu.show a.dropdown-item {
    padding: 4px 10px !important;
    color: #000;
  }

  .store.ms-auto.me-0.d-flex.align-items-center {
    padding: 20px 12px;
    background: #212121;
  }

  .cart_card {
    width: 92vw;
  }

  .cart_card ul {
    max-height: 230px;
    display: block;
  }

  .d-flex.cart___wrapper {
    display: block !important;
  }

  .d-flex.qty-right {
    margin-top: 10px;
  }

  .book-a-time {
    background: #86c342;
    padding: 7px 15px;
  }

  .prd_images .item {
    border: 1px solid #c3c3c3;
    padding: 0px;
    /* margin: 17px 11px 0;*/
  }

  .cart_card img {
    width: 70px;
    height: 70px;
  }

  .checkout-prd {
    width: 100%;
    margin-left: auto;
  }

  .proceed .continue-btn {
    font-size: 13px;
    padding: 10px 9px;
    width: 100%;
  }

  .order-summary.rounded.shadow,
  .order-summary.rounded.border {
    padding: 20px 15px;
  }

  .view-mode {
    display: none;
  }

  .sidebar ul.list-group {
    padding: 0 10px;
  }

  .sidebar .list-group-item {
    padding: 6px 10px !important;
  }

  .address .header-top-left {
    display: flex;
    gap: 5px;
  }
  .dropdown-menu {
    font-size: 13px;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .menubar {
    border-bottom: 0px solid #e8e6e6;
    background-color: #000;
    /*  margin-top: 20px;*/
  }
  .menubar .dropdown-menu {
    background-color: #000;
  }
  .menubar .dropdown-menu li {
    border-bottom: 1px solid #ffffff52;
  }

  .logo_header .row .search {
    margin-top: 15px;
  }

  .menubar .nav-item a {
    color: #fff;
  }

  .menubar nav .navbar-nav .nav-link {
    color: #fff;
  }

  .menubar .navbar-nav.align-items-center {
    align-items: start !important;
  }

  .store.ms-auto.me-0.d-flex.align-items-center {
    padding: 20px 12px;
    background: #212121;
  }

  .menubar nav .navbar-nav .nav-link {
    color: #fff;
    margin: 0;
    display: flex;
  }

  .logo_header a.dropdown-item {
    padding: 9px 0px !important;
  }

  .logo_header .dropdown-menu a.dropdown-item {
    padding: 9px 10px !important;
    color: #000;
  }

  .logo_header .nav-item {
    border-bottom: 1px solid #ffffff52;
    width: 100%;
    position: relative;
  }

  .logo_header .nav-link.dropdown-toggle {
    padding: 11px 0 !important;
  }

  .menu-item i {
    margin-left: auto;
    font-size: 20px;
    position: absolute;
    right: 0;
    top: 11px;
    width: 47px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
  }

  .logo_header .dropdown-toggle::after {
    display: none !important;
  }

  .menubar nav .navbar-nav .nav-link {
    color: #fff;
    margin: 0;
    display: flex;
    padding-left: 10px;
  }

  .menubar .navbar-nav.align-items-center {
    align-items: start !important;
  }

  .dropdown-menu.show a.dropdown-item {
    padding: 4px 10px !important;
    color: #000;
  }

  .store.ms-auto.me-0.d-flex.align-items-center {
    padding: 20px 12px;
    background: #212121;
  }

  .store a {
    color: #fff;
  }

  .banner {
    height: 100%;
  }

  .prd-box .prd-desc .price {
    display: block;
  }
}

@media screen and (min-width: 992px) and (max-width: 1061px) {
  .search {
    max-width: 35%;
    margin: 0 5%;
  }

  .side_links {
    max-width: calc(44% - 210px);
  }
}

@media screen and (min-width: 992px) and (max-width: 1280px) {
  .prd-box .prd-desc .price {
    font-size: 13px;
  }

  .prd-box .prd-desc del {
    font-size: 12px;
  }

  .prd-box {
    padding: 12px 6px;
  }

  .qty-list .button-plus,
  .qty-list .button-minus {
    width: 27px !important;
    height: 25px !important;
  }

  .qty-list.input-group .quantity-field {
    height: 25px !important;
    width: 27px !important;
    font-size: 12px;
  }

  .search-btn-cart {
    margin-right: 4px;
    padding: 5px 11px;
  }

  .cart_card .pct-desc p {
    font-size: 13px;
  }

  .pct-desc span {
    font-size: 13px;
  }

  #searched-item-List .search-price {
    font-size: 12px;
  }

  #searched-item-List .col-lg-2.text-center {
    font-size: 12px;
  }

  .search-results .pct-desc p {
    color: #313131;
    font-size: 12px;
  }

  .quantity {
    width: 90px !important;
  }

  .search-results .quantity .qty {
    font-size: 13px !important;
    width: 30px !important;
  }

  .quantity .input-group-btn {
    display: flex;
    flex: 0 0 20px !important;
  }

  .quantity .input-group-btn .quantity-btn {
    width: 30px !important;
    height: 25px;
  }

  .search-results .quantity .qty {
    height: 25px;
    font-size: 12px;
  }

  .search-btn-cart {
    margin-right: 10px;
  }

  .cart_card .pct-desc p {
    font-size: 12px;
  }

  .pct-desc span {
    font-size: 12px;
  }

  .cart_card {
    width: 50vw;
  }

  .cart_card .price {
    font-size: 12px;
    margin: 0 18px;
    width: 100px;
    font-weight: 600;
  }

  .cart_card img {
    width: 30px;
  }

  .cart-prd-table .quantity {
    width: 117px !important;
  }
}

@media screen and (min-width: 1199px) and (max-width: 1280px) {
  .cart_card .pct-desc p {
    font-size: 12px;
  }

  .pct-desc span {
    font-size: 12px;
  }

  .cart_card {
    width: 40vw;
  }

  .cart_card .price {
    font-size: 12px;
    margin: 0 18px;
    width: 100px;
    font-weight: 600;
  }

  .proceed .continue-btn {
    font-size: 12px;
    padding: 13px 19px;
  }

  .proceed .checkout-btn {
    font-size: 12px;
    padding: 13px 40px;
  }

  .navbar .nav-item .dropdown-menu li a {
    font-size: 13px;
  }

  .navbar .nav-item:hover .dropdown-menu {
    display: block;
    max-height: 300px;
    /* overflow-y: scroll; */
  }
}

@media screen and (min-width: 1280px) and (max-width: 1399px) {
  .prd-box .prd-desc span.prd-name a {
    font-size: 14px;
  }

  #searched-item-List .search-price {
    font-size: 13px;
  }

  #searched-item-List .col-lg-2.text-center {
    font-size: 13px;
  }

  .search-results .pct-desc p {
    color: #313131;
    font-size: 13px;
  }

  .search-results .quantity .qty {
    font-size: 13px !important;
    width: 30px !important;
  }

  .quantity {
    width: 95px;
  }

  .search-btn-cart {
    margin-right: 10px;
  }

  .cart_card .pct-desc p {
    font-size: 13px;
  }

  .pct-desc span {
    font-size: 13px;
  }

  .cart_card {
    width: 40vw;
  }

  .prd-box .prd-desc .price {
    font-size: 14px;
  }

  .products_list_box .item {
    width: 20%;
  }
}

@media screen and (min-width: 1600px) and (max-width: 3200px) {
  .mx-100 .carousel .carousel-item img {
    height: 80vh;
  }

  .banner {
    height: 55vh;
  }

  .products_list_box .item {
    width: 210px !important;
    max-height: 100%;
  }
}

@media screen and (min-width: 1800px) and (max-width: 3200px) {
  .menubar .dropdown-item {
    padding: 0.25rem 1.6rem;
  }

  .menu-item {
    padding: 0 1.6rem;
  }

  .cat-box {
    /* padding: 8px; */
    width: 180px;
    height: 180px;
  }

  .cat-box .category-icon img {
    /* margin-top: 20px !important; */
  }

  .logo_header a {
    font-size: 20px;
  }

  .nav-item.dropdwn-item .menu-item {
    padding: 0rem;
  }

  .navbar .nav-item .dropdown-menu li a {
    font-size: 18px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1024px) {
  .search-results .pct-desc p {
    font-size: 10px;
  }

  #searched-item-List .col-lg-2.text-center {
    font-size: 10px;
  }

  #searched-item-List .search-price {
    font-size: 10px;
  }

  .search-btn-cart {
    margin-right: 0px;
  }

  .search-results li img {
    width: 57px;
    height: 27px;
  }
}

@media screen and (min-width: 1060px) and (max-width: 1180px) {
  .search {
    max-width: 45% !important;
    margin: 0 5%;
  }

  .side_links {
    max-width: calc(40% - 210px) !important;
  }
}

.view-mode {
  margin-bottom: 20px;
  display: flex;
}

.view-mode .rango-view-grid-container,
.rango-view-list-container {
  line-height: 36px;
  width: 45% !important;
  margin-right: 4%;
}

.view-mode .rango-view-grid-container,
.rango-view-list-container {
  width: auto !important;
  height: 36px;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.83);
  padding: 0 8px !important;
  display: inline-block;
  border-radius: 4px;
  box-shadow: 0px 0px 5px grey;
  background: #fff;
}

span.rango-view-grid.fs24.grdl,
span.rango-view-list.fs24.grdl {
  font-size: 18px;
  top: 2px;
}

.view-mode .rango-view-list-container.active {
  color: #fff;
  background-color: #86c342;
}

.rango-view-grid-container.active {
  background: #86c342;
  color: #fff;
}

.grid_product {
  border-bottom: 1px solid #e1e1e1;
}

@media screen and (max-width: 767px) {
  .grid_image {
    border: 1px solid #e1e1e1;
    margin-bottom: 20px;
  }

  .grid_image img {
    height: 200px;
    width: 100%;
    object-fit: contain;
  }

  /* .product_grid_pricing {
        padding: 20px 0px 20px 0px;
    } */
  .grid_product {
    padding: 0 12px;
  }
}

@media screen and (min-width: 1400px) and (max-width: 1480px) {
  .prd-box {
    padding: 12px 6px;
  }

  .prd-box .prd-desc .price {
    font-size: 14px;
  }
}

/*----------- contact  -------------*/
.contact_wrapper {
  padding: 40px 20px;
}

.contact_wrapper_1 {
  border-left: 1px solid #c5c5c5;
  padding: 40px;
}

.contact_wrapper h5 {
  border-bottom: 1px solid #c5c5c5;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 20px;
}

.contact_wrapper th {
  width: 130px;
  font-size: 14px;
  padding: 3px 0;
}

.contact_wrapper_1 .input-group label {
  margin-bottom: 5px;
  font-weight: 600;
}

.contact_wrapper_1 .input-group input {
  width: 100%;
  height: 50px;
  border-radius: 5px;
  outline: none;
  border: 1px solid #e1e1e1;
  padding-left: 15px;
}

.contact_wrapper_1 .input-group textarea {
  width: 100%;
  border-radius: 5px;
  outline: none;
  border: 1px solid #e1e1e1;
  padding: 15px;
}

@media screen and (max-width: 767px) {
  .contact_wrapper {
    padding: 20px 20px;
  }

  .contact_wrapper_1 {
    border-left: 1px solid #c5c5c5;
    padding: 20px 20px;
    background-color: #fff;
  }
}

.cart_grid_view .quantity {
  width: 100% !important;
}

.cart_grid_view .quantity .input-group-btn .quantity-btn {
  width: 26px !important;
  height: 100%;
  font-size: 14px;
}

.cart_grid_view .quantity .input-group-btn {
  display: flex;
  flex: 0 0 17px !important;
  height: 30px !important;
}

.cart_grid_view .quantity .qty {
  height: 30px !important;
  width: 40px !important;
}

@media screen and (max-width: 767px) {
  .view-mode {
    display: none;
  }

  .sidebar.open .dropdown {
    padding: 0 10px !important;
  }

  #sync2 .owl-item img {
    height: 100%;
    border: 0.5px solid #e1e1e1;
  }
}

@media screen and (min-width: 1380px) and (max-width: 1462px) {
  #searched-item-List .col-lg-2.text-center {
    font-size: 12px !important;
  }

  .search-btn-cart {
    margin-right: 4px;
    padding: 5px 8px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1148px) {
  #searched-item-List .col-lg-2.text-center {
    font-size: 12px !important;
    margin-right: 0;
  }

  .search-btn-cart {
    /* margin-right: 4px;
        padding: 5px 8px; */
    margin-right: 0px;
    padding: 5px 10px;
    font-size: 9px;
  }
}

.modal-content {
  border-radius: 40px !important;
  background-color: #fff !important;
  border: none !important;
  padding: 0 !important;
}

.card.crt-time-modal {
  border: none !important;
  padding: 10px 30px 30px 30px !important;
}

.close {
  top: -20px !important;
  right: -30px !important;
}

.card.crt-time-modal h3 {
  border-bottom: 1px solid #e1e1e1 !important;
  padding: 5px 0 !important;
}

.card.crt-time-modal .slot-time {
  font-size: 17px !important;
  background: #e3ffd1 !important;
  padding: 8px 0 !important;
  border-radius: 5px;
}

.card.crt-time-modal i.bx.bxs-shopping-bag {
  background: #ffffff;
  padding: 20px;
  border-radius: 50px;
  color: #000;
  box-shadow: 0 2px;
}

@media screen and (max-width: 767px) {
  .card.crt-time-modal {
    border: none !important;
    padding: 10px 12px 30px 12px !important;
  }

  .close {
    top: -20px !important;
    right: -15px !important;
  }
}

.owl-theme .owl-nav .disabled {
  opacity: 1;
  cursor: default;
  z-index: 99999 !important;
  display: none;
}

.stock-out {
  display: inline-block;
  margin-left: 20px;
  background: red;
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 18px;
  min-width: 300px;
  text-align: center;
  margin-bottom: 5px;
}

.previewPane {
  cursor: crosshair;
}

#zoomer {
  display: none;
  background-repeat: no-repeat !important;
  border: 1px solid #ddd;
  width: 400px;
  height: 400px;
  position: absolute;
  top: 2%;
  right: -80%;
  border-radius: 5px;
  z-index: 5;
  background: #fff;
}

@media screen and (max-width: 767px) {
  #zoomer {
    display: none !important;
  }
}

.collapse.dropdown-menu {
  top: 100%;
}

.subcat-drop {
  display: none !important;
  transition: all 0.3s ease 0s;
  background: #fff;
  padding-top: 0;
  border-bottom: 1px solid #e1e1e1 !important;
  left: 100%;
}

.subsubcat-drop {
  display: none !important;
  transition: all 0.3s ease 0s;
  background: #fff;
  padding-top: 0;
  border-bottom: 1px solid #e1e1e1 !important;
  left: 100%;
}

.navbar .nav-item .nav-item.dropdwn-item:hover .dropdown-menu.subcat-drop {
  display: block !important;
  width: auto;
  top: 0;
}

.subcat-item:hover .subsubcat-drop {
  display: block !important;
  width: auto;
  top: 0;
}

.dropdown-menu i {
  margin-right: 10px;
}

.nav-item.dropdwn-item {
  border-bottom: 1px solid #e1e1e1;
}

.subcat-item {
  border-bottom: 1px solid #e1e1e1;
}

.navbar .nav-item .dropdown-menu {
  padding: 0 7px !important;
}

@media screen and (min-width: 1299px) and (max-width: 1440px) {
  .search {
    max-width: 45%;
  }
}

@media screen and (min-width: 1199px) and (max-width: 1299px) {
  .search {
    max-width: 43%;
    margin: 0 5%;
  }

  .side_links {
    max-width: calc(40% - 210px);
  }

  li.nav-item {
    position: relative;
    margin-right: 13px;
  }
}

@media screen and (min-width: 2299px) and (max-width: 3299px) {
}

/* new css  */

.exzoom .exzoom_img_box {
  background: #fff !important;
  position: relative;
  height: 320px !important;
}

.exzoom .exzoom_img_ul_outer {
  border: 1px solid #ddd;
  position: absolute;
  overflow: hidden;
  height: 320px !important;
}

.exzoom .exzoom_img_ul_outer .exzoom_img_ul li {
  list-style: none;
  display: inline-block;
  text-align: center;
  float: left;
  height: 320px !important;
}

.exzoom .exzoom_img_ul_outer .exzoom_img_ul li img {
  width: 100% !important;
  height: 320px !important;
  object-fit: contain;
}

.exzoom_zoom_outer {
  height: 320px !important;
}

/* .exzoom_zoom_outer {
    height: 320px !important;
    overflow: hidden !important;
} */

/* @media screen and (min-width: 2800px) and (max-width: 3200px) {
    .prd_images{
        width: 450px;
        overflow: hidden;
    }
}

@media screen and (min-width: 2000px) and (max-width: 2400px) {
    .prd_images{
        width: 450px;
        overflow: hidden;
    }
} */

@media only screen and (min-width: 1999px) and (max-width: 2399px) {
  .prd_images {
    padding: 4px;
    width: 70%;
  }
}
@media only screen and (min-width: 2400px) and (max-width: 2599px) {
  .prd_images {
    padding: 4px;
    width: 70%;
  }
}

@media only screen and (min-width: 2600px) and (max-width: 3299px) {
  .prd_images {
    padding: 4px;
    width: 70%;
  }
}
/* @media only screen and (min-width: 1999px) and (max-width: 2399px) {
    #sync1 {
        border: 1px solid #e1e1e1;
        width: 450px;
        height: 450px;
        margin: auto;
    }

    .prd_images .owl-item img {
        height: 400px;
        width: 100%;
        object-fit: cover;
        object-position: center center;
        margin: auto;
    }
    div#sync2 {
        display: flex;
        justify-content: center;
    }
}

@media only screen and (min-width: 2400px) and (max-width: 2599px) {
    #sync1 {
        border: 1px solid #e1e1e1;
        width: 450px;
        height: 450px;
        margin: auto;
    }

    .prd_images .owl-item img {
        height: 400px;
        width: 100%;
        object-fit: cover;
        object-position: center center;
        margin: auto;
    }
    div#sync2 {
        display: flex;
        justify-content: center;
    }
} */

/* @media only screen and (min-width: 2600px) and (max-width: 3299px) {
    #sync1 {
        border: 1px solid #e1e1e1;
        width: 450px;
        height: 450px;
        margin: auto;
    }

    .prd_images .owl-item img {
        height: 400px;
        width: 100%;
        object-fit: cover;
        object-position: center center;
        margin: auto;
    }
    div#sync2 {
        display: flex;
        justify-content: center;
    }
} */

@media only screen and (min-width: 1440px) and (max-width: 1458px) {
  .search {
    max-width: 47% !important;
  }
}
.dropdown-toggle::after {
  display: none !important;
}
@media only screen and (min-width: 993px) and (max-width: 1024px) {
  .menubar ul.navbar-nav {
    gap: 12px !important;
  }
}
@media only screen and (min-width: 991px) and (max-width: 1056px) {
  .header-top-left.text-right > li a {
    color: #fff !important;
    padding: 2px 8px;
    font-size: 13px;
  }
  .logo {
    max-width: 230px !important;
  }
  .menubar nav .navbar-nav .nav-link {
    font-size: 13px;
  }
  .menubar nav .navbar-nav .nav-link {
    gap: 6px !important;
  }
  .banner {
    height: auto !important;
  }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
  .products_list_box .item {
    width: 31% !important;
  }
}
@media only screen and (min-width: 991px) and (max-width: 992px) {
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .footer .col-lg-4 {
    width: 40% !important;
  }
  .footer .col-lg-8 {
    width: 60% !important;
  }
  nav.navbar.navbar-expand-lg.container.py-1 {
    padding: 0 !important;
    border: 0 !important;
    margin: 0 !important;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1198px) {
  .checkout-prd {
    width: 100% !important;
    margin-left: auto;
  }
  .order-summary.rounded.shadow,
  .order-summary.rounded.border {
    border-radius: 20px !important;
    padding: 20px 12px !important;
  }
  .proceed .continue-btn {
    font-size: 12px;
    font-weight: 600;
    padding: 0px 12px !important;
    display: flex !important;
    border-radius: 40px;
    border: 1px solid #000;
    transition: 0.4s all;
    justify-content: center;
    align-items: center;
  }
  .quantity .qty {
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 34px !important;
    font-size: 13px;
  }
  .cart-prd .cart-prd-table p {
    margin-bottom: 0px !important;
    margin-top: 8px !important;
  }
  .order-summary #grand-total-detail {
    font-size: 16px;
  }
}


@media only screen and (min-width: 768px) and (max-width: 992px) {
  .checkout-container{
    padding: 0 30px !important;
  }
 .checkout-container .checkout-prd{
  width: 100% !important;
 }
}