@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: #3b7d7c;
  --yellow: #347a84;
}
html,
body {
  overflow-x: hidden !important;
}
body {
  font-family: "Lato", sans-serif;
  color: #000;
  font-size: 16px;
}

.relative {
  position: relative;
}

a {
  text-decoration: none;
  color: #000;
}

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

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

.sec-title {
  font-size: 40px;
  font-weight: 600;
}

.topbar {
  background: #185f5e;
  padding: 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: 140px;
}

.search {
  max-width: 53%;
  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%;
  z-index: 2;
  box-shadow: 0 5px 10px -5px #00000038;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}

.search:hover .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(--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(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: 20px;
  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;
}

.cart_card {
  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(--green);
  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(--yellow);
  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-end;
  align-items: center;
  gap: 20px;
}

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

.menubar nav .navbar-nav .nav-link:before {
  content: "";
  width: 0px;
  height: 2px;
  background: var(--green);
  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(--green);
}

.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: #185f5e;

  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(--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);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.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(--green);
  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(--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 #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(--green) !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;
}

.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;
  width: 100%;
  object-fit: contain;
  border-bottom: 1px solid #efefef;
  margin-bottom: 15px;
}

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

span.stock {
  color: #008000a3;
}

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

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

.prd-box .prd-desc .price {
  color: var(--green);
  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(--yellow);
  color: #fff;
  border-radius: 5px;
  padding: 4px 12px;
  transition: all 0.2s linear;
  font-size: 15px;
}

.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%;
  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(--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 10px 0;
  background: #fdfdfd;
  position: relative;
}
footer::before{
 content: '';
 position: absolute;
 width: 100%;
 height: 1px;
 top: 0;
 background-color: rgba(0, 0, 0, 0.06);
}

footer h2 {
  font-size: 18px;
  font-weight: 600;
  color: #8fd400;
}

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: 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: #ffffffa1;
}

.banner_item .owl-theme .owl-dots .owl-dot.active span {
  background: #185f5e;
  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: 14%; */
  max-width: 222px;
  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;
}

.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;
}

.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(--green);
  font-weight: 700;
  font-size: 30px;
}

.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;
}

p.points i {
  color: var(--green);
  float: left;
  margin-bottom: 12px;
  margin-top: 2px;
  font-size: 20px;
}

.text-green {
  color: var(--green);
}

.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: 300px;
  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;
}

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;
}

.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(--green);
  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(--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%;
  }
}

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

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

  .products_list_box .item {
    width: 16%;
    max-width: 270px;
  }

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

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

  .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: #8fd400;
    float: right;
    margin-top: -60px;
    padding: 2px 8px;
  }

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

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

  .products_list_box .item {
    width: 28%;
  }

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

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

/* header layout for smaller devices  */
@media all and (max-width: 992px) {
  .navbar.navbar-expand-lg.container.py-1 {
    padding: 0 !important;
  }
  .logo_header {
    padding: 0 !important;
  }
  .logo-col {
    background-color: #161616;
    padding: 0;
  }
  .header-bottom {
    padding: 6px 0;
  }
  .logo {
    margin: auto;
    text-align: center;
  }
  .logo img {
    width: 100px;
    object-position: center;
  }
  .navbar-toggler {
    margin-top: 0 !important;
  }
  .banner_item .item {
    height: auto;
  }
  .banner_item .item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: right;
  }
  

  .category .owl-carousel .owl-nav button.owl-next {
    right: 2px !important;
    font-size: 17px;
    line-height: 40px;
  }
  .category .owl-carousel .owl-nav button.owl-prev {
    left: 2px !important;
    font-size: 17px;
    line-height: 40px;
  }

  h1 {
    font-size: 30px !important;
  }
  h2 {
    font-size: 26px !important;
  }
  footer h2 {
    font-size: initial !important;
  }

  h6 {
    font-size: 16px !important;
  }
  /* .navbar-toggler{
    position: absolute;
    top: 60px;
    left: 10px;
  } */
  .navbar-collapse.collapse.show {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 99;
  }
  .nav-link::before{
    display: none;
  }
}

@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(--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: #8fd400;
    float: right;
    margin-top: -48px;
    padding: 2px 8px;
  }

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

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

  .logo_header {
    padding: 10px 12px 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;
  }

  .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{
    padding-bottom: 45px !important;
  }
 

  .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: 0;
    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:rgb(43, 43, 43);
  }

  .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: 9;
    transition: all 0.3s;
    height: 100vh;
    overflow: auto;
  }

  .sidebar.open {
    left: 0;
  }

  .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;
  }

  .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;
  }


  .add_to_cart{
    right: 50% !important;
    bottom: 6px;
    transform: translateX(50%);
    width: 94%;
    text-align: center;
  }
  

  .input-group .quantity-field {
    text-align: center;
    width: 30% !important;
  }
}

@media screen and (max-width: 420px) {
    .sec_padding {
        padding: 30px 0 !important;
      }
  body {
    font-size: 13px;
  }

  .products_list_box .item {
    width: 46%;
  }
  .about-section {
    padding: 50px 8px 40px!important;
  }
  .product_sec .nav-pills .nav-link {
    margin: 4px 8px !important;
  }
  article a {
    font-size: 18px !important;
  }
  .banner_item .owl-carousel .owl-nav button.owl-prev {
    left: -10px;
    font-size: 36px!important;
}
.banner_item .owl-carousel .owl-nav button.owl-next {
    right: 0px;
    font-size: 36px!important;
}

.category .prd_box img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
    object-position: center center;
  }


  .product_sec .nav-pills .nav-link {
    color: #000;
    padding: 8px 14px !important;
    border: 1px solid #164333;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    margin: 4px 5px !important;
  }

  /* .add_to_cart{
    bottom: 50px !important;
  } */
    .prd-box .prd-img img {
        height: 150px;
    }

    .brands .col,
    .brands .item {
        height: 100px;
    }
 
}

/* 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: #185f5e;
}

.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) {
  .products_list_box .item {
    width: 16%;
  }

  .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: 22px;
  text-align: center;
  padding: 13px 0;
  font-weight: 600;
}

/* cart  */

.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;
}

.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);
}

.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;
}

.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: 60px 40px;
}

.about-section h6 {
  color: #224d3d;
  font-size: 20px;
  font-weight: 600;
}

.about-section h2 {
  font-size: 40px;
  font-weight: 600;
}

.text_green_c {
  color: #185f5e !important;
}

.about-section p {
  font-size: 16px;
}

.about-section h6{
    padding-top: 30px;
}
.about-section h2{
    padding-bottom: 8px;
}
/***

====================================================================
 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: #164333;
  margin-top: -5px;
}
.sec_padding {
  padding: 70px 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%;
  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: #218764;
  width: 100%;
  transition: all 0.3s;
}
.category .prd_box img {
  height: 250px;
  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 {
  background: 0 0;
  margin: 0 8px;
  color: #000;
  padding: 8px 30px;
  border: 1px solid #164333;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}
.product_sec .nav-pills .nav-link:hover {
    background-color: #23664f0a;
  }

.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;
  color: #434242;
  font-size: 15px;
  text-transform: capitalize;
}
.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;
}
.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: 63vh;
  }
}
