@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");
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #e98321;
  --secondary: #e98321;
  --green: #3B6340;
   --theme_purple: #432e77;
}

body {
  font-family: "Inter", sans-serif;
  color: #000;
  font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Playfair Display", serif;
}
  h2 {
    font-size: 38px;
    padding-bottom: 10px;
  }

.relative {
  position: relative;
}

a {
  text-decoration: none;
  color: #000;
}

a:hover {
  color: var(--primary);
}

input:focus,
a:focus,
.form-check-input:focus {
  box-shadow: none;
  outline: 0px;
}

.sec-title {
  font-size: 40px;
  font-weight: 600;
}

.topbar {
  background: #3B6340;
  padding: 5px 8px;
  color: #fff;
  display: flex;
}

.topbar a {
  color: #000;
}

/* .logo_header {
    background: #fff;
    padding: 5px 12px;
    border-bottom: 1px solid #e8e6e6;
} */
.logo_header a {
  color: #000;
}

.logo {
  max-width: 220px;
}

.search {
  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(--primary);
}

.search-results {
  padding: 15px;
  border-radius: 5px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50px;
  width: 100%;
  z-index: 2;
  box-shadow: 0 5px 10px -5px #00000038;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}

.search-results {
  opacity: 1;
  visibility: visible;
}

.search-results li:not(:last-child) {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 8px;
}

.search-results li img {
  width: 70px;
  object-fit: contain;
  margin-right: 15px;
}

.search-results .pct-desc p {
  color: #000;
}

.search-results li:hover .pct-desc p {
  color: var(--primary);
}

.search-results .btn.view_prd {
  padding: 0;
  font-size: 24px;
  color: var(--primary);
  position: relative;
  margin-left: auto;
}

ul.list-styled {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* .side_links {
    max-width: calc(40% - 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: 16px;
  position: relative;
}

.add_cnt {
  width: 20px;
  height: 20px;
  background: red;
  color: #fff;
  text-align: center;
  font-size: 12px;
  position: absolute;
  top: -2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  right: -10px;
}

/*  {
    position: absolute;
    width: 392px;
    height: 340px;
    bottom: -340px;
    right: 0;
    z-index: 2;
    background: #fff;
    color: #000;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 18px -12px #000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
} */

.side_links li.v_cart:hover .cart_card {
  opacity: 1;
  visibility: visible;
}

.cart_card ul {
  margin-left: 0;
  max-width: 100%;
  flex-direction: column;
  max-height: 200px;
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 15px;
}

.cart_card ul::-webkit-scrollbar {
  width: 5px;
}

.cart_card ul::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.cart_card ul::-webkit-scrollbar-thumb {
  background: #333;
}

.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: 78px;
}

.cart_card li a {
  color: #000;
  gap: 15px;
}

.pct-desc {
  min-width: 215px;
  font-size: 16px;
}

.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(--primary);
  font-weight: 600;
  font-size: 17px;
}

.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(--green);
  color: #fff;
}

.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-bottom: 1px solid #e8e6e6;
}

.menubar ul.navbar-nav {
  width: 100%;
  justify-content: end;
}

.button_wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

.search {
  width: 100%;
}

.menubar nav .navbar-nav .nav-link {
  margin: 0px 10px;
  color: #000;
  /* text-transform: uppercase; */
  font-weight: 500;
  position: relative;
}

.menubar nav .navbar-nav .nav-link:before {
  content: "";
  width: 0px;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s linear;
  position: absolute;
  bottom: -21px;
  left: 0;
}

.menubar nav .navbar-nav .nav-link:hover:before {
  width: 100%;
}

.menubar nav .navbar-nav .nav-item:hover .nav-link {
  color: var(--primary);
}

.menubar .store i {
  font-size: 20px;
  color: #85c440;
}

li.nav-item {
  position: relative;
  font-size: 17px;
}

.dropdown-menu {
  min-width: 12rem;
  padding: 0.5rem 0;
  width: 100%;
}

.view_cart {
  text-align: end;
}

.view_cart i {
  font-size: 24px;
}

.bck_img {
  background: url(https://html.themewant.com/ekomart/assets/images/offer/01.png);
  background-repeat: no-repeat;
  background-position: right;
  background-size: 44%;
  width: 100%;
  padding: 40px 60px;
}

.offer {
  background-color: #3B6340;

  display: flex;
  align-items: center;
  column-gap: 50px;
}

.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(--primary);
  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(--primary);
  color: #fff;
  border:1px solid var(--primary);
}

.view-all:hover,
.shop-btn:hover {
  background-color: var(--green);  
  color: #fff;
  transform: translateY(5px);
}

.view-all i {
  font-size: 20px;
  transform: translateY(3px);
}

.secs {
  padding-top: 50px;
}

.sec_title {
  font-weight: 600;
  font-size: 30px;
  padding: 0 0 15px 0px;
  border-bottom: 1px solid var(--primary);
  margin-bottom: 30px;
  color: #001;
  position: relative;
}

/* .sec_title::after {
    position: absolute;
    height: 30px;
    width: 30px;
    background: #EABC5E;
    content: "";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
} */

.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(--primary);
}

.cat-box:hover+.catgory-name {
  color: var(--primary);
}

.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 #164333 !important;
  background: #fff !important;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  color: #fff !important;
  border: 1px solid #e8e6e6 !important;
  background: var(--primary) !important;
}

.owl-carousel .owl-nav button.owl-prev {
  left: -2%;
  top: 45%;
  font-size: 22px;
  line-height: 42px;
}

.owl-carousel .owl-nav button.owl-next {
  right: -2%;
  top: 45%;
  font-size: 22px;
  line-height: 42px;
}

.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: 112px;
  height: 112px;
  object-fit: cover;
  border: 4px solid #ffe797;
}

.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 8px;
}

.prd-box {
  padding: 12px;
  border: 1px solid #e8e6e6;
  border-radius: 5px;
  position: relative;
  transition: all 0.3s linear;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 10px;
}

.prd-box img {
  height: 200px;
  object-fit: contain;
  object-position: center center;
}

.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(--primary);
  transform: translateY(-5px);
  box-shadow: 2px 6px 12px #ccc;
}

.prd-box .prd-img img {
  height: 175px;
  width: 100%;
  object-fit: contain;
  border-bottom: 1px solid #efefef;
  margin-bottom: 15px;
  padding-top: 25px;
  padding-bottom: 15px;
}

.prd-box .prd-desc span {
  display: block;
  text-transform: capitalize;
}

span.stock {
  color: #008000a3;
}

.prd-box .prd-desc span.prd-name {
  line-height: 22px;
  margin-bottom: 15px;
  max-height: 40px;
}

.prd-box .prd-desc span.ratings {
  color: #e3e3e3;
  font-size: 14px;
  margin-top: 2px;
}

.prd-box .prd-desc .price {
  color: var(--primary);
  font-weight: 700;
}

.prd-box .prd-desc del {
  color: #aaaaaa;
  font-weight: 300;
}

span.ratings i.active {
  color: #ffc000;
}

.add_to_cart {
  display: block;
  position: absolute;
  bottom: 16px;
  right: 12px;
  background: var(--green);
  color: #fff;
  border-radius: 5px;
  padding: 4px 12px;
  transition: all 0.2s linear;
  font-size: 15px;
  cursor: pointer;
}

.add_to_cart i {
  font-size: 18px;
  transform: translateY(2px);
}

.add_to_cart:hover {
  background: var(--primary);
  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%;
  height: 130px;
  padding: 15px;
  border: 1px solid #e8e6e6;
  text-align: center;
  margin: 12px 8px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 4px 5px -3px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.brands .item img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.usps {
  background: var(--primary);
  /* 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 {
  border-top: 10px solid var(--secondary);
  padding: 70px 0 0;
  background: var(--green);
}

footer h2 {
  font-weight: 500;
  color: #fff;
  font-size: 27px;
  margin-bottom: 15px;
}

footer p,
footer ul li a,
footer p a,
footer ul li {
  color: #FFFFFF;
  font-size: 15px;
}

footer p.tel a {
  color: var(--primary);
  font-weight: 600;
  font-size: 17px;
}

footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

footer ul li {
  padding: 3px 0;
}
.c_details{
  background: var(--secondary);
  padding: 20px;
}

/*.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;
  margin-top: 40px;
  align-items: center;
  padding: 30px 0;
}

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(--primary);
  color: #fff;
  margin-top: 15px;
}

.mx-100 .carousel .carousel-item img {
  height: 550px;
  object-fit: cover;
  width: 100%;
}

.banner_item .item {
  height: 550px;
}

.banner_item .item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}

.banner_item .owl-theme .owl-dots {
  margin-top: 10px;
  position: absolute;
  bottom: 10px;
  margin: auto;
  left: 0;
  right: 0;
}

.banner_item .owl-theme .owl-dots .owl-dot span {
  width: 13px;
  height: 13px;
  background: #d6d6d6;
}

.banner_item .owl-theme .owl-dots .owl-dot.active span {
  background: #3B6340;
  width: 35px;
}

.banner_item .owl-carousel .owl-nav button.owl-prev {
  left: 0%;
  top: 45%;
  font-size: 50px !important;
  color: #000;
  line-height: 39px;
  background: transparent !important;
  border: none !important;
}

.banner_item .owl-carousel .owl-nav button.owl-next {
  right: 2%;
  top: 45%;
  font-size: 50px !important;
  color: #000;
  line-height: 39px;
  background: transparent !important;
  border: none !important;
}

.banner_item .owl-carousel .owl-nav button.owl-prev i,
.banner_item .owl-carousel .owl-nav button.owl-next i {
  color: #000;
}

/*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;
  place-self: flex-start;
}

.products_list_box .item {
  width: 18%;
  max-width: 218px;
  flex-grow: 1;
  margin: 5px;
}

.prd-box .prd-desc span.prd-name a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #434242;
  font-size: 15px;
  text-transform: capitalize;
}

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;
}

.card-body .form-check {
  /* margin-bottom: 8px; */
  padding: 8px;
  border: 1px solid #e8e6e6;
  min-height: fit-content !important;
  margin-bottom: 0px;

}

.list-group .category-container .card {
  height: 450px;
}

/* .card-body .brandfilter {
  padding-left: 36px
} */
.card-body .brandingfilter {
  padding-left: 36px
}

/* .card-body .form-check:hover {
  background-color: #e8e6e6
} */

.card-body .form-check:hover label {
  color: var(--primary);
}

.cat-name {
  font-size: 15px;
  font-weight: 500 !important;

}

.sub-cat-name {
  padding: 0px;
  background: none;
  border: none;
}

.form-check-input:checked {
  background-color: #94c573;
  border-color: #94c573;
}

.sidebar ul.list-group {
  position: sticky;
  top: 40px;
  gap: 20px;
}

.owl-thumb-item {
  width: 20%;
  border: 1px solid #0a408682;
  margin: 0 12px;
}

.owl-thumb-item img {
  max-width: 100%;
  height: 100px;
  padding: 0px;
  margin: auto;
}

.owl-thumbs {
  position: absolute;
  bottom: -10.5em;
  left: 0;
  display: table;
  width: 100%;
  text-align: center;
  padding: 5% 5px;
}

.product_detail .owl-thumbs {
  position: static;

  display: table;
  width: 100%;
  text-align: center;
  padding: 5% 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;
}

.input-group .quantity-field {
  position: relative;
  height: 38px;
  text-align: center;
  width: 44px;
  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;
}

.prd_images .owl-item img {
  height: 300px;
  width: 100%;
  margin: auto;
  object-fit: contain;
  object-position: center center;
}

.prd_images .owl-item {
  border: 1px solid #c3c3c3;
  padding: 15px;
  height: 350px;
}

.detail_page .container.normal {
  max-width: 1400px !important;
}

.detail_page .prd_desc {
  padding-left: 30px;
}

.prd_desc {
  margin-bottom: 80px;
}

.prd_desc span.ratings {
  color: #e3e3e3;
  font-size: 16px;
}

.prd-price {
  color: var(--primary);
  font-weight: 700;
  font-size: 30px;
}

.prd-price del {
  color: #232323;
  font-weight: 400;
  font-size: 18px;
  margin-right: 12px;
}

p.highlight-text {
  font-size: 18px;
  background: var(--primary);
  display: inline-block;
  padding: 5px 15px;
  color: #fff;
}

p.points i {
  color: var(--primary);
  float: left;
  margin-bottom: 12px;
  margin-top: 2px;
  font-size: 20px;
}

.text-green {
  color: var(--primary);
}

.number {
  display: inline-block;
}

.detail-addtocart .add-cart a {
  display: inline-block;
  margin-left: 20px;
  background: var(--primary);
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 18px;
  min-width: 255px;
  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(--primary);
  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(--primary);
}

.login-pass .bx-show-alt {
  color: red;
}

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(--primary);
  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;
}

.table tbody tr td {
  /*    border: none;*/
  padding: 20px 12px;
  color: #111;
  font-size: 16px;
  line-height: 1.3;
  text-align: left;
  vertical-align: middle;
}

td.remove i {
  display: block;
  font-size: 26px;
  color: #111 !important;
  border: 1px solid #c2c2c2;
  height: 40px;
  width: 40px;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
  font-weight: 400;
}

table td img {
  width: 72px;
  margin-right: 15px;
  height: auto;
}

.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(--primary);
  padding: 4px 27px;
  border-radius: 4px;
  text-transform: uppercase;
  height: 50px;
  border-radius: 30px;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  display: inline-block;
  line-height: 1;
  font-weight: 600;
  margin: 0;
}

.order-summary {
  margin-bottom: 70px;
}

.order-summary .row {
  margin: 15px 0;
}

.order-summary #grand-total-detail {
  margin-top: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 25px;
  border-top: 1px solid #e5e5e5;
  font-weight: 700;
}

.proceed a {
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  padding: 20px;
  display: block;
}

/* .proceed:hover {
    background: var(--green);
} */

.proceed:hover a {
  color: #000;
}

.breadcrumb-item.active {
  color: var(--primary);
  text-transform: capitalize;
}

.list-group-item.active {
  background-color: var(--primary);
  border-color: var(--primary);
}

.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(--primary);
}

.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(--primary);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
  font-size: 15px;
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-sm.view-all {
  font-size: 12px;
  padding: 6px 20px;
}

@media screen and (min-width: 1400px) {
  .container {
    width: 96%;
    max-width: 1700px;
  }

  .container.mx-100 {
    max-width: 100%;
  }
}

@media screen and (min-width: 1900px) {
  .sidebar {
    width: 300px;
  }

  .products_list_box {
    width: calc(100% - 300px);
  }

  .products_list_box .item {
    width: 15%;
    max-width: 253px;
    margin-top: 20px;
  }

  .mx-100 .carousel .carousel-item img {
    height: 600px;
    object-fit: cover;
    width: 100%;
  }
}

@media screen and (min-width: 1600px) {
  .container {
    width: 94%;
    max-width: 1700px;
  }

  .prd-box .prd-img img {
    height: 225px;
  }

  .mx-100 .carousel .carousel-item img {
    height: 600px;
    object-fit: cover;
    width: 100%;
  }

  .sidebar {
    width: 300px;
  }

  .products_list_box {
    width: calc(100% - 300px);
  }

  .offer-box {
    height: 320px;
  }

  /*    .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%;
  }
}

.detail_page .prd_desc h2 {
  font-size: 23px;
  margin-bottom: 10px;
}

.prd-price {
  font-weight: 700;
  font-size: 25px;
}

@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: 23%;
  }

  .mx-100 .carousel .carousel-item img {
    height: 375px;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {

  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: 255px;
  }

  .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: 48%;
    margin: 0 0%;
  }

  .side_links {
    max-width: calc(50% - 210px);
    margin-left: auto;
  }

  .logo_header .row .search {
    order: 3;
    margin: 0;
    max-width: 84%;
  }

  .navbar-toggler {
    background-color: #3b7d7c;
    float: right;
    margin-top: -60px;
    padding: 2px 8px;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  i.bx.bx-menu-alt-right {
    font-size: 28px;
    color: #fbfdff;
  }

  .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;
  }

  .navbar .nav-item .dropdown-menu {
    margin-top: 0;
  }

  .navbar .nav-item .dropdown-menu li a {
    border-bottom: 1px solid #efefef;
    padding: 8px 14px 8px 25px;
    display: block;
    white-space: normal;
  }

  .navbar .nav-item .dropdown-menu li a:hover {
    color: var(--primary);
    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: #3b7d7c;
    float: right;
    margin-top: -48px;
    padding: 2px 8px;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  i.bx.bx-menu-alt-right {
    font-size: 28px;
    color: #f8f9fa;
  }

  .logo_header {
    padding: 10px 12px 8px;
  }

  .logo_header .row .search {
    order: 3;
    margin: 0;
    max-width: 84%;
  }

  .logo {
    max-width: 200px;
    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: 20px;
    height: 20px;
    font-size: 12px;
  }

  .navbar-toggler {
    background-color: #009688 !important;
  }

  .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: 214px;
  }

  .search-results {
    padding: 4px;
  }

  .search-results li img {
    width: 56px;
    margin-right: 4px;
  }

  .search-results .pct-desc {
    max-width: 60%;
    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: 35px;
  }

  .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;
  }

  .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: 35px;
    margin-bottom: 5px;
  }

  span.d-block.catgory-name,
  .healthy .col h3 {
    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 #ffe797;
  }

  .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: #edecec;
  }

  .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: 30%;
  }

  .list_page .healthy .row {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .sidebar {
    width: 82%;
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 9;
    transition: all 0.3s;
    height: 100vh;
    overflow: auto;
  }

  .sidebar.open {
    left: 0;
  }

  .sidebar a.btn-category {
    padding: 0 12px 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;
    margin-top: 30px;
  }

  .detail-addtocart .add-cart,
  .detail-addtocart .add-cart a {
    width: 100%;
    margin-left: 0;
  }

  .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%;
  }
}

/* new css  */

.single-category-one {
  padding: 25px 20px;
  border-radius: 0px;
  border: 1px solid #e2e2e2;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: 0.3s;
  cursor: pointer;
  position: relative;
  border-right: none !important;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}

/* text-align: center;
padding: 25px 9px;
border: none;
border-right: 1px solid #e2e2e2;
position: relative; */

.single-category-one img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  object-position: center center;
  margin: auto;
  margin-bottom: 18px;
  text-align: center;
  display: flex;
}

.single-category-one p {
  font-weight: 700;
  color: #3b7d7c;
  font-size: 14px;
  margin-bottom: 8px;
  text-align: center;
}

.category-area-main-wrapper-two .single-category-one::after {
  bottom: 0;
  position: absolute;
  left: 0;
  height: 4px;
  width: 0%;
  background: #85c440;
  content: "";
  transition: 0.3s;
}

.category-area-main-wrapper-two .single-category-one:hover::after {
  width: 100%;
}

.detail-addtocart .button-minus,
.detail-addtocart .button-plus {
  height: 34px !important;
  width: 34px !important;
  border-radius: 50% !important;
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  -ms-border-radius: 50% !important;
  -o-border-radius: 50% !important;
  background-color: #f0f7e7;
  border: none !important;
}

.input-group .quantity-field {
  position: relative;
  height: 34px;
  text-align: center;
  width: 40px;
  display: inline-block;
  font-size: 16px;
  margin: 0 0 5px;
  resize: vertical;
  border: none;
}

.number .input-group {
  justify-content: center;
  align-items: center;
}

/* top banner */

***/ .top-banners {
  position: relative;
  /* padding: 60px; */
  background-image: url(../images/new/bg-pattern.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
}

.banner-box-one {
  position: relative;
  margin-bottom: 0px;
  overflow: hidden;
  padding: 20px;
}

.banner-box-one .inner-box {
  position: relative;
  background: #60b893;
  padding: 80px 20px 80px 20px;
  max-width: 640px;
  margin: 0 auto;
  border: 10px solid transparent;
  border-image: url(https://demoo.ca/projects/versova-static-website/images/icons/cat-3-bg.png) 60 stretch;
  overflow: hidden;
}

.banner-box-one .inner-box:before {
  position: absolute;
  left: -40px;
  top: -60px;
  height: 180px;
  width: 180px;
  /* background: #111;
  border-radius: 50%; */
  background-image: url(https://demoo.ca/projects/versova-static-website/images/new/small-banner-.png);
  background-size: cover;
  background-position: center bottom;
  opacity: 0.2;
  content: "";
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.banner-box-one .inner-box:hover:before {
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
}

.banner-box-one:nth-child(2) .inner-box:before {
  opacity: 0.1;
}

.banner-box-one:nth-child(3) .inner-box:before {
  background-color: #ffffff;
}

.banner-box-one .inner-box:after {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: -webkit-gradient(linear,
      left top,
      right top,
      from(rgba(255, 255, 255, 0)),
      to(rgb(255, 255, 255)));
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgb(255, 255, 255) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#00ffffff", GradientType=1);
  content: "";
  opacity: 0.3;
  left: -100%;
  pointer-events: none;
  z-index: 1;
}

.banner-box-one .inner-box:hover:after {
  left: 100%;
  -webkit-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-box-one .image {
  position: absolute;
  left: 40%;
  top: -13%;
}

.banner-box-one .image img {
  max-width: inherit;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.banner-box-one .inner-box:hover .image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.banner-box-one .content {
  position: relative;
  max-width: 90%;
}

.banner-box-one .title {
  display: block;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #fff;
}

.banner-box-one h3 {
  font-size: 30px;
  line-height: 1.2em;
  color: #fff;
  font-family: #fff;
  margin-bottom: 20px;
}

.banner-box-one.style-two .inner-box {
  background: #3B6340;
}

.banner-box-one.style-three .inner-box {
  background: #224d3d;
}

.banner-box-one.style-three h3,
.banner-box-one.style-two h3,
.banner-box-one.style-three .title,
.banner-box-one.style-two .title {
  color: #ffffff;
}

.banner-box-one.style-two .image {
  left: 35%;
  top: -20%;
}

.banner-box-one.style-two .btn-style-two:before {
  background: #224d3d;
}

.banner-box-one.style-three .inner-box:before {
  background-color: #ffffff;
}

.top-featires {
  position: relative;
}

.top-featires.pull-up {
  margin-top: -70px;
  z-index: 9;
}

@media screen and (min-width: 1200px) and (max-width: 1400px) {

  .detail-addtocart .button-minus,
  .detail-addtocart .button-plus {
    background-color: #f0f7e7;
    height: 28px !important;
    width: 28px !important;
  }

  .input-group .quantity-field {
    position: relative;
    height: 30px;
    width: 40px;
    display: inline-block;
    font-size: 15px;
  }

  .add_to_cart {
    bottom: 16px;
  }
}

.brd_heading {
  font-size: 28px;
  text-align: center;
  padding: 13px 0;
  font-weight: 600;
  color: black;
  background-color: #f8f9fa;
}

/* cart  */

.cart_updated {
  background: #e7efe2;
  padding: 15px 20px;
  border-radius: 5px;
}

.cart_updated i {
  color: var(--primary);
  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;
}

.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(--primary);
  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(--primary);
  color: #fff;
  border-color: var(--primary);
}

.proceed .checkout-btn {
  color: #fff;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  padding: 10px 40px;
  display: block;
  background: var(--primary);
  border-radius: 40px;
  border: 1px solid var(--primary);
}

.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(--primary);
  color: #fff;
  border-color: var(--primary);
}

.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;
}

.about-section .image-column {
  position: relative;
  margin-bottom: 50px;
}

.about-section .about-image-wrapper {
  position: relative;
  padding-right: 50px;
  margin-left: -50px;
  padding-bottom: 60px;
}

.about-section .bg-shape {
  position: absolute;
  left: -160px;
  bottom: 30px;
  margin-bottom: 0;
}

.about-section .image-1 {
  position: relative;
  overflow: hidden;
}

.about-section .image-1 img {
  border-radius: 50%;
  height: 500px;
  width: 500px;
}

.about-section .image-2 {
  position: absolute;
  right: 50px;
  bottom: 0;
  z-index: 2;
  border-radius: 50%;
  overflow: hidden;
}

.about-section {
  padding: 160px 40px;
  padding-top: 86px !important;
}

.about-section h6 {
  color: #224d3d;
  font-size: 20px;
  font-weight: 600;
}

.about-section h2 {
  font-size: 40px;
  font-weight: 600;
  padding-bottom: 13px;
}

.text_green_c {
  color: #3B6340 !important;
}

.about-section p {
  font-size: 16px;
}

/***

====================================================================
 Categories Section
====================================================================

***/

/***

====================================================================
    Benefits Section
====================================================================

***/

.benefits-section .image-column {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 50%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.benefits-section .image-column .image-box {
  position: relative;
  display: none;
  margin-bottom: 0;
}

.benefits-section .image-column .image-box img {
  position: relative;
  display: block;
  width: 100%;
}

.benefits-section .content-column {
  position: relative;
  max-width: 50%;
}

.benefits-section .content-column .inner-column {
  position: relative;
  max-width: 720px;
  padding: 110px 0 90px;
  padding-right: 100px;
}

/* .benefits-section:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background: url(../images/icons/shape-4.png) bottom left no-repeat;
    content: "";
} */

.benefits-block {
  position: relative;
  margin-bottom: 30px;
}

.benefits-block .inner {
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 30px;
  /* padding-top: 100px;
    padding-bottom: 100px; */
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.benefits-block .inner:hover .icon {
  left: 20px;
}

.benefits-block .inner img {
  width: 50px;
  margin-right: 20px;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

.benefits-block .inner:hover .icon:after {
  right: 20px;
}

.benefits-block:last-child {
  margin-bottom: 0;
}

.benefits-block:last-child .inner {
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 0;
}

.benefits-block .icon {
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
  font-size: 54px;
  line-height: 1.2em;
  color: #164333;
  z-index: 2;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.benefits-block .icon:before {
  position: relative;
  z-index: 1;
}

.benefits-block .icon:after {
  position: absolute;
  right: -20px;
  top: 20px;
  height: 45px;
  width: 45px;
  background: #218764;
  border-radius: 50%;
  opacity: 0.3;
  content: "";
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.benefits-block h4 {
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 1.2em;
  color: #ffffff;
  margin-bottom: 0;
}

.benefits-block .title {
  font-size: 16px;
  line-height: 1.4em;
  color: #ffffff;
}

.benefits-section h2 {
  font-size: 40px;
}

.product_list_cat .cat-box {
  text-align: center;
  padding: 0;
  border-radius: 10px;
  width: 100%;
  height: 170px;
  transition: all 0.3s linear;
  border: 0px;
  margin: 10px auto 0;
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.product_list_cat .catgory-name {
  font-size: 18px;
}

.category {
  background-color: #3B6340;
  margin-top: -5px;
}

.sec_padding {
  padding: 100px 0;
}

.pattern_1 {
  width: 100%;
}

.pattern_down {
  margin-top: -5px;
  width: 100%;
}

.category .Prd_cat {
  margin-top: 60px;
}

.category .prd_box {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  height: 100%;
  background-color: white;
  border: 1px solid #164333;
}

.category .prd_box h3 {
  /* position: absolute; */
  text-align: center;
  bottom: 0;
  left: 0;
  padding: 15px;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to bottom, #0005, #000000c4);
  width: 100%;
  transition: all 0.3s;
  text-transform: capitalize
}

.category .prd_box img {
  height: 340px;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}

/* .category .prd_box:hover h3 {
    color: #164333
} */
.category .owl-theme .owl-nav [class*="owl-"] {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #a9a9a9 !important;
  border: 1px solid #e8e6e6 !important;
  background: #fff !important;
}

.category .owl-theme .owl-nav [class*="owl-"]:hover {
  color: #fff !important;
  border: 1px solid #e8e6e6 !important;
  background: #164333 !important;
}

.category .owl-carousel .owl-nav button.owl-prev {
  left: -25px;
  font-size: 17px;
  line-height: 40px;
}

.category .owl-carousel .owl-nav button.owl-next {
  right: -25px;
  font-size: 17px;
  line-height: 40px;
}

.category .owl-theme .owl-dots {
  margin-top: 30px;
}

.category .owl-theme .owl-dots .owl-dot.active span {
  width: 40px;
}

.category .owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #164333;
}

/* product_sec */

.product_sec .nav-pills .nav-link.active {
  color: #fff;
  background-color: #164333;
}

.product_sec .nav-pills .nav-link {
  margin: 0 8px;
  color: #000;
  padding: 4px 10px;
  border: 1px solid #164333;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  text-transform: capitalize;
}

.product_sec .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;
  color: #203849;
  font-weight: 700;
}

.product_sec .prd-box .prd-desc span.prd-name {
  line-height: 22px;
  margin-bottom: 0px;
  height: 40px;
}

.product_sec .prd-box .prd-desc .brand_name {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  margin-top: 10px;
  color: #9a9a9a;
}

/* .product_sec .prd-box .prd-desc .brand_name b {
  color: #e43c16;
} */

.product_sec .products_list_box {
  width: 100%;
}

/* Recent-posts Section - Home Page
------------------------------*/
.recent-posts article {
  box-shadow: 0 4px 16px rgba(33, 37, 41, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.recent-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.recent-posts article .post-img img {
  transition: all 0.3s;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.recent-posts article:hover .post-img img {
  transform: scale(1.1);
}

.recent-posts .title {
  font-size: 22px;
  font-weight: 600;
  padding: 0;
  margin: 25px 0 15px 0;
  font-family: "Open sans", sans-serif;
}

.recent-posts .title a {
  color: #164333;
  transition: 0.3s;
}

.recent-posts .title a:hover {
  color: #164333;
}

.recent-posts .post-date {
  font-size: 14px;
  color: rgba(33, 37, 41, 0.5);
  margin-bottom: 0;
}

@media (min-width: 1920px) and (max-width: 2800px) {
  .banner_item .item {
    height: 75vh;
  }
}

.auth-links {
  display: flex;
  gap: 10px;
  list-style: none;
  justify-content: end;
  padding: 0;
  padding-right: 37px;
  margin: .3rem 1rem !important;
}

.auth-links li {
  margin: 0;
}

.auth-links a {
  text-decoration: none;
  color: #e8dada;
  padding: 5px 12px 5px 12px;
  background-color: var(--primary);
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.products_list_box .item .prd-box img {
  height: 200px;
  object-fit: cover;
  margin: auto;
  width: 100%;
}

/* Cart hover */

div#hovedCart {
  display: inherit !important;
  text-align: left;
}

.cart_card {
  position: absolute;
  width: 27em;
  max-height: 400px;
  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: 270px;
  /*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;
}

.v_cart .input-group .quantity-field {
  border: 1px solid #e1e1e1 !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(--primary); */
  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(--green);
  /* 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;
}

.cart-image-wrapper {
  display: flex;
}

.add_box {
  padding-bottom: 34px;
  margin-top: 30px;
}

/* Mode */

.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: var(--primary);
}

.rango-view-grid-container.active {
  background: var(--primary);
  color: #fff;
}

.prd-desc .add_to_cart {
  /* display: block; */
  position: relative;
  margin-top: 30px !important;
  text-align: center !important;
  right: 0;
}

/* Cart page */

/* .quantity .qty{
    height: 37px !important;
  } */

.cart_grid_view .prd-box .prd-desc .quantity .qty {
  height: 32px !important;
  width: 43px !important;
}

.cart_grid_view .prd-box .prd-desc .quantity {
  width: 120px !important;
}

.cart_grid_view .quantity .input-group-btn .quantity-btn {
  width: 36px !important;
}

.cart_grid_view .prd-box {
  margin-bottom: 15px;
}

/* Checkout */

.checkout_box {
  padding: 28px 0;
}

/* Responsive */

@media screen and (max-width: 768px) {

  .bx .bxs-chevron-down {
    display: none;
  }

  .banner_item .item {
    height: auto;
  }

  .msn-img {
    width: 15%;
  }

  .about-section {
    padding: 50px 12px !important;
  }

  .about-section h6 {
    padding-top: 30px;
    font-size: 16px;
  }

  .about-section h2 {
    font-size: 26px;
    padding-bottom: 8px;
  }

  .sec_padding {
    padding: 80px 0 !important;
  }

  h1 {
    font-size: 30px !important;
  }

  .category .prd_box img {
    height: 120px !important;
  }

  /* .category .prd_box{
    height: fit-content;
  } */

  .category .prd_box h3 {
    padding: 20px 5px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600;
    /* height: 100%;
    min-height: 74px; */
    color: #fff;
    background: #218764;
    width: 100%;
    transition: all 0.3s;
  }

  .product_sec li.nav-item {
    font-size: 14px !important;
    margin-bottom: 6px !important;
  }

  .product_sec .nav-pills .nav-link {
    padding: 5px 14px !important;
    font-size: 13px !important;
  }

  .add_to_cart {
    position: unset !important;
    margin: 6px auto;
    width: 100%;
    text-align: center;
  }

  .prd-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .number {
    display: unset;
    width: 100%;
  }

  .category .owl-carousel .owl-nav button.owl-next {
    right: -3px !important;
  }

  .category .owl-carousel .owl-nav button.owl-prev {
    left: -3px !important;
  }

  .benefits-section h2 {
    font-size: 26px !important;
  }

  .recent-posts .title a {
    font-size: 18px !important;
  }

  footer p,
  footer ul li a,
  footer p a,
  footer ul li {
    font-size: 16px;
    color: #fff.
  }

  /* .prd-box .prd-desc span.prd-name {
    height: 0 !important;
  } */

  .product_grid_pricing {
    padding: 6px 0;
    margin-top: 25px;
  }

  /* Filter */

  .sidebar ul.list-group {
    padding: 0 10px;
  }

  .sidebar .form-check a {
    color: #5f5f5f;
    font-size: 15px;
    position: relative;
    margin-left: -20px;
  }

  .form-check-label {
    color: #5f5f5f;
    font-size: 15px;
  }

  .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;
  }
}

/* thank you page */
.success_message {
  margin: 40px auto;
}

.account_page {
  padding: 0px;
  margin-bottom: 40px;
}

.account_page .sidebar {
  width: 100%;
}

#orderlist {
  padding: 40px;
}

ol.breadcrumb.mb-0 {
  margin-top: 20px;
}

.container.product_detail.normal.secs {
  padding-top: 0;
}

@media screen and (max-width: 768px) {
  .auth-links {
    padding-right: 0;
  }

  #orderlist {
    padding: 0px;
  }

  .auth-links a {
    text-decoration: none;
    color: #e8dada;
    padding: 3px 9px 5px 9px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
  }

  .inquire_now {
    display: none;
  }

  .menubar nav .navbar-nav .nav-link:before {
    content: "";
    width: 0px;
    height: 0px;
    background: var(--primary);
    transition: all 0.3slinear;
    position: absolute;
    bottom: 5px;
    left: 0;
  }


  .side_links {
    position: absolute;
    right: 3%;
    bottom: 8px;
  }

  div#navbarNav {
    position: absolute;
    top: 100%;
    left: 0;
    background: #efefef;
    z-index: 99;
    width: 100%;
  }

  .logo_header {
    padding: 0;
  }

  .pattern_down {
    margin-top: -10px;
    width: 100%;
  }

  .cart-text {
    display: none;
  }

  li#miniCart {
    background: #009688;
    padding: 7px 10px 0 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
  }

  .view_cart i {
    font-size: 24px;
    color: #fff;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .products_list_box .item {
    width: 18%;
  }

  .list_page .products_list_box .item {
    width: 20% !important;
  }
}

@media screen and (min-width: 1280px) and (max-width: 1440px) {
  .products_list_box .item {
    width: 15%;
  }

  .list_page .products_list_box .item {
    width: 18% !important;
  }

  .category .owl-carousel .owl-nav button.owl-prev {
    left: 0px;
    font-size: 17px;
    line-height: 40px;
  }

  .category .owl-carousel .owl-nav button.owl-next {
    right: 0px;
    font-size: 17px;
    line-height: 40px;
  }
}

@media screen and (min-width: 2199px) and (max-width: 3200px) {
  .auth-links {
    padding-right: 10% !important;
    margin: 0;
  }

  .prd-box .prd-desc span.prd-name {
    height: auto !important;
  }
}

/* contact-us page */

.contact_wrapper_1 {
  background-color: #3B6340;
  padding: 55px 80px;
  border-radius: 23px;
  color: #fff;
}

.contact_wrapper_1 h4 {
  font-size: 2rem;
}

.contact_wrapper_1 .form-control {
  border: none;
  background-color: transparent;
  border-bottom: 3px solid #fff !important;
  border-radius: 0 !important;
  color: #fff !important;
  padding: 14px 0 !important;
}

.contact_wrapper_1 .text-center .btn {
  /* background-color: #000; */
  border: none;
  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(--primary);
  color: #fff;
}

.contact_wrapper_1 .text-center .btn:hover {
  background-color: #000;
  color: #fff;
  transform: translateY(-5px);
}

.contact_wrapper_1 textarea:focus {
  box-shadow: none !important;
}

.contact_wrapper_1 input::placeholder {
  color: #d3d3d3;
}

.contact_wrapper_1 textarea::placeholder {
  color: #d3d3d3;
}

.contact_wrapper {
  padding-bottom: 80px;
}

.contact_wrapper h5 {
  font-size: 24px;
  padding: 12px 0;
}

.contact_wrapper p {}

.contact_wrapper address {
  line-height: 39px;
}

/* Product page second corousel */
#sync2 .owl-stage-outer .owl-item {
  height: 100px;
}

#sync2 .owl-stage-outer .owl-item .item img {
  height: 100%;
}

#sync2 .owl-nav button {
  display: none;
}

#sync2 .owl-stage-outer .owl-stage {
  display: flex;
  gap: 4px;
}

/* issues fixing */

@media screen and (max-width: 376px) {
  .proceed .continue-btn {
    font-size: 13px;
    padding: 10px 12px !important;
  }

  .proceed .checkout-btn {
    font-size: 13px;
    padding: 10px 40px !important;
  }

  .detail-addtocart .number .input-group {
    justify-content: left;
  }

  .products_list_box .item {
    max-width: 166px !important;
  }

  .list_page .sec_padding {
    padding: 32px 7px !important;
  }

  .list_page #catList .item .prd_box {
    max-width: 169px;
  }

  .address .header-top-left .btn-group .dropdown-toggle::after {
    display: none !important;
  }

  .cart_grid_view .prd-box .prd-desc>div:first-of-type {
    flex-direction: column;
    gap: 4px;
  }

  .cart-prd-table .row .col-6 {
    margin-bottom: 6px;
  }

  #sync2 .owl-stage-outer .owl-item {
    height: 156px;
  }

  .cart-prd-table .table .item .remove a {
    display: inline-block;
    width: auto;
  }

  /* Image issue in cart */
  .card-prd .cart-prd-table .table thead>tr {
    display: none !important;
  }

  .cart-prd-table tr.item {
    position: relative;
    padding: 23px 0px;
  }

  .cart-prd-table .table tr td img {
    display: block !important;
    position: absolute;
    left: 14px;
    top: 8px;
    height: 60px;
  }
}

.listing_wrapper label {
  font-size: 14px;
}

/* .sidebar .card-body:nth-child(1) .form-check{
  padding-left: 0 !important;
} */
.listing_wrapper .list-group-item {
  padding: .5rem 0rem !important;
}

.list-group-item+.list-group-item {
  border-top-width: 1px;
}

.sidebar .card-body {
  padding: 0px;
  border-width: 1px 0px 0px 0px;
  height: 250px;
  overflow-y: auto;
}

/* Scrollbar Track */
.sidebar .card-body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

/* Scrollbar */
.sidebar .card-body::-webkit-scrollbar {
  width: 8px;
  background-color: #ababab;
}

/* Scrollbar Thumb */
.sidebar .card-body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: #ababab;
}

/* .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;
} */

.msn-sec {
  border-radius: 30px;
}

.msn-img {
  width: 80%;
}

.msn-cntnt {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.fa-check-circle {
  font-size: 28px;
  color: #218764;
  margin-right: 10px;

}

.ov {
  background-color: #164333;
  padding: 20px;
  border-radius: 12px;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

}

.ov-icon {

  border-radius: 50%;

}

.ov-icon img {
  width: 60px;

}

.ov-cntnt {
  margin-top: 15px;
}

.categories {
  text-transform: capitalize;
}

.action-buttons {
  display: flex;
  font-size: 23px;
}

.action-buttons a {
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  border-radius: 25%;
  border: 1px solid #ccc;
}

.action-buttons a.delete {
  color: red;
  border: 1px solid red;
}

#searched-item-List .col-lg-2.text-center {
  font-size: 14px;
}

#searched-item-List .search-price {
  font-size: 14px;
}

#searched-item-List .col-lg-2.text-center {
  font-size: 14px;
}

#searched-item-List .search-price {
  font-size: 14px;
}



.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(--primary);
}

.search-results {
  padding: 15px;
  border-radius: 5px;
  background: #fff;
  position: absolute;
  left: -240px;
  top: 50px;
  width: 800px;
  max-height: 300px;
  overflow-y: scroll;
  z-index: 1000;
  box-shadow: 0 5px 10px -5px #00000038;
  transition: all 0.3s;
}

.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(--primary);
}

.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-btn-cart {
  background-color: #3B6340;
  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(--primary);
}

.search-results .btn.view_prd {
  padding: 0;
  font-size: 24px;
  color: var(--primary);
  position: relative;
  margin-left: auto;
}

.search-results .quantity .input-group-btn {
  display: flex;
  flex: 0 0 30px;
}

.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: 40px;
  outline: 0;
  margin: 0;
  border: none;
  border-right: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
}


.quantity .input-group-btn .quantity-btn.quantity-minus {
  border-width: 1px 0 0 1px;
  position: relative;
  top: 5px;
  left: 5px;
}

.quantity .input-group-btn .quantity-btn.quantity-plus {
  border-width: 0 0 0 1px;
  position: relative;
  top: 5px;
  left: 5px;
}

#searched-item-List .col-lg-2.text-center {
  font-size: 14px;
}

#searched-item-List .search-price {
  font-size: 14px;
}

.search-buttons {
  display: flex;
  justify-content: center;
  align-items: center;

}

@media(max-width:430px) {

  .bx .bxs-chevron-down {
    display: none;
  }

  .search {
    width: 75%;
  }

  .side_links {
    bottom: 0px;
  }

  .search-buttons {
    display: flex;
    justify-content: flex-start;

  }


  .msn-img {
    width: 35%;
  }

  .detail-addtocart {
    margin-top: 0px;
  }


  .prd-box {
    height: 100%;

  }

  .menubar nav .navbar-nav .nav-link:before {
    content: "";
    width: 0px;
    height: 0px;
    background: var(--primary);
    transition: all 0.3slinear;
    position: absolute;
    bottom: 5px;
    left: 0;
  }

  .category .prd_box img {
    height: 80% !important;
  }

  .category .prd_box {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 200px;
    background-color: white;
    border: 1px solid #164333;
  }

  .category {
    width: 100% !important;
    flex: 0 0 50% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .category .prd_box img {
    height: 73% !important;
  }

  .order-table {
    margin: 10px;
  }

  .product_grid_pricing {
    padding: 2px 0 !important;
    margin-top: 37px !important;
  }

  @media screen and (max-width: 767px) {
    .mission-sec .msn-sec .msn-img {
      width: 20%;
    }

    .products_list_box .item {
      width: 40%;
    }
  }
}

.contact_hours {
  margin-left: 60px;
  font-size: 16px;
  width: 50%;
}

.contact_table {
  width: 100%;
  border-collapse: collapse;
  line-height: 1.8;
}

.contact_heading {
  width: 50%;
}

@media(max-width:768px) {
  .search-results {
    padding: 15px;
    border-radius: 5px;
    background: #fff;
    position: absolute;
    left: -174px;
    top: 50px;
    width: 700px;
    max-height: 300px;
    overflow-y: scroll;
    z-index: 1000;
    box-shadow: 0 5px 10px -5px #00000038;
    transition: all 0.3s;
  }

  .search-btn-cart {
    margin-right: 0px;

  }

  .contact_wrapper_1 {
    padding: 30px;
    padding: bottom 20px;

  }

  .contact_hours {
    margin-left: 0px;
    width: 100%
  }

  .order-summary #grand-total-detail {
    font-size: 14px;
  }
}

@media(max-width:430px) {
  .search-results {
    padding: 15px;
    border-radius: 5px;
    background: #fff;
    position: absolute;
    left: -20px;
    top: 50px;
    width: 350px;
    max-height: 300px;
    overflow-y: scroll;
    z-index: 1000;
    box-shadow: 0 5px 10px -5px #00000038;
    transition: all 0.3s;
  }

  .find-product {
    /* flex-wrap: nowrap; */
    white-space: nowrap;
    /* gap: 10px; */
    justify-content: flex-start;
  }

  .pct-name {
    white-space: normal;
  }
}

.add_to_list {
  background: var(--green);
  color: #fff;
  text-align:center;
  border-radius: 5px;
  padding: 4px 12px;
  transition: all 0.2s linear;
  font-size: 15px;
}
.add_to_list:hover {
    background: var(--primary);
    color: #fff;
}
.product_variant {
  border: 1px solid #0d1134;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-size: 12px;
  padding: 4px 6px !important;
}

.product_variant.active_variant {
  border: 2px solid #347a84;
  /* highlight selected */
  background: #347a842e;

}
/*6Aug2026*/
.position-relative {
  position: relative !important;
}
.position-absolute {
  position: absolute !important;
}
.shape svg { width: 100%; height: 100%; }
.shape { width: 100%; height: 80px; }
.shape.bottom-0 { transform: scaleY(-1); }
.shape.top-0 { transform: scaleY(1); }
.shape-fill { fill: #fff;}

.list-groups {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: .25rem;
}
.topbar i {color: var(--secondary); margin-right: 8px; }
.topbar li, .topbar li a, .topbar li p {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}
.list-group-item { border: 0px; background: #fff0;padding: .3rem 1rem !important; }
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.topbar i {
  color: var(--secondary);
  margin-right: 8px;
}
.fd-row {
  flex-direction: row;
}
.justify-content-end {
  justify-content: flex-end !important;
}

.h_about .img_wrapper {
    width: 90%;
    position: relative;
}
.h_about .img_wrapper img {
    border-radius: 30px;
    display: block;
    object-fit: cover;
}
.h_about .bigger { width: 68%; max-height: 530px; }
.h_about .smaller { width: 40%;
  position: absolute;
  right: 0;
  bottom: -14%;  
  height: 310px;
  box-shadow: 6px 6px 20px -10px #0000002b;
  border: 8px solid #fff;
  object-fit: cover;}
.h_about .sincce { width: 220px;
  background: var(--secondary);
  border-radius: 30px;
  position: absolute;
  right: 50px;
  top: -10%;
  height: 180px;
  padding: 25px; }
.h_about .sincce p { font-size: 27px; margin-bottom: 0;line-height: 1.2; }
.h_about .sincce p span {display: block; color: var(--theme_purple); }
.h_about .sincce .year {display: block; color: var(--theme_purple); font-size: 50px; }
.benefits-section{
  background: url('images/vedaone-banner.jpg') right center/cover;
}
@media screen and (max-width: 767px) {
 .benefits-section{
  background: #AA9B86;
}
.list-group, .sincce, .featured-video-clip{
  display: none;;
}
}
.whats-new{
color:var(--green);
}
footer p.text-white a {
    color: #fff;
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    border: 1px solid #fff;
    margin-right: 15px;
    font-size: 20px;
}
footer i, footer a:hover {
  color: var(--secondary);
}
.qk_links {
    list-style: none;
    margin: 0;padding: 0;
}
.qk_links a {
    padding: 5px 0;
    display: inline-block;
}
footer .c_details i, footer .c_details a:hover {
  color: var(--green);
}