@charset "UTF-8";

/*
Theme Name: Complete Kitchenware
Theme URI: https://wordpress.org/themes/twentytwentyone/ 
Author: the WordPress team
Author URI: https://wordpress.org/ 
*/

html {
  line-height: normal; 
}

body { 
  font-family: 'Plus Jakarta Sans';
  line-height: normal; 
  font-weight: 400;
  margin: 0;
  color: #5f626c; 
  font-size: 13px; 
}

/* plus-jakarta-sans-300 - latin */
@font-face { 
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 300;
  src: url('./assets/fonts/plus-jakarta-sans-v8-latin-300.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* plus-jakarta-sans-regular - latin */ 
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;
  src: url('./assets/fonts/plus-jakarta-sans-v8-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* plus-jakarta-sans-italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: italic;
  font-weight: 400;
  src: url('./assets/fonts/plus-jakarta-sans-v8-latin-italic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* plus-jakarta-sans-500 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  src: url('./assets/fonts/plus-jakarta-sans-v8-latin-500.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* plus-jakarta-sans-600 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  src: url('./assets/fonts/plus-jakarta-sans-v8-latin-600.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* plus-jakarta-sans-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  src: url('./assets/fonts/plus-jakarta-sans-v8-latin-700.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* plus-jakarta-sans-800 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 800;
  src: url('./assets/fonts/plus-jakarta-sans-v8-latin-800.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

.header.fixed_header {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}

.header.fixed_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #181c43;
  -moz-box-shadow: 0 0 8px -5px #333;
  -webkit-box-shadow: 0 0 8px -5px #333;
  box-shadow: 0 0 8px -5px #333;
}

@-webkit-keyframes animationFade {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes animationFade {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.header.fixed_header {
  background: #f5f2f2;
  top: 0;
  left: 0;
  right: 0;
  position: fixed;
  margin: 0;
  z-index: 1002;
  -webkit-animation-name: animationFade;
  -o-animation-name: animationFade;
  animation-name: animationFade;
  -webkit-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -moz-box-shadow: 0 0 8px -5px #333;
  -webkit-box-shadow: 0 0 8px -5px #333;
  box-shadow: 0 0 8px -5px #333;
}

img {
  max-width: 100%;
}

p {
  margin-bottom: 15px;
  line-height: 1.5;
  font-size: 13px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  margin-bottom: 15px;
  color: #282828;
}

p:last-child {
  margin-bottom: 0px;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0px;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

a {
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  text-decoration: none;
}

button,
:after,
:before {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

a:hover {
  text-decoration: none;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  outline: none;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

figure {
  margin: 0;
}

input:focus,
textarea:focus {
  outline: none;
  background: transparent;
  border-color: #5a5a5a;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}

/* header css start */
/*********start header********/
.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  /*border-bottom: 1px solid rgba(255, 255, 255, 0.2);*/
}

.header_top {
  /* text-align: right; */
  padding: 10px 0;
  background: #2e3652;
}

.header_top .row {
  align-items: center;
}

.header-links li {
  display: inline-block;
  line-height: 0.8;
  padding-right: 12px;
  margin-right: 10px;
  border-right: 1px solid #fff
}

.header-links li:last-child {
  margin: 0;
  padding: 0;
  border: 0
}

.header-links li a {
  color: #fff;
  font-weight: 300;
  font-size: 13px;
}

.header_contacts {
  text-align: right;
}

.header_contacts li {
  display: inline-block;
  margin-right: 30px
}

.header_contacts li:last-child {
  margin-right: 0
}

.header_contacts li a {
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  display: flex;
  width: 100%;
  align-items: center;
}

.header_contacts li a:hover {
  color: #cf5636;
}

.header_contacts li i {
  font-size: 14px;
  color: #ffff;
  margin-right: 7px;
  margin-bottom: -2px;
}

.header_contacts li:last-child i {
  font-size: 20px
}

.hderinr {
  position: relative;
  align-items: center;
  justify-content: space-between;
  display: flex;
  width: 100%;
  padding: 15px 0 8px
}

.header.fixed_header.showHdrMnu {
  padding-bottom: 5px;
}

.head-menu {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
}

/* .fixed_header .head-menu {
  display: none
} */

.fixed_header.showHdrMnu .head-menu {
  display: flex;
  padding-bottom: 5px;
}

.logo {
  width: auto;
  display: block;
  position: relative;
  z-index: 10;
  width: 150px;
}

.mob-search {
  display: none
}

.header_search {
  border: 1px solid #cacfe2;
  border-radius: 30px;
}

.search-field {
  display: flex;
  width: 100%;
  align-items: center;
}

.search-field input[type=search] {
  width: 430px;
  padding: 10px 15px;
  height: 38px;
  border: 0 !important;
  outline: none !important;
  border-radius: 30px 0 0 30px;
}

.search-field input[type=submit],
.search-btn {
  margin: 0 4px;
  height: 30px;
  width: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background-color: #999999;
  background-image: url(./assets/images/search.png);
  color: #fff;
  /* font-size: 15px; */
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px;
}

.header_info {
  display: flex;
  align-items: center;
}

.head-menu .collapse-button {
  background-color: transparent; 
}

.head-menu .collapse-button .icon-bar {
    margin: 4px auto;
    background-color: #cf5635;
    height: 2px;
    width: 25px;
}

.account-info {
  margin-right: 30px;
  display: flex;
  align-items: center;
}

.account-info i {
  width: 36px;
  height: 36px;
  border: 1px solid #cacfe2;
  border-radius: 50%;
  color: #231f20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 9px;
  font-size: 19px;
}

.a-info-text span a {
  font-size: 11px;
  color: #505050
}

.a-info-text span a:hover {
    color: #cf5635;
}

.a-info-text p a, .header_info .account-info {
  font-size: 13px;
  color: #000000;
}

.a-info-text p a:hover, .header_info .account-info:hover {
    color: #cf5635;
}

span.count {
  position: absolute;
  right: -12px;
  top: -9px;
  background: #cc3300;
  /* padding: 1px 2px; */
  border-radius: 30px;
  line-height: 1;
  font-weight: 300;
  color: #fff;
  font-size: 11px;
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}

span.countNo {
  position: absolute;
  right: -12px;
  top: -9px;
  background: #cc3300;
  /* padding: 1px 2px; */
  border-radius: 30px;
  line-height: 1;
  font-weight: 300;
  color: #fff;
  font-size: 9px;
  width: 18px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.basket {
  position: relative;
}

.shopping-info li {
  display: inline-block;
}

.shopping-info li i {
  color: #231f20;
  font-size: 22px;
  position: relative;
}

.shopping-info li img {
  width: 23px;
}

.shopping-info li:not(:last-child) {
  margin-right: 30px
}

.shopping-info li.wish a {
  position: relative;
}

.shopping-info li.wish a span.wishlist_products_counter_number {
  position: absolute;
  right: -2px;
  top: -15px;
  background: #cc3300;
  border-radius: 30px;
  line-height: 1;
  font-weight: 300;
  color: #fff;
  font-size: 13px;
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.shopping-info li.wish a .wishlist_products_counter_text {
  display: none;
}

.shopping-info li.wish a:before {
  content: "\e909" !important;
  font-size: 36px !important;
  color: #231f20 !important;
}


.wishlistCont table.shop_table td {
  text-align: left;
}

.wishlistCont table.shop_table td .wishlist-in-stock {
  font-size: 16px;
  line-height: 26px;
}

.wishlistCont table.shop_table td.product-price del .woocommerce-Price-amount {
  text-decoration: line-through;
  padding-right: 8px;
}

.wishlistCont table.shop_table td.product-add-to-cart .add_to_cart_button {
  font-size: 15px;
  min-width: 120px !important;
  display: inline-block !important;
  padding: 15px 15px !important;
  background: #cf5636 !important;
  color: #fff !important;
  border-radius: 0 !important;
  align-items: center !important;
  border: 0 !important;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  margin-left: 15px;
}

.wishlistCont table.shop_table td.product-add-to-cart .add_to_cart_button:hover {
  background: #2e3652 !important;
}

.wishlistCont table.shop_table td.product-name a {
  color: #cf5636;
  font-size: 16px;
  line-height: 24px;
}

.wishlistCont table.shop_table td.product-name a:hover {
  color: #2e3652;
}

.wishlistCont .wishlist-title {
  display: none;
}

.wishlistCont table.shop_table th {
  border-top: 0 !important;
}

ul.slimmenu li a {
  display: inline-flex;
  color: #000;
  padding: 0;
  font-size: 12.5px;
  line-height: 1.1;
  font-weight: 300;
  align-items: center;
  position: relative;
  text-align: left;
}

ul.slimmenu li a img {
  height: 18px !important;
  width: auto !important;
  margin-right: 6px;
  padding-right: 0 !important;
}

ul.slimmenu li a span {
    padding-left: 0 !important;
}

ul.slimmenu li {
  margin-right: 22px;
  padding: 14px 0;
  background: none !important;
  float: none;
  display: inline-block;
}

ul.slimmenu li:last-child {
  margin: 0px;
}

ul.slimmenu li.current-menu-item a,
ul.slimmenu li:hover a {
  color: #cf5636
}

ul.slimmenu li.current-menu-item a {}

ul.slimmenu li.current-menu-item:after,
ul.slimmenu li:hover:after {
  width: 14px;
}

ul.slimmenu {
  text-align: center;
  width: 100%;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
  background: #f1f1f1 !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-toggle-on:hover > a.mega-menu-link {
  background: #ddd !important;
}

.banner {
  width: 100%;
  position: relative;
  margin-top: 180px
}

.sticker {
  position: absolute;
  right: 0;
  top: 14%;
  z-index: 10;
  width: 86px;
  right: 12.5%;
}

.banner_item figure:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
}

.banner_item figure img {
  width: 100%
}

.banner_item {
  position: relative;
  z-index: 1
}

.banner_item figure {
  position: relative;
}

.banner_text {
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.banner_in {
  max-width: 550px
}

.banner_text h3 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  line-height: 56px;
  margin-bottom: 10px;
}

.banner_text p {
  color: #fff;
  font-size: 17px;
}

.banner-btn,
.more {
  display: inline-flex;
  padding: 12px 15px;
  background: #4e90cd;
  color: #fff;
  border-radius: 4px;
  align-items: center;
}

.banner-btn:hover,
.more:hover {
  background: #d97b62;
  color: #fff;
}

.banner-btn:after,
.more:after {
  content: '\f178';
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  margin-left: 18px;
}

.banner .owl-dots {
  position: absolute;
  bottom: 10%;
  left: 9%;
  z-index: 10;
}

.banner .owl-dots button {
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  margin: 0 5px
}

.banner .owl-dots button.active {
  outline: 1px solid #fff;
  outline-offset: 2px;
  width: 7px;
  height: 7px;
}

.innrbnr img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.inrBnrCont {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#breadcrumbs span {
  padding-right: 10px;
  padding-left: 10px;
}

#breadcrumbs span.breadcrumb_last {
  padding-right: 0;
  padding-left: 10px;
}

#breadcrumbs span,
#breadcrumbs span a {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 25px;
}

.singleProductTopWrap #breadcrumbs span,
.singleProductTopWrap #breadcrumbs span a {
  font-size: 18px;  
}

#breadcrumbs span a:hover {
  color: #cf5636
}

.inrPgeTitle h1 {
  color: #ffffff;
  font-size: 60px;
  font-weight: 600;
  margin-top: 5px;
}

.our-products {
  padding: 80px 0 0;
}

.head-right {
  text-align: right;
}

.sec-head {
  align-items: center;
  margin-bottom: 35px
}

.sec-head h1,
.sec-head h2 {
  font-size: 45px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px
}

.cat_item {
  padding: 0 7px;
  margin-bottom: 14px;
  display: flex;
}

.cat_box {
  box-shadow: 0px 0px 3px 1px rgba(46, 54, 82, 0.15);
  border: 1px solid;
  padding: 12px 16px;
  width: 100%;
  position: relative;
  border: 1px solid #e3e5f1;
  transition: all 0.3s;
}

.cat_box:hover {
  transform: scale(1.05);
}

.cat_box a {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0
}

.cat_box h5 {
  color: #5f626c;
  font-size: 14px;
  font-weight: 600;
}

.cat_image {
  margin-bottom: 6px;
}

.cat_image img {
  height: 160px;
  margin: auto;
  object-fit: contain;
}

.cat-wrap-left {
  display: flex;
}

.imgovrlayparent {
  position: relative;
}

.cat-wrap-left img {
  height: calc(100% - 14px);
  object-fit: cover;
  width: 100%
}

.imgOverlayTxtWrap {
    position: absolute;
    bottom: 14px;
    left: 12px;
    right: 12px;
    height: 80px;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.imgOverlayTxtWrap p {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
}

.ovrlayLink {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 12px;
    width: 96.4%;
    height: 98.6%;
    z-index: 2;
}

.arrival {
  padding: 60px 0
}

.product_wrap .owl-stage-outer {
  padding: 7px 0
}

.product_wrap .owl-stage {
  display: flex;
}

.owl-item {
  display: flex;
}

.pro-item {
  padding: 0 10px;
  display: flex;
  width: 100%;
  height: 100%;
}

.pro-box {
  border: 1px solid #e3e5f1;
  padding: 0px 20px 20px;
  width: 100%;
  position: relative;
  height: 100%;
}

.pro_image {
  padding: 30px 0
}

.pro_image img {
  height: 194px !important;
  object-fit: contain;
}

.pro-box h5 {
  color: #5f626c;
  font-size: 14px;
  font-weight: 600;
  min-height: 34px
}

.view-pro {
  display: inline-flex;
  color: #d64115;
  align-items: center;
  font-size: 13px;
  font-weight: 600
}

.view-pro:after {
  content: '\f178';
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  margin-left: 5px;
}

.product_wrap .owl-nav {
  position: absolute;
  right: -45px;
  top: 50%;
  transform: translateY(-50%);
}

.owl-prev,
.owl-next {
  width: 34px;
  height: 34px;
  display: flex;
  border-radius: 50%;
  background: #f3f4f9 !important;
  color: #2f3652 !important;
  font-size: 15px !important;
  align-items: center;
  justify-content: center;
  margin: 8px 0;
}

.owl-prev:before,
.owl-next:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
}

.owl-prev:before {
  content: '\f104';
}

.owl-next:before {
  content: '\f105';
}

.product_wrap .owl-prev:before {
  transform: rotate(90deg);
}

.product_wrap .owl-next:before {
  transform: rotate(90deg);
}

.owl-prev span,
.owl-next span {
  display: none
}

.brand_wrap {
  padding: 40px 0;
  border-top: 2px solid #dcdfeb;
}

.brand_wrap ul {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}

.brand_wrap ul li {
  width: 12%;
  padding: 15px 15px;
}

.need-help {
  text-align: center;
  padding: 80px 0;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.need-help h3 {
  font-weight: 600;
  color: #fff;
  font-size: 45px;
}

.need-help p {
  font-weight: 500;
  color: #fff;
  font-size: 16px;
  padding: 0 8%;
  margin-bottom: 30px
}

.need-help:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.need-help .more:after {
  display: none;
}

.need-help .more {
  padding: 10px 13px
}

.need-help .more span {
  width: 26px;
  height: 26px;
  background: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  margin-left: 40px;
  margin-right: -5px;
}

.client-says {
  padding: 50px 0;
  background: #f3f4f9;
}

.clien-slide .owl-item {
  padding: 0 8px
}

.clien-slide .owl-item:nth-child(odd) {
  margin-top: 50px
}

.client-box {
  padding: 30px 20px;
  background: #fff;
  width: 100%;
  height: 100%;
}

.client-box p {
  color: #5f626c;
  font-size: 12.5px;
  margin-bottom: 10px;
  line-height: 1.7
}

.client-box h6 {
  color: #5f626c;
  font-size: 13px;
  font-weight: 700;
}

.c-rating {
  margin-bottom: 20px;
  font-size: 12px;
  color: #ebab3c;
  letter-spacing: 2px;
}

.clien-slide .owl-prev,
.clien-slide .owl-next {
  background: #fff !important;
}

.clien-slide .owl-prev {
  margin-right: 10px
}

.clien-slide .owl-nav {
  position: absolute;
  right: 0;
  bottom: 100%;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
}

.owl-prev:hover,
.owl-next:hover {
  background: #4e90cd !important;
  color: #fff !important
}

.blog-sec {
  padding: 60px 0
}

.blog-text {
  padding: 17px 7px;
}

.blog-date {
  margin-bottom: 10px;
  color: #5f626c;
  font-size: 13px;
  display: flex;
  align-items: center;
}

.blog-date i {
  color: #4e90cd;
  margin-right: 6px
}

.blog-text h5 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px
}

.blog-text h5 a {
  color: #000;
}

.blog-text p {
  font-size: 13px;
  color: #5f626c;
  margin-bottom: 10px
}

.blog-box figure img {
  width: 100% !important;
  height: 224px !important;
  object-fit: cover;
}

.blog-more {
  display: inline-flex;
  color: #000;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
}

.blog-more:after {
  content: '\f178';
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  margin-left: 15px;
  color: #4e90cd;
}

.footer {
  position: relative;
  border-top: 1px solid #e9e9e9;
}

.footer:before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 160px;
  height: 116px;
  background-image: url(./assets/images/footer-before.png);
  background-size: 100%;
  background-repeat: no-repeat;
}

.footer:after {
  content: '';
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 70%;
  background-image: url(./assets/images/footer-after.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
}

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid #e9e9e9;
  position: relative;
  z-index: 1;
}

.ftr_btm_wrap {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.ftr_links li {
  display: inline-block;
  padding-right: 12px;
  font-size: 12px;
  margin-right: 10px;
  border-right: 1px solid #000000;
  line-height: 0.8
}

.ftr_links li:last-child {
  margin: 0;
  padding: 0;
  border: 0
}

.ftr_links li a,
.copy a {
  font-size: 11px;
  color: #000000
}

.copy {
  font-size: 11px;
  color: #000000;
  margin: 0
}

.designTeamLink {
  font-size: 11px !important;
}

.footer-top {
  padding: 60px 0 40px;
  position: relative;
  z-index: 1;
}

.ftr-logo {
  display: block;
  margin-bottom: 25px;
  width: 150px;
}

.footer-left p {
  color: #000000;
  font-size: 12px
}

.footer-left {
  padding-right: 0;
}

.ftr_phone img {
  display: inline-block;
  vertical-align: top;
  width: 22px;
}

.phone_text {
  display: inline-block;
  vertical-align: top;
  padding-left: 8px
}

.phone_text strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #000
}

.phone_text span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #000
}

.footer-middle h5,
.footer-right h5 {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}

.ftr_menu {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ftr_menu li {
  width: 45%;
  margin-bottom: 14px;
  padding-left: 15px;
  position: relative;
}

.ftr_menu li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px; 
  width: 8px;
  height: 8px;
  border: 1px solid #cf5635;
  border-radius: 50%;
}

.ftr_menu li a {
  font-size: 12.5px;
  color: #000;
}

.ftr_menu li a:hover, .ftr_menu li.current-menu-item a {
  color: #cf5636;
}

.ftr-middle-inner {
  width: 70%;
  margin-left: 18%;
}

.footer-right ul li {
  margin-bottom: 10px
}

.ftr-contact li:first-child i:before {
  font-weight: 600
}

.ftr-contact li:first-child i {
  vertical-align: top
}

.footer-right ul li p {
  margin: 0;
  font-size: 12px;
  color: #000000;
  display: inline-block;
  vertical-align: middle;
}

.footer-right ul li p a {
  color: #000
}

.footer-right ul li p a:hover,
.ftr_links li a:hover,
.copy a:hover,
.ftr_phone:hover .phone_text strong,
.blog-more:hover,
.blog-more:hover:after,
.blog-text h5 a:hover,
.header-links li a:hover {
  color: #cf5636
}

.footer-right ul li i {
  color: #cf5635;
  display: inline-block;
  vertical-align: middle;
  font-size: 17px;
  margin-right: 7px;
}

.footer-right ul.timing li i {
  font-size: 14px
}

.footer-right h5 {
  margin-bottom: 15px
}

.more {
  padding: 15px 15px;
}

.ftr_links.last {
  order: 1
}

.product-single .inrBnrCont {
  position: static;
  display: block;
  text-align: left;
}

.product-single #breadcrumbs span,
.product-single #breadcrumbs span a {
  color: #0c0c0c;
}

.blogArchiveSec .mainSidebarColm {
  padding-left: 60px;
}

.keyob_sidebar_wrapper {
  margin-bottom: 30px;
}

.main_Sidebar_wrapper .keyob_sidebar_wrapper:last-child {
  margin-bottom: 0;
}

body.blog .sidebar_recent_post {
  margin-top: -4px;
}

.sidebar_title_wrapper h3 {
  color: #000;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.sidebar_body_sec .recnt_postbxs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.sidebar_body_sec .recnt_postbxs:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.recnt_postbxs .recnt_postimg img {
  width: 95px !important;
  height: 95px !important;
  object-fit: cover;
  border-radius: 100%;
}

.recnt_postbxs .postcont {
  width: 70%;
  padding-left: 18px;
}

.recnt_postbxs .postcont span {
  font-size: 13px;
  font-weight: 500;
}

.recnt_postbxs .postcont a {
  display: block;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  padding-top: 7px;
}

.recnt_postbxs .postcont a:hover {
  color: #cf5636;
}

.sidebar_category_wrapper li,
.sidebar_archive_wrapper li {
  width: 100%;
}

.sidebar_category_wrapper li:last-child,
.sidebar_archive_wrapper li:last-child {
  margin-bottom: 0;
}

.sidebar_tags_wrapper {
  display: flex;
  flex-wrap: wrap;
}

.sidebar_tags_wrapper li {
  padding-right: 8px;
}

.sidebar_tags_wrapper li a {
  padding: 10px 12px;
  font-size: 14px;
  line-height: 8px;
  background: #cf5636;
  color: #ffffff;
  display: inline-block;
  margin-bottom: 8px;
}

.sidebar_tags_wrapper li a:hover {
  background: #2e3652;
}

body.single-post .sidebar_recent_post {
  margin-top: 15px;
}

.postThumbWrp .post-thumbnail img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
}

.postThumbWrp .blog-text {
  padding: 20px 0;
}

.themeTxt h1 {
  color: #000;
  font-size: 60px;
  line-height: 70px;
  margin-bottom: 15px;
}

.themeTxt h2 {
  color: #000;
  font-size: 50px;
  line-height: 60px;
  margin-bottom: 15px;
}

.themeTxt h3 {
  color: #000;
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 15px;
}

.themeTxt h4 {
  color: #000;
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 15px;
}

.themeTxt p {
  color: #000000;
  font-size: 16px;
  line-height: 26px;
}

.themeTxt a {
  color: #cf5636;
}

.single-content .themeTxt a {
  text-decoration: underline !important;
}

.themeTxt a:hover {
  color: #2e3652;
}

.themeTxt ul li {
  color: #000000;
  font-size: 16px;
  margin-bottom: 16px;
  padding-left: 20px;
  position: relative;
  width: 100%;
}

.themeTxt ol {
  padding-left: 17px;
}

.themeTxt ol li {
  color: #000000;
  font-size: 16px;
  margin-bottom: 16px;
  position: relative;
  width: 100%;
}

.themeTxt ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  border: 1px solid #cf5635;
  border-radius: 50%;
}

.comnPageSec {
  padding: 80px 0;
}

.contctFrmMainRow {
    margin-top: 25px;
}

.contctDtlsWrp .info-container {
  /*background-color: #cf5636;*/
  height: 100%;
  padding: 0 20px 0 0;
  /*border-radius: 10px 0 0 10px;*/
  /*box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);*/
}

.contctDtlsWrp .info-item {
  width: 100%;
  /*background-color: #ef7859;*/
  margin-bottom: 20px;
  padding: 0 0 20px;
  border-radius: 10px;
  color: #fff;
}

.contctDtlsWrp .info-item i {
  font-size: 20px;
  color: #fff;
  float: left;
  min-width: 44px;
  width: 44px;
  height: 44px;
  /*background-color: rgba(255, 255, 255, 0.2);*/
  background-color: #ef7859;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contctDtlsWrp .info-item p br {
  display: none;
}

.contctDtlsWrp .info-item span {
  display: block;
  padding: 0;
  /*color: #ffffff;*/
  color: #ef7859;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contctDtlsWrp .info-item p,
.contctDtlsWrp .info-item a {
  padding: 0;
  /*color: #ffffff;*/
  color: #ef7859;
  font-size: 14px;
  margin-bottom: 0;
}

.contctDtlsWrp .info-item a:hover {
  color: #000000;
}

.cntctInfoMainCol {
  padding-right: 0;
}

.cntctFrmMainCol {
  padding-left: 0;
}

.contctDtlsWrp .cntctFrmMainCol .wpcf7 {
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 0 10px 10px 0;
}

.contctDtlsWrp .form-group input[type="text"],
.contctDtlsWrp .form-group input[type="email"],
.contctDtlsWrp .form-group input[type="tel"] {
  padding: 12px 15px;
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  display: block;
  width: 100%;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  border: 1px solid #999999;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  margin-bottom: 25px;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.contctDtlsWrp .form-group textarea {
  padding: 12px 15px;
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  display: block;
  width: 100%;
  height: 165px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  border: 1px solid #999999;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  resize: none;
}

.contctDtlsWrp .form-group input[type="text"]:focus,
.contctDtlsWrp .form-group input[type="email"]:focus,
.contctDtlsWrp .form-group input[type="tel"]:focus,
.contctDtlsWrp .form-group textarea:focus {
  border: 1px solid #cf5636;
}

.section-header {
  padding-bottom: 40px;
}

.section-header h2 {
  font-weight: 600
}

.section-header h3 {
  font-weight: 600
}

.contctFrmBtnWrp {
  margin-top: 30px;
  position: relative;
  display: inline-block;
}

.wpcf7-submit {
  min-width: 155px;
  display: inline-flex;
  padding: 12px 15px;
  background: #cf5636;
  color: #fff;
  border-radius: 4px;
  align-items: center;
  border: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

.wpcf7-submit:hover,
.wpcf7-submit:focus {
  background: #2e3652;
}

.contctFrmBtnWrp::after {
  content: '\f178';
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  margin-left: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  right: 20px;
}

.contctFrmBtnWrp .wpcf7-spinner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #cf5636 !important;
  opacity: 1;
}

.cntctFrmMainCol form {
  position: relative;
}

.cntctFrmMainCol form .form-group {
  position: relative;
}

.cntctFrmMainCol form .form-group .wpcf7-not-valid-tip {
  position: absolute;
  bottom: -23px;
  font-size: 14px;
}

.cntctFrmMainCol .wpcf7 form.invalid .wpcf7-response-output,
.cntctFrmMainCol .wpcf7 form.unaccepted .wpcf7-response-output,
.cntctFrmMainCol .wpcf7 form.payment-required .wpcf7-response-output {
  position: absolute;
  bottom: -65px;
  left: -8px;
}

.contactmap {
  padding-top: 50px;
}

.contctMapWrp iframe {
  width: 100% !important;
  max-width: 100% !important;
  height: 250px !important;
  /*border: 1.5px solid #cf5636 !important;*/
}

.brandsLists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.brandsLists li {
  width: 15%;
  padding: 0 12px;
}

.brndslistImgWrp {
  width: 100%;
  height: 150px;
  box-shadow: 0px 0px 3px 1px rgba(46, 54, 82, 0.15);
  border: 1px solid #e3e5f1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px
}

.brndslistImgWrp img {
  width: 140px;
  height: 75px;
  object-fit: contain;
}

.defaultContWrap {
  min-height: 30vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Woocommerce */

.shopBody {
  padding: 80px 0;
}

.listingpnl {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.lftfilter {
  width: 100%;
  max-width: 300px;
  margin-right: 40px;
}

.woof_container {
  margin-bottom: 60px;
}

.lftfilter .filteraccdian .woof_block_html_items {
    max-height: 400px;
    overflow: hidden;
    overflow-y: auto;
}

.lftfilter .filteraccdian .woof_block_html_items::-webkit-scrollbar {
  width: 8px;
}

.lftfilter .filteraccdian .woof_block_html_items::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
.lftfilter .filteraccdian .woof_block_html_items::-webkit-scrollbar-thumb {
  background: #cf5635; 
}

.lftfilter .filteraccdian .woof_block_html_items::-webkit-scrollbar-thumb:hover {
  background: #a43c1f; 
}

.filteraccdian .woof_container:last-child {
  margin-bottom: 0;
}

.listingrt {
  width: 100%;
  position: relative;
}

.listingrt .woof_autohide_wrapper {
  display: none !important;
}

.filteraccdian h4 {
  color: #0c0c0c;
  font-size: 22px;
  font-weight: 600;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 20px;
  margin-bottom: 28px;
  text-transform: capitalize;
}

.filteraccdian ul li {
  margin-bottom: 18px !important;
  margin-top: 0 !important;
}

.filteraccdian ul li div {
  min-width: 20px;
}

.filteraccdian ul li label {
  color: #6b6e75;
  font-weight: 600;
  font-size: 16px;
}

.filteraccdian ul li label.woof_checkbox_label_selected {
  color: #cf5635 !important;
}

.filteraccdian ul li input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border-radius: 0;
  margin-right: 10px;
}

.filteraccdian ul li div.icheckbox_minimal-orange.checked {
  border: 1px solid #cf5636;
}

.shopBodyTopSec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 17px;
  margin-bottom: 20px;
}

.shopBodyTopFiltrSec {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.shopBodyTopSec span,
.shopBodyTopSec select,
.shopBodyTopSec p {
  color: #0c0c0c;
  font-weight: 600;
  font-size: 16px;
}

.shopBodyTopSec select {
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  background: url(./assets/images/selectbox-arrow.png) no-repeat 72% center;
  background-size: 14px 7px;
  padding: 5px 15px 5px 10px !important;
  min-height: 30px;
}

.shopBodyTopSec select:focus {
  outline: none;
}

.pro-box .prdctDtls h2.woocommerce-loop-product__title {
  min-height: auto;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #5f626c;
  min-height: 65px;
}

.listingrt .products .pro-item {
  padding-left: 0;
  padding-right: 0;
  margin-top: 25px;
  position: relative;
  height: auto;
}

.listingrt .products .pro-item .pro-box {
  border: 1px solid #cccccc;
  min-height: 557px;
}

.prdctDtls .pwb-brands-in-loop a {
  display: block;
  color: #5f626c;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.listingrt .pro-item .pro_image a {
  display: flex;
  justify-content: center;
}

.sellersldr .pro-item .pro_image a {
    display: flex;
    justify-content: center;
}

.pro-box .prdctDtls span.price {
  font-size: 18px;
  font-weight: 600;
  color: #cf5635;
  display: block;
}

.pro-box .prdctDtls span.price ins {
    text-decoration: none !important;
}

.pro-box .prdctDtls span.price em {
    color: #262626 !important;
    font-style: normal !important;
    font-weight: 400;
}

.pro-box .prdctDtls a.add_to_cart_button {
  display: inline-block;
  font-size: 16px;
  line-height: 45px;
  font-weight: 500;
  position: relative;
  background-color: #4d90ce;
  height: 45px;
  padding: 0 20px 0 45px;
  color: #ffffff;
  border-radius: 5px;
  position: relative;
  margin-top: 25px;
  position: relative;
}

.pro-box .prdctDtls a.add_to_cart_button:hover {
  background-color: #cf5635;
}

.pro-box .prdctDtls a.add_to_cart_button::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: url(./assets/images/carticon.png) no-repeat;
  background-size: 20px 18px;
  width: 20px;
  height: 18px;
}

.listingrt .products .pro-item .pro-box .prdctDtls .star-rating {
    display: none !important;
}

.shopBody .listingrt h1.page-title {
  position: absolute;
  top: 6px;
  color: #0c0c0c !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  display: none !important;
}

.wooResultOrdrbyWrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.lftfilter .irs--round .irs-bar,
.lftfilter .irs--round .irs-to,
.lftfilter .irs--round .irs-from {
  background-color: #cf5635 !important;
}

.lftfilter .irs--round .irs-handle {
  border: 4px solid #cf5635;
}

.lftfilter .irs--round .irs-to:before,
.lftfilter .irs--round .irs-from:before {
  border-top-color: #cf5635 !important;
}

.wooResultOrdrbyWrap .woocommerce-result-count {
  order: 1;
  color: #0c0c0c !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  margin-bottom: 0 !important;
  margin-left: 40px !important
}

.wooResultOrdrbyWrap form.woocommerce-ordering {
  float: none !important;
  margin-bottom: 0 !important;
}

.wooResultOrdrbyWrap form.woocommerce-ordering select {
  background-color: transparent !important;
  color: #0c0c0c !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  border: 0;
  /*-webkit-appearance: none;*/
  /*-moz-appearance: none;*/
  /*-o-appearance: none;*/
  /*appearance: none;*/
  /*background: url(./assets/images/selectbox-arrow.png) no-repeat 97% center;*/
  /*background-size: 14px 7px;*/
  padding: 5px 15px 5px 0 !important;
  min-height: 30px;
  cursor: pointer !important;
}

.wooResultOrdrbyWrap form.woocommerce-ordering select:focus {
  outline: none;
}


.pro-box .yith-wcwl-add-to-wishlist {
  position: absolute;
  top: 15px;
  right: 15px;
  margin-top: 0;
  z-index: 10;
}

.pro-box .yith-wcwl-add-to-wishlist a {
  width: 40px !important;
  height: 40px !important;
  border-radius: 100% !important;
  border: 1px solid #cccccc !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.pro-box .yith-wcwl-add-to-wishlist.exists a,
.pro-box .yith-wcwl-add-to-wishlist a:hover {
  border: 1px solid #cf5635 !important;
}

.pro-box .yith-wcwl-add-to-wishlist span.feedback {
  display: none !important;
}

.pro-box .yith-wcwl-add-to-wishlist i.fa-heart {
  color: #cf5635 !important;
  font-size: 22px;
}

.pro_image .yith-wcwl-add-button a:hover {
  border: 1px solid #cf5635;
}

.pro_image .yith-wcwl-add-button a i {
  color: #cccccc;
  font-size: 22px;
  margin-right: 1px;
}

.pro_image .yith-wcwl-add-button a:hover i {
  color: #cf5635;
}

#yith-wcwl-popup-message {
  background: transparent !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}

.listingrt nav {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 60px;
}

.listingrt nav ul.page-numbers {
  display: flex;
  align-items: center;
  border: 0 !important;
}

.listingrt nav ul li {
  border: 0 !important;
}

.listingrt nav ul li .page-numbers {
  border-radius: 100% !important;
  width: 38px !important;
  height: 38px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  border: 0 !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #6b6e75 !important;
  margin-right: 8px !important;
}

.listingrt nav ul .page-numbers.current,
.listingrt nav ul .page-numbers:hover {
  background-color: #cf5635 !important;
  color: #ffffff !important;
}

.listingrt nav .page-numbers li:last-child {
  margin-right: 0;
}

.shopBody .pro-box span.onsale, .sellersldr .pro-box span.onsale {
  top: 4px !important;
  left: 4px !important;
  display: inline-block;
  background: #cf5635 !important;
  color: #fff !important;
  border: 1px solid #ffffff !important;
  border-radius: 0 !important;
  height: 30px;
  line-height: 34px;
}

#comments {
  display: none;
}

.completeKitchenCart table {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: 0px 0px 3px 1px rgba(46, 54, 82, 0.15);
  -moz-box-shadow: 0px 0px 3px 1px rgba(46, 54, 82, 0.15);
  -webkit-box-shadow: 0px 0px 3px 1px rgba(46, 54, 82, 0.15);
}

.completeKitchenCart table tr th {
  color: #000826 !important;
  font-size: 20px;
  line-height: 50px !important;
  font-weight: 600 !important;
}

.completeKitchenCart table .product-remove a {
    font-size: 28px !important;
    text-decoration: none !important;
    display: block !important;
    width: 35px !important;
    height: 35px !important;
    text-align: center !important;
    line-height: 24px !important;
    border-radius: 100% !important;
    border: 1px solid red !important;
    color: #2e3652 !important;
}

.completeKitchenCart table .product-remove a:hover {
    color: red !important;
}

.completeKitchenCart table .product-remove a:hover {
  color: red !important;
  background: transparent;
}

.completeKitchenCart table .product-thumbnail a {
  display: block;
  padding: 15px 0;
  margin-bottom: 0;
}

.completeKitchenCart table .product-thumbnail a img {
  width: 60px !important;
  max-width: 150px !important;
  border: 1px solid #2e3652 !important;
  padding: 3px 3px;
}

.completeKitchenCart table .product-price span,
.completeKitchenCart table .product-subtotal span {
  display: inline-block;
  color: #2e3652;
  font-size: 18px;
  line-height: 28px;
  max-width: 150px;
}

.completeKitchenCart table td.actions {
  padding: 15px 20px !important;
}

.completeKitchenCart table td.actions #coupon_code {
  font-size: 16px;
  line-height: 46px;
  padding: 0 15px !important;
  height: 46px !important;
  width: 200px !important;
  border: 1px solid #2e3652 !important;
}

.completeKitchenCart table td.actions button.button {
  min-width: 155px !important;
  display: inline-block !important;
  padding: 15px 15px !important;
  background: #cf5636 !important;
  color: #fff !important;
  border-radius: 0 !important;
  align-items: center !important;
  border: 0 !important;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  margin-left: 15px;
}

.completeKitchenCart table td.actions button.button:hover {
  background: #2e3652 !important;
}

.completeKitchenCartTotals .completeKitchenCartTotlsHdng {
  font-weight: 500;
  margin-top: 35px;
}

.completeKitchenCartTotals table {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: 0px 0px 3px 1px rgba(46, 54, 82, 0.15);
  -moz-box-shadow: 0px 0px 3px 1px rgba(46, 54, 82, 0.15);
  -webkit-box-shadow: 0px 0px 3px 1px rgba(46, 54, 82, 0.15);
}

.completeKitchenCartTotals table th {
  color: #2e3652 !important;
  font-size: 18px !important;
  line-height: 38px !important;
  padding: 10px 20px !important;
  margin: 0 !important;
}

.completeKitchenCartTotals table td {
  color: #000826 !important;
  font-size: 16px !important;
  line-height: 26px !important;
  padding-top: 15px !important;
}

.completeKitchenCartTotals .wc-proceed-to-checkout {
    text-align: right;
}

.completeKitchenCartTotals .wc-proceed-to-checkout a {
  font-size: 16px !important;
  min-width: 155px !important;
  display: inline-block !important;
  padding: 15px 15px !important;
  background: #cf5636 !important;
  color: #fff !important;
  border-radius: 0 !important;
  align-items: center !important;
  border: 0 !important;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

.completeKitchenCartTotals .wc-proceed-to-checkout a:hover {
  background: #2e3652 !important;
}

.completeKitchenCartTotals #shipping_method li {
    padding-left: 0 !important;
}

.completeKitchenCartTotals #shipping_method li::before {
    display: none !important;
}

.completeKitchenCartTotals #shipping_method li input {
    vertical-align: middle !important;
    margin-top: 0 !important;
}

.completeKitchenCartTotals .shipping-calculator-form p {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.completeKitchenCartTotals .shipping-calculator-form input[type="text"] {
    padding: 8px 15px !important;
    box-shadow: none !important;
    font-size: 14px !important;
    display: block !important;
    width: 100% !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    color: #000000 !important;
    border: 1px solid #999999 !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    border-radius: 0 !important;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !important;
}

.completeKitchenCartTotals .shipping-calculator-form input[type="text"]:focus {
    border: 1px solid #cf5635 !important;
}

.completeKitchenCartTotals .shipping-calculator-form .select2-container {
    line-height: 0 !important;
}

.completeKitchenCartTotals .shipping-calculator-form .select2-container span.selection {
    height: 38.88px !important;
    display: inline-block;
    width: 100% !important;
}

.completeKitchenCartTotals .shipping-calculator-form .select2-container span.selection .select2-selection {
    background-color: #fff !important;
    border: 1px solid #999999 !important;
    height: 38.88px !important;
    width: 100% !important;
    border-radius: 0 !important;
}

.completeKitchenCartTotals .shipping-calculator-form .select2-container span.selection .select2-selection .select2-selection__rendered {
    color: #000000 !important;
    line-height: 38.88px !important;
    height: 100% !important;
    font-size: 14px !important;
    padding: 0 15px !important;
}

.completeKitchenCartTotals .shipping-calculator-form .select2-container span.selection .select2-selection .select2-selection__arrow {
    height: 38.88px !important;
}

.completeKitchenCartTotals .shipping-calculator-form p button.button {
    font-size: 15px !important;
    display: block !important;
    padding: 12px 20px !important;
    background: #cf5636 !important;
    color: #fff !important;
    border-radius: 0 !important;
    border: 0 !important;
    margin: 0 0 0 auto;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}

.completeKitchenCartTotals .shipping-calculator-form p button.button:hover {
    background-color: #2e3652 !important;
}

.completeKitchenCart .quantity {
  display: flex;
  align-items: center;
}

.completeKitchenCart .quantity .minus {
  border: 1px solid #2e3652 !important;
  border-right: 0 !important;
  width: 40px;
  height: 50px;
  font-size: 25px;
  padding: 0 !important;
  background: transparent;
}

.completeKitchenCart .quantity input.qty {
  font-size: 16px !important;
  line-height: 50px !important;
  height: 50px !important;
  width: 60px !important;
  border: 1px solid #2e3652 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  background: transparent !important;
}

.completeKitchenCart .quantity .plus {
  border: 1px solid #2e3652 !important;
  border-left: 0 !important;
  width: 40px;
  height: 50px;
  font-size: 18px;
  padding: 0 !important;
  background: transparent;
}

.woocommerce-message,
.woocommerce-info {
  border-top-color: #cf5636;
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: #cf5636;
}

.woocommerce-message a.button {
    color: #fff!important;
    background: #cf5635 !important;
    font-size: 15px;
    padding: 12px 15px;
}

.woocommerce-message a.button:hover {
    background: #2e3652 !important;
}

.pro-box .added_to_cart.wc-forward {
  display: none;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.loading::after {
  content: "\e01c";
  vertical-align: top;
  font-weight: 400;
  position: absolute;
  top: 1px;
  right: -23px;
  animation: spin 2s linear infinite;
  color: #cf5635;
}

.woocommerce .return-to-shop .wc-backward {
  font-size: 15px;
  min-width: 120px !important;
  display: inline-block !important;
  padding: 15px 15px !important;
  background: #cf5636 !important;
  color: #fff !important;
  border-radius: 0 !important;
  align-items: center !important;
  border: 0 !important;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

.woocommerce .return-to-shop .wc-backward:hover {
  background: #2e3652 !important;
}

li.wish .blockUI.blockOverlay,
li.wish .blockUI {
  display: none !important;
}

.compltKitchnwreLogin .woocommerce-form {
  box-shadow: 0px 0px 3px 1px rgba(46, 54, 82, 0.15);
  border: 1px solid;
  padding: 12px 16px;
  width: 100%;
  position: relative;
  border: 1px solid #e3e5f1;
  transition: all 0.3s;
  min-height: 333px;
}

.compltKitchnwreLogin .woocommerce-form-row label {
  display: block !important;
  text-align: left !important;
  color: #000000 !important;
  font-size: 18px !important;
  line-height: 28px !important;
  font-weight: 600;
  text-align: left;
  margin-bottom: 5px;
}

.compltKitchnwreLogin .woocommerce-form .woocommerce-button {
  min-width: 155px;
  display: inline-flex;
  padding: 15px 15px;
  background: #cf5636 !important;
  color: #fff;
  border-radius: 4px;
  align-items: center;
  border: 0;
  margin-top: 15px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

.compltKitchnwreLogin .woocommerce-form .woocommerce-button::after {
  content: '\f178';
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  margin-left: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  right: 20px;
}

.compltKitchnwreLogin .woocommerce-form .woocommerce-button:hover {
  background: #2e3652 !important;
  color: #ffffff !important;
}

.compltKitchnwreLogin .woocommerce-form .woocommerce-form-login__rememberme {
  margin-top: 25px;
}

.compltKitchnwreLogin .woocommerce-form input[type="text"],
.compltKitchnwreLogin .woocommerce-form input[type="password"],
.compltKitchnwreLogin .woocommerce-form input[name="email"] {
  padding: 12px 15px;
  border-radius: 0 !important;
  box-shadow: none;
  font-size: 14px;
  display: block;
  width: 100%;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  border: 1px solid #999999;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  margin-bottom: 25px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

.compltKitchnwreLogin .woocommerce-form input[type="text"]:focus,
.compltKitchnwreLogin .woocommerce-form input[type="password"]:focus,
.compltKitchnwreLogin .woocommerce-form input[type="email"]:focus {
  outline: none;
  border: 1px solid #cf5636;
}

.compltKitchnMyAccNav,
.completeKitchnMyAccCont {
  box-shadow: 0px 0px 3px 1px rgba(46, 54, 82, 0.15);
  border: 1px solid;
  padding: 20px 20px;
  width: 100%;
  position: relative;
  border: 1px solid #e3e5f1;
  transition: all 0.3s;
  min-height: 220px;
}

.completeKitchnMyAccCont .form-row {
  margin-bottom: 18px !important;
}

.compltKitchnMyAccNav ul li.woocommerce-MyAccount-navigation-link--downloads {
    display: none;
}

.completeKitchnMyAccCont label {
  display: block !important;
  text-align: left !important;
  color: #000000 !important;
  font-size: 18px !important;
  line-height: 28px !important;
  font-weight: 600;
  text-align: left;
  margin-bottom: 5px;
}

.completeKitchnMyAccCont input[type="text"],
.completeKitchnMyAccCont input[type="password"],
.completeKitchnMyAccCont input[type="email"],
.completeKitchnMyAccCont input[type="tel"] {
  padding: 12px 15px;
  border-radius: 0 !important;
  box-shadow: none;
  font-size: 14px;
  display: block;
  width: 100%;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  border: 1px solid #999999;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  margin-bottom: 25px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

.completeKitchnMyAccCont input[type="text"]:focus,
.completeKitchnMyAccCont input[type="password"]:focus,
.completeKitchnMyAccCont input[type="email"]:focus {
  outline: none;
  border: 1px solid #cf5636;
}

.completeKitchnMyAccCont .form-row em {
  font-style: normal;
  font-size: 14px;
}

.completeKitchnMyAccCont .edit-account .woocommerce-Button {
  min-width: 180px;
  display: inline-flex;
  padding: 15px 15px;
  background: #cf5636 !important;
  color: #fff;
  border-radius: 4px;
  align-items: center;
  border: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

.completeKitchnMyAccCont .edit-account .woocommerce-Button::after {
  content: '\f178';
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  margin-left: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  right: 20px;
}

.completeKitchnMyAccCont .woocommerce-info .woocommerce-Button,
.completeKitchnMyAccCont .woocommerce-info a.wc-forward,
.woocommerce-address-fields button.button {
  display: inline-flex;
  padding: 15px 15px;
  background: #cf5636 !important;
  color: #fff;
  border-radius: 4px;
  align-items: center;
  border: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

.completeKitchnMyAccCont .edit-account .woocommerce-Button:hover,
.completeKitchnMyAccCont .woocommerce-info .woocommerce-Button:hover,
.completeKitchnMyAccCont .woocommerce-info a.wc-forward:hover,
.woocommerce-address-fields button.button:hover {
  background: #2e3652 !important;
  color: #ffffff !important;
}

.completeKitchnMyAccCont .edit-account legend {
  color: #000000 !important;
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
  padding-top: 10px;
}


.compltKitchnCheckout .woocommerce-billing-fields,
.compltKitchnCheckout .woocommerce-additional-fields,
.compltKitchnShippngCheckout {
  /*box-shadow: 0px 0px 3px 1px rgba(46, 54, 82, 0.15);*/
  border: 1px solid;
  padding: 20px 20px;
  width: 100%;
  position: relative;
  border: 1px solid #e3e5f1;
  transition: all 0.3s;
  min-height: 257px;
}

.compltKitchnShippngCheckout {
  margin-bottom: 30px;
}

.compltKitchnCheckout .form-row {
  margin-bottom: 18px !important;
}

.compltKitchnCheckout label {
  display: block !important;
  text-align: left !important;
  color: #000000 !important;
  font-size: 18px !important;
  line-height: 28px !important;
  font-weight: 600;
  text-align: left;
  margin-bottom: 5px;
}

.compltKitchnCheckout .woocommerce-billing-fields input,
.compltKitchnShippngCheckout input,
.page-id-9 .woocommerce-form-coupon .form-row input {
  padding: 12px 15px;
  border-radius: 0 !important;
  box-shadow: none;
  font-size: 14px;
  display: block;
  width: 100%;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  border: 1px solid #999999;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  margin-bottom: 25px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

.compltKitchnCheckout .woocommerce-billing-fields input:focus,
.compltKitchnShippngCheckout input:focus,
.page-id-9 .woocommerce-form-coupon .form-row input:focus {
  outline: none;
  border: 1px solid #cf5636;
}

.page-id-9 .woocommerce-form-coupon .form-row button.button {
  display: inline-flex;
  padding: 15px 15px;
  background: #cf5636 !important;
  color: #fff;
  border-radius: 4px;
  align-items: center;
  border: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

.page-id-9 .woocommerce-form-coupon .form-row button.button:hover {
  background: #2e3652 !important;
  color: #ffffff !important;
}

.compltKitchnCheckout #ship-to-different-address-checkbox {
  margin-right: 5px;
}

.compltKitchnCheckout .select2-container .select2-selection,
.completeKitchnMyAccCont .select2-container .select2-selection {
  height: 43px;
  border-radius: 0 !important;
  box-shadow: none;
  font-size: 16px;
  width: 100%;
  font-weight: 400;
  color: #000000;
  border: 1px solid #999999;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

.compltKitchnCheckout .select2-container .select2-selection .select2-selection__rendered,
.completeKitchnMyAccCont .select2-container .select2-selection .select2-selection__rendered {
  line-height: 43px !important;
}

.compltKitchnCheckout .select2-container--default .select2-selection--single .select2-selection__arrow,
.completeKitchnMyAccCont .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 43px !important;
  top: 0 !important;
}

.compltKitchnCheckout .woocommerce-additional-fields textarea {
  height: 180px !important;
  padding: 12px 15px;
  border-radius: 0 !important;
  box-shadow: none;
  font-size: 16px;
  display: block;
  width: 100%;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  border: 1px solid #999999;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  margin-bottom: 25px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

.compltKitchnCheckout .woocommerce-additional-fields textarea:focus {
  outline: none;
  border: 1px solid #cf5636;
}

.compltKitchnCheckout #order_review table {
  /*box-shadow: 0px 0px 3px 1px rgba(46, 54, 82, 0.15);*/
  border: 1px solid;
  padding: 20px 20px;
  width: 100%;
  position: relative;
  border: 1px solid #e3e5f1;
  transition: all 0.3s;
  border-radius: 0 !important;
}

.compltKitchnCheckout #order_review #payment {
  background: #ffffff !important;
  /*box-shadow: 0px 0px 3px 1px rgba(46, 54, 82, 0.15);*/
  border: 1px solid;
  padding: 20px 20px;
  width: 100%;
  position: relative;
  border: 1px solid #e3e5f1;
  transition: all 0.3s;
  border-radius: 0 !important;
}

.compltKitchnCheckout #order_review #payment div.payment_box {
  background-color: #ffded5 !important;
  color: #010101 !important;
}

.compltKitchnCheckout #order_review #payment div.payment_box.payment_method_stripe {
    background-color: transparent !important;
    border: 1px solid #cccccc;
    padding: 20px 25px;
}

.compltKitchnCheckout #order_review #payment div.payment_box.payment_method_stripe::before {
    top: -14px !important;
}

.compltKitchnCheckout #order_review #payment div.payment_box::before {
  border: 1em solid #ffded5 !important;
  border-right-color: transparent !important;
  border-left-color: transparent !important;
  border-top-color: transparent !important;
}

.compltKitchnCheckout #order_review #payment #place_order {
  display: inline-flex;
  padding: 15px 15px;
  background: #cf5636 !important;
  color: #fff;
  border-radius: 4px;
  align-items: center;
  border: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

.compltKitchnCheckout #order_review #payment #place_order:hover {
  background: #2e3652 !important;
  color: #ffffff !important;
}

.compltKitchnCheckout #order_review #payment ul li.wc_payment_method label {
  display: inline-block !important;
}

ul.woocommerce-error li:before {
  display: none !important;
}

.pro-box .tinv-wraper {
  position: absolute;
  top: 15px;
  right: 15px;
}

.pro-box .tinv-wraper .tinvwl_add_to_wishlist_button, .sngePrdctWishlstWrp .tinv-wraper .tinvwl_add_to_wishlist_button {
  background: #fff !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 100% !important;
  border: 1px solid #cccccc !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

.pro-box .tinv-wraper .tinvwl_add_to_wishlist_button::before, .sngePrdctWishlstWrp .tinv-wraper .tinvwl_add_to_wishlist_button::before {
  color: #cccccc !important;
  font-size: 28px !important;
  margin: 0 !important;
  transform: translate(-50%, -50%) !important;
}

.pro-box .tinv-wraper .tinvwl_add_to_wishlist_button.tinvwl-product-in-list,
.pro-box .tinv-wraper .tinvwl_add_to_wishlist_button:hover,
.sngePrdctWishlstWrp .tinv-wraper .tinvwl_add_to_wishlist_button.tinvwl-product-in-list,
.sngePrdctWishlstWrp .tinv-wraper .tinvwl_add_to_wishlist_button:hover{
  border: 1px solid #cf5635 !important;
}

.pro-box .tinv-wraper .tinvwl_add_to_wishlist_button.tinvwl-product-in-list::before, .sngePrdctWishlstWrp .tinv-wraper .tinvwl_add_to_wishlist_button.tinvwl-product-in-list::before {
  color: #cf5635 !important;
}

.pro-box .tinv-wraper .tinvwl_add_to_wishlist_button:hover::before, .sngePrdctWishlstWrp .tinv-wraper .tinvwl_add_to_wishlist_button:hover::before {
  color: #cf5635 !important;
}

#stripe-payment-data fieldset #stripe-card-element, #stripe-payment-data fieldset #stripe-exp-element, #stripe-payment-data fieldset #stripe-cvc-element {
    padding: 12px 15px;
    border-radius: 0 !important;
    font-size: 14px;
    width: 100%;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    border: 1px solid #999999;
    appearance: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}

.compltKitchnCheckout #stripe-payment-data fieldset .form-row {
    margin-bottom: 0 !important;
    padding-left: 0;
    padding-right: 0;
}


@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.pro-box .tinv-wraper .tinvwl_add_to_wishlist_button.inited-add-wishlist::before, .sngePrdctWishlstWrp .tinv-wraper .tinvwl_add_to_wishlist_button.inited-add-wishlist::before {
  font-family: none !important;
  content: "" !important;
  vertical-align: top;
  background-image: url('./assets/images/Rolling-0.9s-52px.gif') !important;
  background-size: 30px 30px !important;
  width: 30px !important;
  height: 30px !important;
}

.pro-box .tinv-wraper .tinvwl_add_to_wishlist_button.inited-add-wishlist.tinvwl-product-in-list::before, .sngePrdctWishlstWrp .tinv-wraper .tinvwl_add_to_wishlist_button.inited-add-wishlist.tinvwl-product-in-list::before {
  font-family: tinvwl-webfont !important;
  content: "\e908" !important;
  font-size: 28px !important;
  background-image: none !important;
  background-size: auto !important;
  width: auto !important;
  height: auto !important;
}

.wishlistCont .tinv-wishlist table input[type=checkbox] {
  width: 20px;
  height: 20px;
}

.completeKitchenCart.wishlistCont table tr th {
  font-size: 18px;
  line-height: 30px !important;
}

.completeKitchenCart.wishlistCont table tr th.product-price,
.completeKitchenCart.wishlistCont table tr th.product-date,
.completeKitchenCart.wishlistCont table tr th.product-stock {
  min-width: 150px !important;
}

.completeKitchenCart.wishlistCont .tinv-wishlist .product-remove button {
  font-size: 28px !important;
  color: #2e3652 !important;
  margin: 0 !important;
  width: 30px !important;
  height: 30px !important;
  transition: all 0.01s ease-in-out !important;
  -webkit-transition: all 0.01s ease-in-out !important;
  -o-transition: all 0.1s ease-in-out !important;
  -ms-transition: all 0.1s ease-in-out !important;
  background: transparent !important;
  border-radius: 100%;
  border: 1px solid red;
  display: flex;
  justify-content: center;
  align-items: center;
}

.completeKitchenCart.wishlistCont .tinv-wishlist .product-remove button:hover {
  color: red !important;
}

.completeKitchenCart.wishlistCont .tinv-wishlist .product-remove button i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.completeKitchenCart.wishlistCont .tinvwl-table-manage-list tbody tr,
.completeKitchenCart.wishlistCont .tinvwl-table-manage-list thead tr {
  border-bottom: 1px solid #cccccc !important;
}

.completeKitchenCart.wishlistCont .tinvwl-table-manage-list tbody td,
.completeKitchenCart.wishlistCont table .product-price span {
  font-size: 15px !important;
}

.completeKitchenCart.wishlistCont .tinvwl-table-manage-list tbody tr.wishlist_item {
  position: relative;
}

.completeKitchenCart.wishlistCont .tinvwl-table-manage-list tbody tr.wishlist_item td.product-remove button {
  position: absolute;
  right: 146px;
  top: 50%;
  transform: translateY(-50%);
}

.wishlistCont.wishlistCont table td.product-price del .woocommerce-Price-amount {
  text-decoration: line-through;
  padding-right: 8px;
}

.completeKitchenCart.wishlistCont .tinvwl-table-manage-list tbody td.product-action button,
.completeKitchenCart.wishlistCont .tinvwl-table-manage-list tfoot .tinvwl-input-group-btn button,
.completeKitchenCart.wishlistCont .tinvwl-table-manage-list tfoot .tinvwl-to-right button {
  min-width: 110px;
  font-size: 14px !important;
  font-weight: 500 !important;
  display: inline-flex;
  padding: 15px 15px;
  background: #cf5636 !important;
  color: #fff;
  border-radius: 0 !important;
  align-items: center;
  justify-content: center;
  border: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

.completeKitchenCart.wishlistCont .tinvwl-table-manage-list tbody td.product-action button:hover,
.completeKitchenCart.wishlistCont .tinvwl-table-manage-list tfoot .tinvwl-input-group-btn button:hover,
.completeKitchenCart.wishlistCont .tinvwl-table-manage-list tfoot .tinvwl-input-group-btn button:hover,
.completeKitchenCart.wishlistCont .tinvwl-table-manage-list tfoot .tinvwl-to-right button:hover {
  background: #2e3652 !important;
  color: #ffffff !important;
}

.completeKitchenCart.wishlistCont .tinvwl-table-manage-list tfoot .tinvwl-input-group-btn button .tinvwl-mobile {
  display: none !important;
}

.completeKitchenCart.wishlistCont .tinvwl-table-manage-list tfoot .tinvwl-to-left #tinvwl_product_actions {
  border-radius: 0 !important;
  height: 44px !important;
  border: 1px solid #999999;
}

.completeKitchenCart.wishlistCont .tinvwl-table-manage-list tfoot .tinvwl-to-left #tinvwl_product_actions:focus {
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid #cf5636;
}

.singleProductTopWrap .inrBnrCont {
  position: static;
  display: block;
  text-align: left;
  padding-top: 40px;
  margin-top: 240px;
  border-top: 1px solid #c8c8c8;
}

.singleProductTopWrap #breadcrumbs>span, .singleProductTopWrap #breadcrumbs span span:first-child{
 padding-left: 0;
}

.singleProductTopWrap #breadcrumbs span,
.singleProductTopWrap #breadcrumbs span a {
  color: #101010 !important;
}

.singleProductTopWrap #breadcrumbs span a:hover {
  color: #cf5635 !important;
}

.singleProdctImgWrap {
    position: relative;
}

.singleProdctImgWrap .woocommerce-product-gallery {
  border: 1px solid #c8c8c8;
  padding: 20px 20px;
}

.singleProdctImgWrap span.onsale {
    top: 4px !important;
    left: 4px !important;
    display: inline-block;
    background: #cf5635 !important;
    color: #fff !important;
    border: 1px solid #ffffff !important;
    border-radius: 0 !important;
    height: 30px;
    line-height: 34px;
}

.singleProdctSummary .product_title.entry-title {
  color: #000000;
  font-size: 30px;
  line-height: 40px;
  font-weight: 500;
}

body.single-product .shopBody {
    padding: 40px 0;
}

.prodyctSingleMeta {
    display: flex;
    flex-direction: column;
}

.singleProdctSummary .pwb-single-product-brands span, .singleProdctSummary .pwb-single-product-brands a, .prodyctSingleMeta span,.variations_form th.label {
    font-size: 22px !important;
    line-height: 32px !important;
    font-weight: 500;
    color: #000000 !important;
    margin-bottom: 5px;
}

.singleProdctSummary .pwb-single-product-brands a:hover {
    color: #cf5635 !important;
}

.prodyctSingleMeta span .statusAvlbl, .prodyctSingleMeta span .statusNotAvlblty {
    font-style: normal;
    font-weight: 600;
}

.prodyctSingleMeta span .statusAvlbl {
    color: #5fab40;
}

.prodyctSingleMeta span .statusNotAvlblty {
    color: #f44336;
}

.singleProdctSummary .price {
    font-size: 28px !important;
    line-height: 28px !important;
    font-weight: 500;
    color: #cf5635 !important;
    margin-top: 40px;
}

.singleProdctSummary .price em {
    font-style: normal !important;
    color: #000000 !important;
}

.singleProdctSummary .price ins {
    text-decoration: none
}

.singleProdctSummary form.cart .quantity {
    margin-right: 0!important;
    float: none!important;
    align-items: center;
    display: flex;
}

.singleProdctSummary form.cart .minus {
    border: 1px solid #c8c8c8 !important;
    border-right: 0!important;
    width: 50px;
    font-size: 40px;
    line-height: 48px;
    font-family: 'sans-serif' !important;
    padding: 0!important;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    color: #6b6b6b;
    font-weight: 400 !important;
}

.singleProdctSummary form.cart .input-text.qty {
    border: 1px solid #c8c8c8 !important;
    border-right: 0!important;
    border-left: 0!important;
    width: 80px;
    font-size: 20px;
    padding: 0!important;
    color: #6b6b6b;
    font-weight: 400 !important;
}

.singleProdctSummary form.cart .plus {
    border: 1px solid #c8c8c8 !important;
    border-left: 0!important;
    width: 50px;
    font-size: 26px;
    font-family: 'sans-serif' !important;
    padding: 0!important;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    color: #6b6b6b;
    font-weight: 600 !important;
}

.singleProdctSummary form.cart .minus, .singleProdctSummary form.cart .plus, .singleProdctSummary form.cart .input-text.qty {
    height: 55px;
    background: transparent;
}

.singleProdctSummary form.cart {
    display: flex;
    align-items: center;
    padding-top: 45px;
}

.singleProdctSummary form.cart button.minus, .singleProdctSummary form.cart button.plus {
    display: none !important;
}

.singleProdctSummary form.cart .single_add_to_cart_button {
    color: #fff!important;
    background: #cf5635 !important;
    display: inline-block;
    height: 55px;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    border: 1px solid transparent;
    border-radius: 5px;
    padding: 0 70px 0 90px;
    margin-left: 20px;
    position: relative;
}

.singleProdctSummary form.cart .single_add_to_cart_button::before {
    content: "";
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: url(./assets/images/carticon.png) no-repeat;
    background-size: 20px 18px;
    width: 20px;
    height: 18px;
}

.singleProdctSummary form.cart .single_add_to_cart_button:hover {
    background-color: #2e3652 !important;
}

.sellersldr .pro-item .prdctDtls span.price {
    font-size: 18px;
    font-weight: 600;
    color: #cf5635;
    display: block;
}

.completeKitchenTab {
    padding-top: 60px;
}

.completeKitchenTab ul.tabs {
    padding-left: 0 !important;
    border-bottom: 1px solid #c8c8c8;
    margin-bottom: 40px !important;
}

.singleProdctSummary .product_meta {
    display: none;
}

.completeKitchenTab ul.tabs li {
    border: 0 !important;
    border-radius: 0 !important;
    color: #000000 !important;
    font-size: 24px !important;
    line-height: 34px !important;
    padding: 0 30px 0 30px !important;
    margin: 0 !important;
    background: transparent !important;
    
}

.completeKitchenTab ul.tabs li.active {
    color: #cf5636 !important;
    border-bottom: 2px solid #cf5636 !important;
}

.completeKitchenTab ul.tabs li::before, .completeKitchenTab ul.tabs::before, .completeKitchenTab ul.tabs li::after {
    display: none !important;
}

.completeKitchenTab .themeTxt {
    padding-bottom: 25px !important;
    margin-bottom: 0 !important;
    border-bottom: 1px solid #c8c8c8;
}

.sellersldr .row .col-xl-4 {
    width: 25%;
}

.sellersldr .row .pro-item {
    padding: 0 !important;
}

.pro-box button.addonify-cp-button {
    position: absolute;
    top: 64px;
    right: 15px;
    background: #fff !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 100% !important;
    border: 1px solid #cccccc !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 !important;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}

.pro-box button.addonify-cp-button:hover, .pro-box button.addonify-cp-button.compare-clicked {
    border: 1px solid #cf5635 !important
}

.pro-box button.addonify-cp-button::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-image: url(./assets/images/iconcompare.png);
    background-size: 20px 16px;
    background-repeat: no-repeat;
    width: 20px;
    height: 16px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}

.pro-box button.addonify-cp-button.compare-clicked::after {
  vertical-align: top;
  background-image: url('./assets/images/Rolling-0.9s-52px.gif') !important;
  background-size: 30px 30px !important;
  width: 30px !important;
  height: 30px !important;
}

.pro-box button.addonify-cp-button:hover::after {
    background-image: url(./assets/images/iconcomparehover.png) !important;
}

.pro-box button.addonify-cp-button.compare-clicked.selected::after {
    background-image: url(./assets/images/iconcomparehover.png) !important;
    background-size: 20px 16px !important;
    width: 20px !important;
    height: 16px !important;
}

#addonify-compare-dock-compare-btn:hover {
    background-color: #343434;
    color: #ffffff;
}

#addonify-compare-dock {
    background-color: rgb(207, 86, 53, 0.93);
}

#addonify-compare-dock-message {
    color: #ffffff !important;
}

#addonify-compare-products-table-wrapper #addonify-compare-products-table.has-header tbody tr td:first-child, #addonify-compare-products-table.has-header tbody tr td:first-child {
    background-color: #cf5635;
    color: #ffffff;
}

#addonify-compare-products-table-wrapper #addonify-compare-products-table tbody tr td .addonify-compare-table-remove-btn {
    fill: #cf5635 !important;
    background: transparent !important;
    border-color: #cf5635 !important;
    border-radius: 100%;
    box-shadow: none !important;
}

#addonify-compare-products-table-wrapper #addonify-compare-products-table tbody tr td .addonify-compare-table-remove-btn:hover {
    fill: #2e3652 !important;
    border-color: #2e3652 !important;   
}

#addonify-compare-products-table td .price ins {
    color: #cf5635 !important;
}

.adfy-compare-products-table-row-content .add_to_cart_button {
    font-size: 14px !important;
    font-weight: 500 !important;
    display: inline-flex !important;
    padding: 15px 20px !important;
    background: #cf5636 !important;
    color: #fff !important;
    border-radius: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    border: 0 !important;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}

.adfy-compare-products-table-row-content .add_to_cart_button:hover {
    background: #2e3652 !important;
    color: #ffffff !important;
}

#addonify-compare-close-button {
    background-color: #cf5635 !important;
    color: #ffffff !important;
}

#addonify-compare-close-button:hover {
    background: #2e3652 !important;   
}

#addonify-compare-close-button svg {
    height: 20px !important;
    width: 20px !important;
}

.addonify-compare-search-modal-content #addonify-compare-search-query, #addonify-compare-search-close-button {
    border: 2px solid #cf5635 !important;
}

#addonify-compare-search-query, #addonify-compare-search-close-button:hover {
    color: #cf5635 !important;
}

#addonify-compare-dock-add-item {
    border: 1px solid transparent;
}

#addonify-compare-dock-add-item:hover {
    border: 1px solid #ffffff;
    background: #4d90ce;
}

.woocommerce-Tabs-panel--pwb_tab #tab-pwb_tab-content h3 {
    font-size: 22px !important;
    line-height: 32px !important;
}

.completeKitchenTab table.shop_attributes th {
    min-width: 210px;
}

.completeKitchenTab table.shop_attributes td {
    font-style: normal !important;
    font-weight: 500 !important;
}

#loginModal.modal.show {
    display: flex !important;
    justify-content: center;
    align-items: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(0,0,0,0.5);
}

#loginModal .modal-content {
    background-color: #ffffff !important;
    border-radius: 5px !important;
    -webkit-box-shadow: 0 0 60px rgba(0,0,0,.2) !important;
    box-shadow: 0 0 60px rgba(0,0,0,.2) !important;
    width: 600px !important;
    height: auto !important;
    left: 50% !important;
    position: fixed !important;
    top: 50% !important;
    -webkit-transform: translateX(-50%) translateY(-50%) !important;
    transform: translateX(-50%) translateY(-50%) !important; 
}

#loginModal .modal-header {
    border-bottom: 0 !important;
    padding: 0 !important;
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 5;
}

#loginModal .modal-body {
    padding: 20px 25px 25px;
}

#loginModal .modal-header button {
    font-size: 14px;
}

#loginModal .modal-header button:hover {
    opacity: 1;
}

.modalLogo {
    display: flex;
    justify-content: center;
    padding-bottom: 30px;
}

.modalLogo a {
    display: block;
}

.modalLogo img {
    width: 185px;
}

#loginModal form p {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

#loginModal form p label {
    display: block !important;
    text-align: left !important;
    color: #000000 !important;
    font-size: 16px !important;
    line-height: 26px !important;
    font-weight: 600;
    margin-bottom: 8px;
}

#loginModal form p input[type="text"], #loginModal form p input[type="password"] {
    padding: 12px 15px;
    border-radius: 0 !important;
    box-shadow: none;
    font-size: 14px;
    display: block;
    width: 100%;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 20px;
    border: 1px solid #999999;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}

#loginModal form p input[type="text"]:focus, #loginModal form p input[type="password"]:focus {
    border: 1px solid #cf5635;
}

#loginModal .login-submit .button-primary {
    color: #fff!important;
    background: #cf5635 !important;
    display: inline-block;
    width: 150px;
    height: 50px;
    border-radius: 6px;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    margin: 12px 0 20px;
    border: 1px solid transparent;
    border-radius: 5px; 
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}

#loginModal .login-submit .button-primary:hover {
    background-color: #2e3652 !important;
}

.loginModalFtr {
    display: flex;
    justify-content: space-between;
}

.loginModalFtr a {
    color: #000000;
    font-size: 15px;
    font-weight: 600;
}

.loginModalFtr a:hover {
    color: #cf5635;
}

.searchRow article {
    flex: 0 0 auto;
    width: 25%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
}

.searchRow article .pageContent {
    border: 1px solid #cccccc;
    width: 100%;
    position: relative;
    padding: 0px 25px 25px;
    margin-bottom: 24px;
    min-height: 400px;
}

.searchRow article .pageContent header.entry-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.searchRow article .pageContent h4 a {
    font-size: 18px;
    font-weight: 600;
    color: #5f626c;
}

.searchRow article .pageContent h4 a:hover {
    color: #cf5635;
}

.searchResultThumb img {
    width: 100% !important;
}

.searchPagination {
    display: flex;
    justify-content: center;
    padding-top: 30px;
}

.searchPagination .wp-pagenavi {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.searchPagination .wp-pagenavi span, .searchPagination .wp-pagenavi a {
    border-radius: 100%;
    min-width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0;
    font-size: 16px;
    font-weight: 500;
    color: #6b6e75;
    margin-right: 3px;
}

.searchPagination .wp-pagenavi a:hover, .searchPagination .wp-pagenavi span.current {
    background-color: #cf5635;
    color: #ffffff;
}

.searchPagination .wp-pagenavi a.last, .searchPagination .wp-pagenavi a.first {
    width: auto;
    height: auto;
}

.searchPagination .wp-pagenavi a.last:hover, .searchPagination .wp-pagenavi a.first:hover {
    background-color: transparent;
    color: #cf5635;
}

.searchPagination .wp-pagenavi a.next.page-numbers:hover, .searchPagination .wp-pagenavi a.prev.page-numbers:hover {
    background-color: #ffffff;
    color: #cf5635;
}

.searchPagination .wp-pagenavi span.pages {
    display: none;
}

.searchPageSec .no-results .page-header h3 {
    color: #000;
    font-weight: 500;
    margin-bottom: 20px;
}

.srchFrmContNone form label {
    display: none;
}

body.search-no-results .srchRstHdr {
    display: none;
}

.searchPageSec {
    min-height: 40vh;
}
.searchsForm form {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 15px;
}

.searchsForm form input[type="search"] {
    padding: 12px 15px;
    box-shadow: none;
    font-size: 14px;
    display: block;
    width: 250px;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    border: 1px solid #999999;
    border-right: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.searchsForm form input[type="search"]:focus {
    border: 1px solid #cf5635;
    border-right: 0;
}

.searchsForm form input[type="submit"] {
    min-width: 116px;
    display: inline-flex;
    justify-content: center;
    padding: 12px 15px;
    height: 46.33px;
    background: #cf5636;
    color: #fff;
    align-items: center;
    border: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}

.searchsForm form input[type="submit"]:hover {
    background: #2e3652;
}

.singleProdctSummary .woocommerce-product-rating {
    display: none;
}

.productReviewDetailsWrap {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 25px;
    border-bottom: 1.5px solid #dfdfdf;
}

.productReviewDetailsWrap .star-rating {
    position: relative;
    min-width: 125px;
}

.productReviewDetailsWrap .star-rating::after {
    content: '|';
    position: absolute;
    right: 17px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 33px;
    font-weight: 300;
    color: #cccccc;
}

.productReviewDetailsWrap .star-rating span::before  {
    color: #cf5635;
}

.productReviewDetailsWrap p {
    font-weight: 500;
}

.productReviewDetailsWrap p a {
    color: #000000 !important;
}

.productReviewDetailsWrap p a:hover {
    color: #cf5636 !important;
}

.woocommerce-Reviews .comment-respond .comment-reply-title {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 10px;
}

.woocommerce-Reviews .comment-form-rating label {
    font-size: 16px;
    margin-bottom: 8px;
    color: #000000;
    font-weight: 500;
}

.woocommerce-Reviews .comment-form-rating label span {
    color: red;
}

.woocommerce-Reviews .comment-form-rating p.stars a {
    font-size: 20px;
}

.woocommerce-Reviews .comment-form-comment label {
    display: block;
    color: #000000;
    font-weight: 500;
    margin-bottom: 5px;
}

.woocommerce-Reviews .comment-form-comment textarea {
    padding: 12px 15px;
    border-radius: 0;
    box-shadow: none;
    font-size: 16px;
    display: block;
    max-width: 1000px;
    height: 200px !important;
    color: #000000;
    border: 1px solid #999999;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.woocommerce-Reviews .comment-form-comment textarea:focus {
    border: 1px solid #cf5636;
}

.woocommerce-Reviews .form-submit input[type="submit"] {
    min-width: 155px !important;
    display: inline-block !important;
    padding: 15px 15px !important;
    background: #cf5636 !important;
    color: #fff !important;
    border-radius: 0 !important;
    border: 0 !important;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}

.woocommerce-Reviews .form-submit input[type="submit"]:hover {
    background: #2e3652 !important;
}

.aboutPageSec {
    padding-bottom: 0 !important;
}

.aboutPageSec .container {
    padding: 0 120px;
}

.abtSecOneCol1 {
    padding-right: 80px;
}

.abtSecOneCol2 .abtCol1ImgWrap {
    position: relative;
    padding: 35px 0 0 35px;
}

.abtSecOneCol2 .abtCol1ImgWrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 90%;
    border: 4px solid #cf5635;
    z-index: -1;
}

.abtSecOneCol2 .abtCol1ImgWrap img {
    width: 100%;
    max-width: 100%;
}

.abtSecTwo {
    background-image: url(images/abtbgimg.jpg);
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0;
    margin-top: 100px;
    position: relative;
    z-index: 1;
}

.abtSecTwo::before {
    background: rgba(0, 0, 0, 0.75) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.abtSecTwo .container {
    padding: 0 120px;
}

.abtSecTwo .section-header h3 {
    color: #ffffff;
}

.abtSecTwo .section-header h3 span {
    color: #cf5636;
    display: block;
    margin-top: 5px;
    font-size: 32px;
}

.whyChooseBx {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 35px 35px;
    min-height: 330px;
    box-shadow: 0px 0px 3px 1px rgba(46, 54, 82, 0.15);
    border: 1px solid #e3e5f1;
}

.whyChooseBx .themeTxt span, .whyChooseBx .themeTxt p{
    color: #ffffff;
}

.whyChooseBx .themeTxt span {
    display: block;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 18px;
}

.whyChooseIcnWrap {
width: 110px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #ffffff;
    border-radius: 100%;
    padding: 20px 20px;
    margin-bottom: 18px;
}

.whyChooseIcnWrap img {
    width: 100%;
}

.abtSecThree {
    padding-top: 100px;
}

.abtSecThree .container {
    padding: 0 100px;
}

.abrSecThreeContWrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 35px 35px;
    box-shadow: 0px 0px 3px 1px rgba(46, 54, 82, 0.15);
    border: 1px solid #e3e5f1;
}

.secThreeIcnWrap {
    width: 120px;
    height: 120px;
    background: #cf5635;
    padding: 20px 20px;
    border-radius: 100%;
    margin-bottom: 18px;
}

.secThreeIcnWrap img {
    width: 100%;
}

.abrSecThreeContWrap .themeTxt span {
    display: block;
    color: #000;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 18px;
}

.woocommerce-checkout .woocommerce-order .woocommerce-notice {
    font-size: 18px;
    font-weight: 600;
}

.woocommerce-checkout .woocommerce-order ul.woocommerce-order-overview {
    border: 2px dashed #d3ced2;
    padding: 15px 15px;
}

.woocommerce-checkout .woocommerce-order ul.woocommerce-order-overview li {
    border-right: 0 !important;
}

.woocommerce-checkout .woocommerce-order ul.woocommerce-order-overview li:last-child {
    margin-bottom: 0;
}

.woocommerce-checkout .woocommerce-order ul.woocommerce-order-overview li::before {
    display: none !important;
}

.woocommerce-checkout .woocommerce-order-details .woocommerce-order-details__title, .woocommerce-checkout .woocommerce-customer-details .woocommerce-column__title {
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 10px;
}

.woocommerce-checkout .woocommerce-customer-details address {
    border: 1px solid #cccccc;
    border-radius: 0;
    padding: 15px 15px;
    font-size: 16px;
    line-height: 30px;
    color: #000000;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table ul#shipping_method li {
    padding-left: 0 !important;
    display: flex;
    align-items: center;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table ul#shipping_method li::before {
    display: none !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table ul#shipping_method li input {
    margin-top: 0 !important;
}

.woocommerce-checkout #order_review .wc_payment_methods li label[for="payment_method_cod"] {
    display: inline-block !important;
}

.woocommerce-checkout #order_review .wc_payment_methods li {
    padding-left: 0 !important;
}

.woocommerce-checkout #order_review .wc_payment_methods li::before {
    display: none !important;
}

.kitchenCartCollaterals {
    display: flex;
    flex-wrap: wrap;
}

.kitchenCartCollaterals .cross-sells {
   order: 1 !important;
   float: none !important;
   width: 100% !important;
}

.kitchenCartCollaterals .completeKitchenCartTotals  {
    order: 0 !important;
    display: flex;
    margin: 0 0 0 auto;
    width: 100% !important;
    float: none !important;
}

.cartTotalsMainWrap {
    width: 70%;
    padding: 0 40px 0 0;
}

.cartTotalsAfterWrap {
    width: 30%;
}

.cartTotalsAfterWrap .shipping_calculator.td-trans-frm {
    float: none !important;
    width: 100% !important;
    border: 0 !important;
    margin-top: 90px;
    box-shadow: 0px 0px 3px 1px rgba(46, 54, 82, 0.15);
    -moz-box-shadow: 0px 0px 3px 1px rgba(46, 54, 82, 0.15);
    -webkit-box-shadow: 0px 0px 3px 1px rgba(46, 54, 82, 0.15);
}

.woocommerce-cart article h1.entry-title, .woocommerce-checkout article h1.entry-title {
    display: none;
}

.mainBlogSingleColm .post-navigation .nav-links .nav-previous .post-title, .mainBlogSingleColm .post-navigation .nav-links .nav-next .post-title {
    display: none;
}

.mainBlogSingleColm .post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
}

.mainBlogSingleColm .post-navigation .nav-links .nav-previous .meta-nav, .mainBlogSingleColm .post-navigation .nav-links .nav-next .meta-nav {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.mainBlogSingleColm .post-navigation .nav-links .nav-previous a, .mainBlogSingleColm .post-navigation .nav-links .nav-next a {
    display: inline-block !important;
    padding: 12px 15px !important;
    background: #cf5636 !important;
    color: #fff !important;
    border-radius: 0 !important;
    align-items: center !important;
    border: 0 !important;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}

.mainBlogSingleColm .post-navigation .nav-links .nav-previous a:hover, .mainBlogSingleColm .post-navigation .nav-links .nav-next a:hover {
    background: #2e3652 !important;
}

.page-template-default .wp-block-heading {
    padding-bottom: 8px;
    padding-top: 15px;
}

.page-template-default .wp-block-headin:first-child {
    padding-top: 0;
}

.shpngMiddleCont h4, .page-template-shipping-policy .shpngTopCont h4 {
    padding-bottom: 12px;
}

.page-template-shipping-policy .shpngTopCont ul {
    padding-bottom: 15px;
}

.shpngMiddleCont .accordion {
    padding-bottom: 20px;
}

.shpngMiddleCont .accordion .accordion-item {
    margin-bottom: 15px;
}

.shpngMiddleCont .accordion .accordion-header button {
    font-weight: 700;
    font-size: 18px;
    background: transparent !important;
    color: #000000;
    padding: 15px 20px;
    border-radius: 0 !important;
    border: 1px solid #cccccc;
}

.shpngMiddleCont .accordion .accordion-header button:focus {
    box-shadow: none;
}

.accordion-item:first-of-type .accordion-button, .accordion-item:last-of-type .accordion-button.collapsed {
    border-radius: 0 !important;
    box-shadow: none !important;
}

.shpngMiddleCont .accordion .accordion-body {
    padding: 20px 20px;
    border: 1px solid #cccccc;
    border-top: 0;
}

.page-id-3 p strong {
    display: inline-block;
    padding-top: 15px;
}

.themeTxt .shpngTopCont ul li {
    line-height: 26px;
}

.themeTxt .shpngTopCont ul li:before {
    top: 8px;  
}

.returnFrmWrap {
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 0 10px 10px 0;
}

.returnFrmWrap tr td .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.returnFrmWrap tr td .wpcf7-form-control-wrap input {
    padding: 8px 12px;
    box-shadow: none;
    font-size: 15px;
    width: 100%;
    display: block;
    width: 100%;
    font-weight: 400;
    color: #000000;
    border: 1px solid transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.returnFrmWrap .wpcf7-form-control-wrap input[type="number"] {
    -webkit-appearance: none;
    -moz-appearance: textfield;
    appearance: textfield;    
}

.returnFrmWrap table td {
    border: 1px solid #848484;
    padding: 0;
}

.returnFrmWrap table th {
    padding: 10px 15px;
    border: 1px solid #fd8e71;
    background: #cf5636;
}

.returnFrmWrap table th p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}

/*.returnFrmWrap table th.colmnQty {*/
/*    max-width: 150px;*/
/*}*/

/*.returnFrmWrap table th.colmnSKU {*/
/*    max-width: 300px;*/
/*}*/

.returnFrmWrap tr td .wpcf7-form-control-wrap input:focus {
    border: 1px solid #cf5636;
}

.returnFrmWrapRow .form-group input {
    padding: 12px 15px;
    box-shadow: none;
    font-size: 15px;
    display: block;
    width: 100%;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    border: 1px solid #999999;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    margin-bottom: 25px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.returnFrmWrapRow .form-group input:focus {
    border: 1px solid #cf5636;
}

.returnFrmPageTopCont {
    padding-bottom: 30px;
}

.returnFrmPageBotmCont {
    padding-top: 30px;
}

.returnFrmWrap .wpcf7-submit {
   justify-content: center; 
}

.shipping_calculator.td-trans-frm {
    padding: 20px 20px;
}

.shipping_calculator.td-trans-frm h4 {
    font-weight: 500;
    /*text-align: center;*/
}

.shipping_calculator.td-trans-frm #to_location {
    font-size: 16px;
    line-height: 45px;
    padding: 0 15px;
    height: 45px;
    width: 100%;
    border: 1px solid #2e3652;
    margin-bottom: 0 !important;
}

form.checkout.woocommerce-checkout .tdCalc {
    margin-top: 30px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.shipping_calculator.td-trans-frm .td-shipping-calculator-form1 #autocomplete-div ul li {
    padding-left: 0 !important;
}

.shipping_calculator.td-trans-frm .td-shipping-calculator-form1 #autocomplete-div ul li::before {
    display: none !important;
}

.compltKitchnCheckout .tdCalc .shipping_calculator.td-trans-frm {
    width: 100% !important;
    border: 1px solid #e3e5f1;
}

.compltKitchnCheckout .tdCalc .shipping_calculator.td-trans-frm .td-shipping-calculator-form1 .country-list li::before {
    display: none !important;
}

.tdCalc .shipping_calculator.td-trans-frm .td-shipping-calculator-form1 .form-row-wide {
    display: flex;
    align-items: center;
    /*justify-content: center;*/
}

.shipping_calculator.td-trans-frm .form-row-wide input[type="radio"] {
    margin-right: 5px;
    width: auto !important;
    height: auto !important;
    padding: 0;
    -moz-appearance: auto !important;
    appearance: auto !important;
    margin-bottom: 0 !important;
}

#resultLoading > div {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#resultLoading > div img {
    width: 54px;
    min-width: 54px;
}

#shipping_type.td-shipping_type {
    padding-top: 10px;
}

.shipping_calculator.td-trans-frm #btn-get-quote {
    text-align: left !important;
    margin-bottom: 0 !important;
}

.shipping_calculator.td-trans-frm #btn-get-quote button {
    font-size: 16px !important;
    display: inline-block !important;
    padding: 12px 15px !important;
    background: #cf5636 !important;
    color: #fff !important;
    border-radius: 0 !important;
    border: 0 !important;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}

.shipping_calculator.td-trans-frm #btn-get-quote button:hover {
    background: #2e3652 !important;
}

/* mega menu */

div#mega-menu-wrap-primary {
  background: none;
}

div#mega-menu-wrap-primary ul#mega-menu-primary span.menu-image-title-hide.menu-image-title {
  display: block;
  order: 2;
}

div#mega-menu-wrap-primary ul#mega-menu-primary a {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  font-weight: bold;
  font-size: 14px !important;
  
}
/* div#mega-menu-wrap-primary ul#mega-menu-primary .mega-block-title a { color: #d97b62 !important;} */

div#mega-menu-wrap-primary ul#mega-menu-primary a img {
  height: 22px !important;
  width: auto !important;
  order: 1;
  padding-right: 0;
  margin-right: 8px;
}

#mega-menu-primary li.mega-menu-item-3664,
#mega-menu-primary li.mega-menu-item-3961,
#mega-menu-primary li.mega-menu-item-3665,
#mega-menu-primary li.mega-menu-item-3669,
#mega-menu-primary li.mega-menu-item-3671,
#mega-menu-primary li.mega-menu-item-3673,
#mega-menu-primary li.mega-menu-item-3675,
#mega-menu-primary li.mega-menu-item-3677,
#mega-menu-primary li.mega-menu-item-3932,
#mega-menu-primary li.mega-menu-item-3933,
#mega-menu-primary li.mega-menu-item-3934{
    padding: 15px;
    margin-right: 42px !important;
    padding: 20px 0 !important;
}


#mega-menu-primary li.mega-menu-item-3664 > a,
#mega-menu-primary li.mega-menu-item-3665 > a,
#mega-menu-primary li.mega-menu-item-3669 > a,
#mega-menu-primary li.mega-menu-item-3671 > a,
#mega-menu-primary li.mega-menu-item-3673 > a,
#mega-menu-primary li.mega-menu-item-3675 > a,
#mega-menu-primary li.mega-menu-item-3677 > a,
#mega-menu-primary li.mega-menu-item-3932 > a,
#mega-menu-primary li.mega-menu-item-3933 > a,
#mega-menu-primary li.mega-menu-item-3934 > a,
#mega-menu-primary li.mega-menu-item-3961 > a {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

#mega-menu-primary li.mega-menu-item-3664 > a span,
#mega-menu-primary li.mega-menu-item-3961 > a span,
#mega-menu-primary li.mega-menu-item-3665 > a span,
#mega-menu-primary li.mega-menu-item-3669 > a span,
#mega-menu-primary li.mega-menu-item-3671 > a span,
#mega-menu-primary li.mega-menu-item-3673 > a span,
#mega-menu-primary li.mega-menu-item-3675 > a span,
#mega-menu-primary li.mega-menu-item-3677 > a span,
#mega-menu-primary li.mega-menu-item-3932 > a span,
#mega-menu-primary li.mega-menu-item-3933 > a span,
#mega-menu-primary li.mega-menu-item-3934 > a span {
    padding-left: 0 !important;
    font-weight: 300 !important;
}

#mega-menu-primary li.mega-menu-item-3664 > a span.mega-indicator,
#mega-menu-primary li.mega-menu-item-3961 > a span.mega-indicator,
#mega-menu-primary li.mega-menu-item-3665 > a span.mega-indicator,
#mega-menu-primary li.mega-menu-item-3669 > a span.mega-indicator,
#mega-menu-primary li.mega-menu-item-3671 > a span.mega-indicator,
#mega-menu-primary li.mega-menu-item-3673 > a span.mega-indicator,
#mega-menu-primary li.mega-menu-item-3675 > a span.mega-indicator,
#mega-menu-primary li.mega-menu-item-3677 > a span.mega-indicator,
#mega-menu-primary li.mega-menu-item-3932 > a span.mega-indicator,
#mega-menu-primary li.mega-menu-item-3933 > a span.mega-indicator,
#mega-menu-primary li.mega-menu-item-3934 > a span.mega-indicator {
    display: none !important;
}

div#mega-menu-wrap-primary ul#mega-menu-primary a span.mega-indicator {
  order: 3;
}

div#mega-menu-wrap-primary ul#mega-menu-primary span.menu-image-title {
  display: block;
  order: 2;
  color: #000;
  padding: 0 0 0 7px;
  /*font-size: 12.5px;*/
  font-size: 15.5px;
  line-height: 1.1;
}

#mega-menu-wrap-primary #mega-menu-primary > li > a.mega-menu-link {
  background: none !important ; 
}


#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
  color: #555;
  font-size: 14px !important;
  text-align: left;
  font-weight: normal;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.set-menu ul.mega-sub-menu li {
  padding: 15px 20px;
}


/* #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu a.mega-menu-link {
  font-size: 14px !important;
} */

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu li {
  padding-bottom: 0 !important;
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu li h4 {
  padding-bottom: 15px !important;
  border-bottom: 1px solid #ccc !important;
  font-size: 15.5px !important;
  font-weight: 600 !important;
}

.mega-sub-menu li h4, .mega-sub-menu li h4 a {
    color: #555 !important;
}

.mega-sub-menu li h4 a:hover {
    color: #cf5635 !important;
}

#mega-menu-primary li.mega-menu-item  ul.mega-sub-menu .mega-menu-item .mega-menu-link span.mega-indicator {
    display: none !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-toggle-on:hover > a.mega-menu-link {
    background-color: #ffffff !important;
    color: #d97b62 !important;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover {
    color: #d97b62 !important;  
}


ul#mega-menu-primary li.mega-current-menu-item > a.mega-menu-link span, 
ul#mega-menu-primary li.mega-menu-item > a:hover span {
  color: #d97b62 !important;
}


.header.fixed_header #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
  line-height: auto !important;
  height: auto !important;
  padding: 0px 10px 0 10px !important;
}

.header.fixed_header #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item {
  margin: 0 0px 0 0 !important;
} 



/* mega menu */

.header_search { border:none !important; border-radius:0px !important; width:500px;}
.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp { padding:0px; background:transparent !important;}
.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input { background-color:#fff !important; border: 1px solid #cacfe2;}
.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit { right: 15px !important; top: 10px !important; left:inherit !important;}

.productPriceWrap {display: flex;align-items: center;}
.productPriceWrap .wp-block-wdevs-tax-switch {margin-left: 15px;}
.productPriceWrap .wp-block-wdevs-tax-switch .wdevs-tax-switch-label-text {font-size: 80%;color: #000000;}
/*-------------------------------*/

.single-product .variations select{border: 1px solid #c8c8c8 !important;width:100% !important;height:55px !important;}
.variations_form {flex-wrap: wrap !important;}
.variations_form .single_variation_wrap,.variations_form .variations_button{width:100%;display:flex !important;flex-wrap: wrap !important;align-items:center;}
.variations_form th.label,.variations_form td.value{width:100% !important;display:block !important;}
.variations_form select{font-size:16px !important;margin-right: 0 !important;padding:0 10px !important;border-radius:6px;}
.variations_form th.label,.variations_form select{font-family: 'Plus Jakarta Sans';color:#000 !important;}
html{overflow-x:hidden;}
/*------------------*/
.singleProdctSummary .productReviewDetailsWrap p,.singleProdctSummary .availability,.cs_price_span .wts-price-excl .wts-vat-text,.cs_price_span .wts-price-incl .wts-vat-text{display:none;opacity:0;visibility:hidden;}
.single_variation_wrap .woocommerce-variation-price{padding-bottom:10px;}
/*-------------------------------------*/

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

  body {
    font-size: 16px;
  }

  p {
    margin-bottom: 20px;
    font-size: 16px;
  }

  h1,
  h2,
  h3,
  h4,
  h5 {
    margin-bottom: 20px;
  }

  .header-links li {
    padding-right: 15px;
    margin-right: 13px;
  }

  .header-links li a {
    font-size: 16px;
  }

  .header_contacts li {
    margin-right: 45px;
  }

  .header_contacts li a {
    font-size: 16px;
  }

  .header_contacts li i {
    font-size: 18px;
    margin-right: 9px;
  }

  .header_contacts li:last-child i {
    font-size: 24px;
  }

  .header_top {
    padding: 12px 0;
  }

  .logo {
    width: 240px;
  }

  .search-field input[type=search] {
    width: 600px;
    padding: 10px 20px;
    height: 48px;
  }

  .search-field input[type=submit] {
    margin: 0 5px;
    height: 38px;
    width: 38px;
    background-size: 22px;
  }

  .account-info {
    margin-right: 45px;
  }

  .account-info i {
    width: 45px;
    height: 45px;
    margin-right: 11px;
    font-size: 24px;
  }

  .a-info-text span a{
    font-size: 14px;
  }

  .a-info-text p a, .header_info .account-info {
    font-size: 16px;
  }

  .shopping-info li:not(:last-child) {
    margin-right: 45px;
  }

  .shopping-info li i {
    font-size: 28px;
  }

  .shopping-info li img {
    width: 28px;
  }

  span.count {
    font-size: 13px;
  }

  .hderinr {
    padding: 22px 0 14px;
  }

  ul.slimmenu li {
    margin-right: 42px;
    padding: 20px 0;
  }

  ul.slimmenu li a {
    font-size: 15.5px;
  }

  ul.slimmenu li a img {
    height: 22px !important;
    margin-right: 8px;
  }

  .banner {
    margin-top: 234px
  }

  .banner_in {
    max-width: 750px;
  }

  .banner_text h3 {
    font-size: 70px;
    line-height: 76px;
    margin-bottom: 15px;
  }

  .banner_text p {
    font-size: 23px;
  }

  .banner-btn,
  .more {
    padding: 16px 20px;
  }

  .banner-btn:after,
  .more:after {
    margin-left: 24px;
  }

  .banner .owl-dots button {
    width: 10px;
    height: 10px;
    margin: 0 7px;
  }

  .banner .owl-dots button.active {
    outline-offset: 4px
  }

  .our-products {
    padding: 100px 0 0;
  }

  .sec-head h1,
  .sec-head h2 {
    font-size: 60px;
    margin-bottom: 20px;
  }

  .more {
    padding: 20px 20px;
  }

  .sec-head {
    margin-bottom: 45px;
  }

  .cat_box {
    padding: 16px 18px;
  }

  .cat_image {
    margin-bottom: 18px;
  }

  .cat_image img {
    height: 200px;
  }

  .cat_box h5 {
    font-size: 18px;
  }

  .arrival {
    padding: 75px 0;
  }

  .pro-box {
    padding: 0px 25px 25px;
  }

  .pro_image {
    padding: 40px 0;
  }

  .pro_image img {
    height: 278px !important;
  }

  .pro-box h5 {
    font-size: 18px;
    min-height: 43px;
  }

  .view-pro {
    font-size: 16px;
  }

  .owl-prev,
  .owl-next {
    width: 44px;
    height: 44px;
    font-size: 18px !important;
    margin: 10px 0;
  }

  .brand_wrap {
    padding: 55px 0;
  }

  .client-says {
    padding: 70px 0;
  }

  .client-box {
    padding: 40px 26px;
  }

  .c-rating {
    margin-bottom: 30px;
    font-size: 15px;
  }

  .client-box p {
    font-size: 15.5px;
    margin-bottom: 15px;
  }

  .client-box h6 {
    font-size: 16px;
  }

  .sticker {
    width: 120px
  }

  .need-help {
    padding: 100px 0;
  }

  .need-help h3 {
    font-size: 60px;
  }

  .need-help p {
    font-size: 21px;
    margin-bottom: 40px;
  }

  .need-help .more span {
    width: 34px;
    height: 34px;
    padding: 8px;
    margin-left: 45px;
  }

  .need-help .more {
    padding: 12px 16px;
  }

  .blog-sec {
    padding: 80px 0;
  }

  .blog-box figure img {
    height: 310px !important;
  }

  .blog-text {
    padding: 22px 10px;
  }

  .blog-text h5 {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .blog-text p {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .blog-date {
    margin-bottom: 12px;
    font-size: 16px;
  }

  .blog-more {
    font-size: 16px;
  }

  .footer-top {
    padding: 80px 0 60px;
  }

  .ftr-logo {
    margin-bottom: 30px;
    width: 240px;
  }

  .footer-left p {
    font-size: 15px;
  }

  .ftr_phone img {
    width: 28px;
  }

  .phone_text {
    padding-left: 10px;
  }

  .phone_text strong {
    font-size: 21px;
  }

  .phone_text span {
    font-size: 16px;
  }

  .footer-middle h5,
  .footer-right h5 {
    font-size: 20px;
    ;
    margin-bottom: 25px;
  }

  .ftr_menu li:before {
    top: 6px;
    width: 10px;
    height: 10px;
  }

  .ftr_menu li a {
    font-size: 15.5px;
  }

  .ftr_menu li {
    margin-bottom: 18px;
    padding-left: 20px;
  }

  .footer-right ul li p {
    font-size: 15px;
  }

  .footer-right ul li {
    margin-bottom: 14px;
  }

  .footer-right ul li i {
    font-size: 20px;
    margin-right: 9px;
  }

  .footer-right ul.timing li i {
    font-size: 16px;
  }

  .footer-bottom {
    padding: 30px 0;
  }

  .ftr_links li {
    padding-right: 14px;
    font-size: 15px;
    margin-right: 14px;
  }

  .copy {
    font-size: 15px;
  }

  .designTeamLink {
    font-size: 15px !important;
  }

  .footer:before {
    width: 200px;
    height: 130px;
  }
}

@media only screen and (max-width: 1599px) {
    
  #mega-menu-wrap-primary #mega-menu-primary {
    text-align: center;
    padding: 0px 0px 0px 0px;
    margin-top: -11px;
  }
  
  div#mega-menu-wrap-primary ul#mega-menu-primary a img {
    height: 18px !important;
  }
  
  #mega-menu-primary li.mega-menu-item-3664 {
      float: none !important;
  }
    
  #mega-menu-primary li.mega-menu-item-3664, 
  #mega-menu-primary li.mega-menu-item-3961,
  #mega-menu-primary li.mega-menu-item-3665, 
  #mega-menu-primary li.mega-menu-item-3669, 
  #mega-menu-primary li.mega-menu-item-3671, 
  #mega-menu-primary li.mega-menu-item-3673, 
  #mega-menu-primary li.mega-menu-item-3675, 
  #mega-menu-primary li.mega-menu-item-3677, 
  #mega-menu-primary li.mega-menu-item-3932,
  #mega-menu-primary li.mega-menu-item-3933, 
  #mega-menu-primary li.mega-menu-item-3934 {
    margin-right: 22px !important;
    padding: 14px 0 !important;
  }

  div#mega-menu-wrap-primary ul#mega-menu-primary span.menu-image-title {
    font-size: 12.5px !important;
  }

  .innrbnr img {
    height: 220px;
  }

  #breadcrumbs span,
  #breadcrumbs span a {
    font-size: 18px;
  }
  
  .singleProductTopWrap #breadcrumbs span, .singleProductTopWrap #breadcrumbs span a {
    font-size: 16px;
  }

  .inrPgeTitle h1 {
    font-size: 45px;
  }

  .shopBody {
    padding: 60px 0;
  }

  .shopBodyTopSec {
    padding-bottom: 15px;
  }

  .pro-box .prdctDtls h5,
  .pro-box .prdctDtls span.price, 
  .sellersldr .pro-item .prdctDtls span.price {
    font-size: 16px;
  }

  .ktchnCartbtn a {
    font-size: 15px;
  }

  .filteraccdian h4 {
    font-size: 22px;
    padding-bottom: 18px;
    margin-bottom: 25px;
  }

  .woof_container {
    margin-bottom: 50px;
  }

  .listingrt nav {
    padding-top: 50px;
  }

  .shopBodyTopSec span,
  .shopBodyTopSec select,
  .shopBodyTopSec p {
    font-size: 15px;
  }

  .recnt_postbxs .recnt_postimg img {
    width: 77px !important;
    height: 77px !important;
  }

  .sidebar_title_wrapper h3 {
    font-size: 22px;
  }

  .recnt_postbxs .postcont a {
    font-size: 14px;
  }

  .recnt_postbxs .postcont {
    padding-left: 14px;
  }

  .recnt_postbxs .postcont span {
    font-size: 12px;
  }

  .blogArchiveSec .mainSidebarColm {
    padding-left: 50px;
  }

  .themeTxt h1 {
    font-size: 45px;
    line-height: 55px;
  }

  .themeTxt h2 {
    font-size: 38px;
    line-height: 48px;
  }

  .themeTxt h3 {
    font-size: 34px;
    line-height: 44px;
  }

  .themeTxt h4 {
    font-size: 26px;
    line-height: 36px;
  }

  .themeTxt p {
    font-size: 15px;
    line-height: 25px;
  }

  .themeTxt ul li {
    font-size: 15px;
    margin-bottom: 15px;
    padding-left: 15px;
  }
  
  .themeTxt .shpngTopCont ul li {
      line-height: 25px;
  }

  .themeTxt ul li:before {
    top: 5px;
    width: 8px;
    height: 8px;
  }

  .themeTxt ol li {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .comnPageSec {
    padding: 60px 0;
  }

  .section-header {
    padding-bottom: 35px;
  }

  .brndslistImgWrp {
    height: 125px;
  }

  .brndslistImgWrp img {
    width: 135px;
    height: 60px;
  }

  .listingrt .products .pro-item .pro-box {
    min-height: 449px;
  }

  .wishlistCont.completeKitchenCart table tr th {
    color: #000826 !important;
    font-size: 18px;
    line-height: 45px !important;
  }

  .wishlistCont.completeKitchenCart table tr th.product-stock-status {
    width: 200px;
  }

  .pro-box .prdctDtls h2.woocommerce-loop-product__title {
    font-size: 15px;
    line-height: 23px;
    min-height: 69px;
  }

  .pro-box .prdctDtls a.add_to_cart_button {
    font-size: 14px;
  }

  .compltKitchnwreLogin .woocommerce-form {
    min-height: 315px;
  }

  .compltKitchnwreLogin .woocommerce-form-row label {
    font-size: 16px !important;
    line-height: 26px !important;
  }

  .compltKitchnMyAccNav,
  .completeKitchnMyAccCont {
    min-height: 210px;
  }

  .completeKitchnMyAccCont label,
  .compltKitchnCheckout label {
    font-size: 16px !important;
    line-height: 26px !important;
  }

  .completeKitchnMyAccCont .edit-account legend {
    font-size: 22px;
  }

  .lftfilter {
    max-width: 270px;
  }

  .pro-box {
    padding: 0px 15px 15px;
  }

  .filteraccdian ul li {
    margin-bottom: 5px !important;
  }

  .filteraccdian ul li label {
    font-size: 14px;
  }

.completeKitchenTab ul.tabs li {
    font-size: 22px !important;
    line-height: 32px !important;
}

.singleProdctSummary .product_title.entry-title {
    font-size: 26px;
    line-height: 36px;
}

.imgOverlayTxtWrap {
    height: 70px;
}

.imgOverlayTxtWrap p {
    font-size: 18px;
}

.ovrlayLink {
    width: 95.8%;
    height: 98.1%;
}

.singleProdctSummary .pwb-single-product-brands span, .singleProdctSummary .pwb-single-product-brands a, .prodyctSingleMeta span,.variations_form th.label { 
    font-size: 20px !important;
    line-height: 28px !important;
}

.singleProdctSummary .price {
    font-size: 25px !important;
    line-height: 25px !important;
}


.woocommerce-Tabs-panel--pwb_tab #tab-pwb_tab-content h3 {
    font-size: 20px !important;
    line-height: 30px !important;
}

#loginModal .modal-content {
    width: 530px !important;
}

#loginModal form p label {
    font-size: 15px !important;
    line-height: 25px !important;
}

.searchRow article .pageContent {
    padding: 0px 15px 15px;
    min-height: 360px;
}

.searchRow article .pageContent header.entry-header {
    min-height: 360px;    
}

.searchRow article .pageContent h4 a {
    font-size: 15px;
    font-weight: 600;
}

.productReviewDetailsWrap .star-rating {
    min-width: 110px;
}

.abtSecTwo {
    margin-top: 80px;
    padding: 70px 0;
}

.abtSecTwo .container {
    padding: 0 80px;
}

.whyChooseBx {
    padding: 25px 25px;
}

.whyChooseBx .themeTxt span {
    font-size: 20px;
}

.abtSecThree {
    padding-top: 80px;
}

.abtSecThree .container {
    padding: 0 80px;
}

.secThreeIcnWrap {
    width: 100px;
    height: 100px;
}

.abrSecThreeContWrap {
    padding: 30px 30px;
}

.abrSecThreeContWrap .themeTxt span {
    font-size: 20px;
}

.woocommerce-checkout .woocommerce-order-details .woocommerce-order-details__title, .woocommerce-checkout .woocommerce-customer-details .woocommerce-column__title {
    font-size: 26px;
    line-height: 36px;
}

.woocommerce-checkout .woocommerce-customer-details address {
    font-size: 15px;
    line-height: 29px;
}

.searchPagination .wp-pagenavi span, .searchPagination .wp-pagenavi a {
    min-width: 33px;
    height: 33px;
    font-size: 14px;
}

.whyChooseBx {
    min-height: 304px;
}

.abtSecTwo .section-header h3 span {
    font-size: 25px;
}

.contctFrmMainRow {
    margin-top: 15px;
}

.cartTotalsAfterWrap .shipping_calculator.td-trans-frm {
    margin-top: 85px;
}

/* #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu a.mega-menu-link {
  font-size: 12px !important;
} */

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu li h4 {
  font-size: 14px !important;
}

.shopping-info li.wish a span.wishlist_products_counter_number, span.count { font-size: 11px;
    width: 18px;
    height: 18px;}
    
.singleProductTopWrap .inrBnrCont { margin-top: 180px;}

}

@media only screen and (max-width: 1399px) {
    
#mega-menu-primary li.mega-menu-item-3664, 
#mega-menu-primary li.mega-menu-item-3961,
  #mega-menu-primary li.mega-menu-item-3665, 
  #mega-menu-primary li.mega-menu-item-3669, 
  #mega-menu-primary li.mega-menu-item-3671, 
  #mega-menu-primary li.mega-menu-item-3673, 
  #mega-menu-primary li.mega-menu-item-3675, 
  #mega-menu-primary li.mega-menu-item-3677, 
  #mega-menu-primary li.mega-menu-item-3932,
  #mega-menu-primary li.mega-menu-item-3933, 
  #mega-menu-primary li.mega-menu-item-3934 {
    margin-right: 22px !important;
    padding: 14px 0 !important;
  }

    div#mega-menu-wrap-primary ul#mega-menu-primary span.menu-image-title {
        font-size: 11.5px !important;
    }

#mega-menu-wrap-primary #mega-menu-primary {
margin-top: -8px;
}

  .blogArchiveSec .mainSidebarColm {
    padding-left: 40px;
  }

  .recnt_postbxs .recnt_postimg img {
    width: 69px !important;
    height: 69px !important;
  }

  .sidebar_title_wrapper h3 {
    font-size: 20px;
  }

  .sidebar_tags_wrapper li a {
    font-size: 12px;
  }

  .mainBlogSingleColm article {
    padding: 12px 20px 15px;
  }

  .contctDtlsWrp .info-item span {
    font-size: 18px;
  }

  .contctDtlsWrp .info-item {
    padding: 15px 10px;
  }

  .cntctFrmMainCol .wpcf7 form.invalid .wpcf7-response-output,
  .cntctFrmMainCol .wpcf7 form.unaccepted .wpcf7-response-output,
  .cntctFrmMainCol .wpcf7 form.payment-required .wpcf7-response-output {
    bottom: -46px;
  }

  .brndslistImgWrp {
    height: 135px;
  }

  .brandsLists li {
    width: 21%;
  }

  body.single-post .sidebar_recent_post {
    margin-top: 15px;
  }

  .listingrt .products .pro-item .pro-box {
    min-height: 450px;
  }
  
  .singleProductTopWrap .inrBnrCont {
      margin-top: 190px
  }
  
  .wooResultOrdrbyWrap {
    padding-bottom: 13px;  
  }
  
  .imgOverlayTxtWrap {
    height: 60px;
  }

  .imgOverlayTxtWrap p {
    font-size: 16px;
  }
  
  .ovrlayLink {
    width: 95%;
    height: 98.2%;
  }
  
  .singleProdctSummary .pwb-single-product-brands span, .singleProdctSummary .pwb-single-product-brands a, .prodyctSingleMeta span,.variations_form th.label {
    font-size: 18px !important;
    line-height: 26px !important;
  }
  
  .singleProdctSummary .price {
    font-size: 22px !important;
    line-height: 22px !important;
    margin-top: 25px;
  }
  
  .singleProdctSummary form.cart {
      padding-top: 30px;
  }
  
  .woocommerce-Tabs-panel--pwb_tab #tab-pwb_tab-content h3 {
    font-size: 18px !important;
    line-height: 26px !important;
  }
  
  #loginModal .modal-content {
    width: 500px !important;
 }
 
 .searchRow article .pageContent {
    min-height: 320px;
}

.searchRow article .pageContent header.entry-header {
    min-height: 320px; 
}

.abtSecTwo {
    margin-top: 60px;
}

.abtSecTwo .container {
    padding: 0 30px;
}

.abtSecOneCol1 {
    padding-right: 50px;
}

.abtSecThree {
    padding-top: 60px;
}

.abtSecThree .container {
    padding: 0 30px;
}

.pro-box .prdctDtls h2.woocommerce-loop-product__title {
    min-height: 92px;
}

.mainBlogSingleColm .post-navigation .nav-links {
    padding: 20px 20px 0;
}

.whyChooseBx {
    min-height: 294px;
    padding: 20px 18px;
}

.shipping_calculator.td-trans-frm h4 {
    font-size: 24px;
    line-height: 34px;
}

}

@media only screen and (max-width: 1199px) {
    
  #mega-menu-primary li.mega-menu-item-3664, 
  #mega-menu-primary li.mega-menu-item-3961,
  #mega-menu-primary li.mega-menu-item-3665, 
  #mega-menu-primary li.mega-menu-item-3669, 
  #mega-menu-primary li.mega-menu-item-3671, 
  #mega-menu-primary li.mega-menu-item-3673, 
  #mega-menu-primary li.mega-menu-item-3675, 
  #mega-menu-primary li.mega-menu-item-3677, 
  #mega-menu-primary li.mega-menu-item-3932,
  #mega-menu-primary li.mega-menu-item-3933, 
  #mega-menu-primary li.mega-menu-item-3934 {
    margin-right: 12px !important;
  }
  
      div#mega-menu-wrap-primary ul#mega-menu-primary a img {
        height: 15px !important;
        margin-right: 5px !important;
    }

  .innrbnr img {
    height: 200px;
  }
  
  .singleProductTopWrap #breadcrumbs span, .singleProductTopWrap #breadcrumbs span a {
    font-size: 15px;
  }

  ul.slimmenu li {
    margin-right: 12px;
  }

  ul.slimmenu li a {
    font-size: 11.5px;
  }

  ul.slimmenu li a img {
    height: 15px !important;
    margin-right: 5px;
  }

  .banner_text h3 {
    font-size: 42px;
    line-height: 50px;
  }

  .banner_in {
    max-width: 500px;
  }

  .banner_text p {
    font-size: 16px;
  }

  .sticker {
    width: 72px
  }

  .banner .owl-dots {
    bottom: 8%;
    left: 5%;
  }

  .our-products {
    padding: 60px 0 0;
  }

  .sec-head h1,
  .sec-head h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }

  .cat_image img {
    height: 130px;
  }

  .cat_box {
    padding: 11px 11px;
  }

  .cat_box h5 {
    font-size: 12px;
  }

  .search-field input[type=search] {
    width: 380px;
  }

  .product_wrap .owl-nav {
    right: -20px;
  }

  .pro_image {
    padding: 20px 0;
  }

  .pro_image img {
    height: 164px !important;
  }

  .need-help h3 {
    font-size: 40px;
  }

  .blog-text h5 {
    font-size: 16px;
  }

  .ftr-middle-inner {
    width: 80%;
    margin-left: 15%;
  }

  .footer-right ul li i {
    font-size: 15px;
    margin-right: 4px;
  }

  .footer-right ul li p {
    font-size: 11px;
  }

  .ftr_links li {
    padding-right: 9px;
    font-size: 11px;
    margin-right: 8px;
  }

  .inrPgeTitle h1 {
    font-size: 40px;
  }

  .shopBody {
    padding: 50px 0;
  }

  .lftfilter {
    max-width: 250px;
  }

  .filteraccdian h4 {
    font-size: 20px;
  }

  .filteraccdian ul li {
    margin-bottom: 20px;
  }

  .filteraccdian ul li label {
    font-size: 15px;
  }

  .shopBodyTopSec {
    margin-bottom: 10px;
    padding-bottom: 12px;
  }

  .recnt_postbxs .postcont {
    padding-left: 0;
    padding-top: 10px;
  }

  .sidebar_body_sec .recnt_postbxs {
    flex-direction: column;
    align-items: flex-start;
  }

  .recnt_postbxs .recnt_postimg img {
    width: 90px !important;
    height: 90px !important;
  }

  .themeTxt h1 {
    font-size: 40px;
    line-height: 50px;
  }

  .themeTxt h2 {
    font-size: 35px;
    line-height: 45px;
  }

  .themeTxt h3 {
    font-size: 30px;
    line-height: 40px;
  }

  .themeTxt h4 {
    font-size: 22px;
    line-height: 32px;
  }

  .contctFrmMainRow .col-lg-4 {
    width: 40%;
  }

  .contctFrmMainRow .col-lg-8 {
    width: 60%;
  }

  .contctDtlsWrp .cntctFrmMainCol .wpcf7 {
    padding: 25px;
  }

  .section-header {
    padding-bottom: 30px;
  }

  .page-template-wishlist .section-header {
    padding-bottom: 10px !important;
  }

  .brndslistImgWrp img {
    width: 125px;
    height: 72px;
  }

  .completeKitchenCart .quantity .minus,
  .completeKitchenCart .quantity .plus {
    height: 40px !important;
    width: 30px !important;
  }

  .completeKitchenCart .quantity input.qty {
    height: 40px !important;
    width: 50px !important;
  }

  .listingrt .products .pro-item .pro-box {
    min-height: 400px;
  }

  .pro-box .prdctDtls h2.woocommerce-loop-product__title {
    font-size: 14px;
    line-height: 22px;
    min-height: 66px;
  }

  .wishlistCont.completeKitchenCart .wishlist_table li {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding: 20px 20px;
  }

  .wishlistCont.completeKitchenCart .product-thumbnail img {
    width: 60px !important;
    max-width: 60px !important;
    border: 1px solid #2e3652 !important;
    padding: 3px 3px;
  }

  .wishlistCont.completeKitchenCart .item-wrapper .item-details .product-name h3 {
    font-size: 14px;
    line-height: 23px;
  }

  .wishlistCont.completeKitchenCart .item-wrapper .item-details .product-name h3 a {
    color: #cf5635;
  }

  .wishlistCont.completeKitchenCart .item-wrapper .item-details .product-name h3 a:hover {
    color: #2e3652;
  }

  .wishlistCont.completeKitchenCart .wishlist_table tr td {
    padding: 15px 0 !important;
    font-size: 16px !important;
    color: #000000;
  }

  .wishlistCont.completeKitchenCart table.item-details-table,
  .wishlistCont.completeKitchenCart table.additional-info {
    box-shadow: none !important;
  }

  .wishlistCont.completeKitchenCart table.item-details-table td.value del .woocommerce-Price-amount {
    padding-right: 8px;
  }

  .wishlistCont.completeKitchenCart .wishlist_table {
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: rgb(0 0 0 / 16%) 0px 1px 4px;
    -moz-box-shadow: rgb(0 0 0 / 16%) 0px 1px 4px;
    -webkit-box-shadow: rgb(0 0 0 / 16%) 0px 1px 4px;
  }

  .wishlistCont.completeKitchenCart .wishlist_table .product-add-to-cart a {
    font-size: 14px;
    min-width: 100px !important;
    display: inline-block !important;
    padding: 10px 12px !important;
    background: #cf5636 !important;
    color: #fff !important;
    border-radius: 0 !important;
    align-items: center !important;
    border: 0 !important;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
  }

  .wishlistCont.completeKitchenCart .wishlist_table .product-add-to-cart a:hover {
    background: #2e3652 !important;
  }

  .wishlistCont.completeKitchenCart .shop_table .additional-info-wrapper {
    position: relative;
  }

  .wishlistCont.completeKitchenCart .shop_table .additional-info-wrapper .product-add-to-cart {
    text-align: left !important;
  }

  .wishlistCont.completeKitchenCart .shop_table .additional-info-wrapper .product-remove a .fa-trash {
    font-size: 25px;
    position: absolute;
    bottom: 8px;
    right: 1px;
    color: #000000;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
  }

  .wishlistCont.completeKitchenCart .shop_table .additional-info-wrapper .product-remove a .fa-trash:hover {
    color: red;
  }

  .wishlistCont.completeKitchenCart table tr th.product-price {
    width: 150px;
  }

  .wishlistCont table.shop_table td.product-add-to-cart .add_to_cart_button {
    font-size: 14px;
    min-width: 110px !important;
    padding: 10px 12px !important;
    margin-right: 15px !important;
  }

  .completeKitchenCart table .product-subtotal span {
    font-size: 15px;
    line-height: 25px;
  }

  .completeKitchenCart table .product-price span {
    font-size: 15px;
    line-height: 25px;
  }

  .wishlistCont.completeKitchenCart table tr th.product-price span {
    font-size: 18px;
    line-height: 28px;
  }

  .wishlistCont table.shop_table td.product-name a {
    font-size: 15px;
    line-height: 23px;
  }

  .wishlistCont.completeKitchenCart .wishlist_table tr td.product-name {
    padding-right: 12px !important;
  }

  .wooResultOrdrbyWrap {
    padding-bottom: 11px;
  }

  .compltKitchnwreLogin .woocommerce-form {
    min-height: 365px;
  }

  .compltKitchnCheckout .woocommerce-additional-fields textarea {
    height: 120px !important;
  }


  .wishlistCont.completeKitchenCart table tr th {
    font-size: 16px
  }
  
  .completeKitchenTab ul.tabs li {
    font-size: 18px !important;
    line-height: 28px !important;
    padding: 0 20px 0 20px !important;
}

.singleProdctSummary .product_title.entry-title {
    font-size: 22px;
    line-height: 32px;
}

  .imgOverlayTxtWrap {
    height: 50px;
  }

  .imgOverlayTxtWrap p {
    font-size: 14px;
  }
  
  .ovrlayLink {
    width: 94%;
    height: 98%;
  }
  
  .singleProdctSummary form.cart .input-text.qty {
      width: 52px;
  }
  
  .singleProdctSummary form.cart .minus, .singleProdctSummary form.cart .plus, .singleProdctSummary form.cart .input-text.qty {
      height: 50px;
  }
  
  .singleProdctSummary form.cart .minus {
      font-size: 24px !important;
      line-height: 44px;
  }
  
  .singleProdctSummary form.cart .plus {
      font-size: 22px !important;
      line-height: 44px;
  }
  
  .singleProdctSummary form.cart .input-text.qty {
      font-size: 15px !important;
  }
  
.singleProdctSummary form.cart .single_add_to_cart_button {
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
    height: 50px;
    padding: 0 50px 0 80px;
}

.singleProdctSummary form.cart .single_add_to_cart_button::before {
    left: 55px
}

.completeKitchenTab {
    padding-top: 30px;
}

.searchRow article {
    width: 33.333333%;
}

.searchRow article .pageContent {
    min-height: 350px;
}

.searchRow article .pageContent header.entry-header {
    min-height: 350px;
}

.searchRow article .pageContent h4 a {
    font-size: 14px;
}

.aboutPageSec .container {
    padding: 0 12px;
}

.whyChooseBx {
    min-height: 344px;
}

.abtSecTwo .section-header h3 span {
    font-size: 22px;
    margin-top: 3px;
}

.shpngMiddleCont .accordion .accordion-header button {
    font-size: 17px;
}

.cartTotalsAfterWrap .shipping_calculator.td-trans-frm {
    margin-top: 82px;
}

.cartTotalsMainWrap {
    width: 67%;
}

.cartTotalsAfterWrap {
    width: 37%;
}

}

@media only screen and (max-width: 991px) {
    
  #mega-menu-wrap-primary #mega-menu-primary {
    margin-top: 10px;
  }
 
  #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated {
    position: relative;
    z-index: 1;
  }
  
  #mega-menu-primary li.mega-menu-item  ul.mega-sub-menu .mega-menu-item .mega-menu-link span.mega-indicator {
    display: inline-block !important;
  }
  
  #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner,
  #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::after {
      background-color: #2e3652 !important;
  }
 
  #mega-menu-primary li.mega-menu-item-3664, 
  #mega-menu-primary li.mega-menu-item-3961,
  #mega-menu-primary li.mega-menu-item-3961,
  #mega-menu-primary li.mega-menu-item-3665, 
  #mega-menu-primary li.mega-menu-item-3669, 
  #mega-menu-primary li.mega-menu-item-3671, 
  #mega-menu-primary li.mega-menu-item-3673, 
  #mega-menu-primary li.mega-menu-item-3675, 
  #mega-menu-primary li.mega-menu-item-3677, 
  #mega-menu-primary li.mega-menu-item-3932,
  #mega-menu-primary li.mega-menu-item-3933, 
  #mega-menu-primary li.mega-menu-item-3934 {
    margin: 0 !important;
    padding: 0 !important;
  }

  #mega-menu-primary li.mega-menu-item-3664 > a, 
  #mega-menu-primary li.mega-menu-item-3961 > a,
  #mega-menu-primary li.mega-menu-item-3665 > a, 
  #mega-menu-primary li.mega-menu-item-3669 > a, 
  #mega-menu-primary li.mega-menu-item-3671 > a, 
  #mega-menu-primary li.mega-menu-item-3673 > a, 
  #mega-menu-primary li.mega-menu-item-3675 > a, 
  #mega-menu-primary li.mega-menu-item-3677 > a, 
  #mega-menu-primary li.mega-menu-item-3932 > a, 
  #mega-menu-primary li.mega-menu-item-3933 > a, 
  #mega-menu-primary li.mega-menu-item-3934 > a {
    padding: 10px 10px !important;
  }
  
  #mega-menu-primary li.mega-menu-item-3664 a span.mega-indicator, 
  #mega-menu-primary li.mega-menu-item-3961 a span.mega-indicator,
  #mega-menu-primary li.mega-menu-item-3665 a span.mega-indicator, 
  #mega-menu-primary li.mega-menu-item-3669 a span.mega-indicator, 
  #mega-menu-primary li.mega-menu-item-3671 a span.mega-indicator, 
  #mega-menu-primary li.mega-menu-item-3673 a span.mega-indicator, 
  #mega-menu-primary li.mega-menu-item-3675 a span.mega-indicator, 
  #mega-menu-primary li.mega-menu-item-3677 a span.mega-indicator, 
  #mega-menu-primary li.mega-menu-item-3932 a span.mega-indicator, 
  #mega-menu-primary li.mega-menu-item-3933 a span.mega-indicator, 
  #mega-menu-primary li.mega-menu-item-3934 a span.mega-indicator {
      display: block !important;
      color: #000000 !important;
  }
  
  #mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary {
    background: #fbfbfb !important;
    padding-bottom: 10px;
    border-top: 0;
  }
  
  #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open {
    background: #ffffff !important;  
  }
  
  .head-menu #mega-menu-wrap-primary ul#mega-menu-primary li.mega-menu-item > ul.mega-sub-menu {
     margin-top: 12px;
  }
  
  .head-menu #mega-menu-wrap-primary ul#mega-menu-primary li.mega-menu-item > ul.mega-sub-menu li ul.mega-sub-menu {
      margin-top: 0;
  }
  
  div#mega-menu-wrap-primary ul#mega-menu-primary span.menu-image-title br {
      display: none !important;
  }

  #breadcrumbs span, #breadcrumbs span a {
    font-size: 16px;
    line-height: 26px;
  }
  
  div#mega-menu-wrap-primary ul#mega-menu-primary a img {
    width: 20px !important;
    height: 15px !important;
    object-fit: contain !important;
    margin-right: 8px !important;
  }
  
  .singleProductTopWrap #breadcrumbs span, .singleProductTopWrap #breadcrumbs span a {
    font-size: 14px;
  }

  .hderinr .logo img {
    width: 120px;
  }

  .mob-search {
    display: block
  }

  .desk-search {
    display: none
  }

  .search-field input[type=search] {
    width: 340px;
  }

  .header_search {
    max-width: 340px;
    background: transparent;
  }

  .toggle-search {
    position: absolute;
    left: 0;
    bottom: 10px;
  }

  .header.showHdrMnu .toggle-search {
    bottom: 8px;
  }

  .search-field input[type=submit],
  .search-btn {
    min-width: 30px;
    margin: 0 2px 0 5px;
  }

  .search-field input[type=search] {
    height: 34px;
  }

  .search-btn {
    cursor: pointer;
  }

  .hderinr {
    padding: 10px 0;
  }

  .header_contacts li a {
    font-size: 0;
  }

  .head-menu {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    position: relative;
  }

  .collapse-button {
    position: static;
    padding-top: 15px;
    transform: translate(0, 0%);
    -o-transform: translate(0, 0%);
    -ms-transform: translate(0, 0%);
    -moz-transform: translate(0, 0%);
    -webkit-transform: translate(0, 0%);
  }

  .banner {
    margin-top: 164px
  }

  .banner_text h3 {
    font-size: 36px;
    line-height: 42px;
  }

  .banner_in {
    max-width: 400px;
  }

  .banner_text p {
    font-size: 14px;
  }

  .banner .owl-dots {
    bottom: 12px;
    left: 5%;
  }

  ul.slimmenu {
    width: 100%;
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    padding: 15px;
  }

  .header.fixed_header.showHdrMnu ul.slimmenu {
    margin-top: 0;
  }

  ul.slimmenu li {
    margin-right: 0;
    padding: 0;
  }

  ul.slimmenu li a {
    font-size: 12.5px;
    display: flex !important;
    align-items: center;
    padding: 10px 0;
  }

  .our-products {
    padding: 50px 0 0;
  }

  .sec-head {
    margin-bottom: 25px;
    text-align: center;
  }

  .head-right {
    text-align: center;
    margin-top: 10px;
  }

  .cat-wrap-left img {
    margin-bottom: 30px;
  }

  .arrival {
    padding: 40px 0;
  }

  .brand_wrap ul li {
    width: 21%;
  }

  .clien-slide .owl-nav {
    margin-bottom: 30px;
  }

  .need-help h3,
  .sec-head h1,
  .sec-head h2 {
    font-size: 35px;
  }

  .need-help {
    padding: 60px 0;
  }

  .need-help p {
    font-size: 15px;
  }

  .blog-text h5 {
    font-size: 15px;
  }

  .footer-right {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
  }

  .footer-top {
    padding: 40px 0 30px;
  }

  .ftr_btm_wrap {
    flex-wrap: wrap;
  }

  .copy {
    width: 100%;
    order: 1;
    margin-top: 10px;
    text-align: center;
  }

  .footer-bottom {
    padding: 15px 0;
  }

  .blog-sec {
    padding: 40px 0;
  }

  .inrPgeTitle h1 {
    font-size: 35px;
  }

  .shopBody {
    padding: 40px 0;
  }

  .lftfilter {
    max-width: 220px;
  }

  .blogArchiveSec .mainSidebarColm {
    padding-left: 12px;
  }

  .sidebarWrapper {
    padding-top: 40px;
  }

  .sidebar_body_sec .recnt_postbxs {
    flex-direction: row;
    align-items: center;
  }

  .recnt_postbxs .postcont {
    padding-left: 15px;
    padding-top: 0;
  }

  body.blog .sidebar_recent_post {
    margin-top: 0;
  }

  .themeTxt h1 {
    font-size: 35px;
    line-height: 45px;
  }

  .themeTxt h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .themeTxt h3 {
    font-size: 24px;
    line-height: 34px;
  }

  .themeTxt h4 {
    font-size: 20px;
    line-height: 30px;
  }

  .comnPageSec {
    padding: 40px 0;
  }

  .contctFrmMainRow .col-lg-4,
  .contctFrmMainRow .col-lg-8 {
    width: 100%;
    padding: 0 12px;
  }

  .contctDtlsWrp .info-container {
    border-radius: 8px 8px 0 0;
  }

  .contctDtlsWrp .cntctFrmMainCol .wpcf7 {
    border-radius: 0 0 8px 8px;
  }

  .contctDtlsWrp .cntctFrmMainCol .wpcf7 {
    padding: 25px 25px 40px;
  }

  .brandsLists li {
    width: 33.333333%;
  }

  .section-header {
    padding-bottom: 25px;
  }

  body.single-post .sidebar_recent_post {
    margin-top: 0;
  }

  .completeKitchenCart table.shop_table td {
    max-width: 170px;
  }

  .completeKitchenCart table tr th {
    font-size: 18px;
    line-height: 40px !important;
  }

  .completeKitchenCartTotals {
    width: 100% !important;
  }

  .completeKitchenCartTotals table th {
    font-size: 16px !important;
  }

  .listingrt .products .pro-item .pro-box {
    min-height: inherit;
  }

  .wishlistCont.completeKitchenCart .wishlist_table .product-add-to-cart a {
    font-size: 14px !important;
    line-height: 34px !important;
    padding: 0 12px !important;
  }

  .wishlistCont.completeKitchenCart table tr th.product-name {
    width: 110px;
  }

  .wishlistCont table.shop_table td.product-add-to-cart .add_to_cart_button {
    padding: 4px 12px !important;
  }

  .wishlistCont.completeKitchenCart .wishlist_table tr td {
    padding: 12px 0 !important;
  }

  .filteraccdian ul li {
    margin-bottom: 12px !important;
  }

  .filteraccdian ul li label {
    font-size: 13px;
  }

  .wooResultOrdrbyWrap {
    padding-bottom: 20px;
  }
  
  .wooResultOrdrbyWrap {
    padding-bottom: 20px;
    margin-bottom: 0;
    border: 0;
 }

  .wooResultOrdrbyWrap .woocommerce-result-count {
    font-size: 12px !important;
    margin-left: 20px !important;
    position: relative;
    top: 30px;
  }

  .compltKitchnwreLogin .woocommerce-form {
    min-height: 390px;
  }

  .compltKitchnCheckout #customer_details .col-1,
  .compltKitchnCheckout #customer_details .col-2 {
    width: 100% !important;
  }

  .compltKitchnCheckout #customer_details .col-1 {
    margin-bottom: 30px;
  }

  .compltKitchnCheckout #order_review #payment #place_order {
    margin-top: 15px;
  }

  .wishlistCont.completeKitchenCart table tr th {
    font-size: 15px;
  }

  .completeKitchenCart.wishlistCont .tinvwl-table-manage-list tbody td.product-action button {
    min-width: auto;
  }

  .completeKitchenCart.wishlistCont .tinvwl-table-manage-list tbody tr.wishlist_item td.product-remove button {
    right: 71px;
    top: 50%;
    transform: translateY(-50%);
  }

  .wishlistCont.completeKitchenCart table tr th.product-price {
    width: auto;
  }

  .completeKitchenCart.wishlistCont table tr th.product-price,
  .completeKitchenCart.wishlistCont table tr th.product-date,
  .completeKitchenCart.wishlistCont table tr th.product-stock {
    min-width: 89px !important;
  }

  .wishlistCont.completeKitchenCart table tr th {
    font-size: 14px;
    padding: 0;
  }

  .lftfilter {
    display: none;
  }

  .listingrt .woof_autohide_wrapper {
    display: block !important;
  }
  
  .wooResultOrdrbyWrap form.woocommerce-ordering {
    position: absolute;
    right: 0;
    top: -7px;
  }
  
  .wooResultOrdrbyWrap {
      justify-content: flex-end;
  }

  .shopBody .listingrt h1.page-title {
    position: static;
    font-size: 28px !important;
    line-height: 38px !important;
    text-align: center;
  }

  .listingrt a.woof_show_auto_form,
  .listingrt a.woof_hide_auto_form {
    width: 60px !important;
    background-size: 60px !important;
    height: 23px !important;
  }

  .page-template-wishlist .section-header {
    padding-bottom: 0 !important;
  }

  .page-template-wishlist .section-header h2 {
    margin-bottom: 5px !important;
  }

  .listingrt .woof_autohide_wrapper .woof_auto_show {
    opacity: 0.98 !important;
  }
  
  .sellersldr .row .col-xl-4 {
    width: 50%;
    margin-bottom: 22px;
  }
  
  .completeKitchenTab {
    padding-top: 10px;
  }
  
  .singleProdctSummary .product_title.entry-title {
    font-size: 20px;
    line-height: 30px;
}

  .singleProductTopWrap .inrBnrCont {
      margin-top: 160px;
      padding-top: 30px;
  }
  
  body.single-product .shopBody {
    padding: 30px 0;
}
  
  .ovrlayLink {
    width: 93.5%;
    height: 97%;
  }
  
  #loginModal .login-submit .button-primary {
    width: 130px;
    height: 45px;
  }
  
  .loginModalFtr a {
    font-size: 14px;
  }
  
  .searchRow article {
      width: 50%;
  }
  
  .searchRow article .pageContent {
    min-height: 380px;
  }
  
 .searchRow article .pageContent header.entry-header {
    min-height: 380px;
 }
 
 .productReviewDetailsWrap {
     margin-bottom: 10px;
     padding-bottom: 15px;
 }
 
 .abtSecTwo .row {
     justify-content: center;
 }
 
 .whyChooseBx {
    padding: 20px 15px;
    margin-bottom: 24px;
}

.abtSecTwo {
    margin-top: 50px;
    padding: 50px 0 40px;
}

.whyChooseIcnWrap {
    width: 80px;
    height: 80px;
    padding: 15px 15px;
}

.whyChooseBx .themeTxt span {
    font-size: 18px;
    margin-bottom: 15px;
}

.abtSecOneCol1 {
    padding-right: 12px;
}

.abtSecOneCol2 .abtCol1ImgWrap {
    padding: 25px 0 0 25px;
}

.abtSecOneCol2 .abtCol1ImgWrap::before {
    border: 2px solid #cf5635;
}

.abtSecThree {
    padding-top: 50px;
}

.abtSecThree .container {
    padding: 0 12px;
}

.secThreeIcnWrap {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.abrSecThreeContWrap .themeTxt span {
    font-size: 18px;
    margin-bottom: 15px;
}

.abrSecThreeContWrap {
    padding: 20px 20px;
}

.singleProdctSummary form.cart .single_add_to_cart_button {
    padding: 0 20px 0 50px;
}

.singleProdctSummary form.cart .single_add_to_cart_button::before {
    left: 27px;
    background-size: 16px 14px;
    width: 16px;
    height: 14px;
}

.woocommerce-checkout .woocommerce-order-details .woocommerce-order-details__title, .woocommerce-checkout .woocommerce-customer-details .woocommerce-column__title {
    font-size: 22px;
    line-height: 32px;
}

.lftfilter .filteraccdian .woof_block_html_items {
    max-height: inherit;
    overflow: inherit;
    overflow-y: inherit;
}

.irs--round .irs-from, .irs--round .irs-to, .irs--round .irs-single, .irs--round .irs-bar {
    background-color: #cf5635 !important;
}

.irs--round .irs-from:before, .irs--round .irs-to:before, .irs--round .irs-single:before {
    border-top-color: #cf5635 !important;
}

.irs--round .irs-handle {
    border: 4px solid #cf5635 !important;
}

.mainBlogSingleColm .post-navigation .nav-links .nav-previous a, .mainBlogSingleColm .post-navigation .nav-links .nav-next a {
    padding: 10px 15px !important;
}

.mainBlogSingleColm article {
    padding: 0 0 15px;
}

.mainBlogSingleColm .post-navigation .nav-links {
    padding: 10px 0 15px;
}

.whyChooseBx {
    min-height: 289px;
}

.abtSecTwo .section-header h3 span {
    font-size: 18px;
}

.page-template-default .wp-block-heading {
    padding-bottom: 0px;
    padding-top: 10px;
}

.kitchenCartCollaterals .completeKitchenCartTotals {
    flex-wrap: wrap !important;
}

.cartTotalsMainWrap {
    width: 100%;
    padding-right: 0;
}

.cartTotalsAfterWrap .shipping_calculator.td-trans-frm {
    margin-top: 20px;
}

.cartTotalsAfterWrap {
    width: 100%;
}

.mega-menu-primary-mobile-open .head-menu {
  display: block;
}

/*div#mega-menu-wrap-primary ul#mega-menu-primary a img, div#mega-menu-wrap-primary ul#mega-menu-primary span.menu-image-title br {*/
/*  display: none;*/
/*}*/

div#mega-menu-wrap-primary ul#mega-menu-primary span.menu-image-title {
  color: #000000;
  font-size: 14px !important;
  line-height: 40px !important;
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed.mega-toggle-on > ul.mega-sub-menu li a.mega-menu-link {
  padding-left: 0 !important;
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed.mega-toggle-on > ul.mega-sub-menu li > ul.mega-sub-menu li {
  padding: 0 0 15px;
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed.mega-toggle-on > ul.mega-sub-menu li > ul.mega-sub-menu li a.mega-menu-link {
  padding-left: 10px !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
  font-size: 14px !important;
  padding-bottom: 6px;
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed.mega-toggle-on > ul.mega-sub-menu li > ul.mega-sub-menu li ul.mega-sub-menu li {
  padding-left: 7px;
  padding-right: 0;
  padding-top: 7px;
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed.mega-toggle-on > ul.mega-sub-menu li > ul.mega-sub-menu li ul.mega-sub-menu li a.mega-menu-link {
  padding-left: 0 !important;
}
.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input { padding: 8px 24px 8px 48px !important;}
.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit { top:4px !important;}


.singleProdctSummary .price {
    font-size: 17px !important;
    line-height: 17px !important;
}
}

@media only screen and (max-width: 767px) {
    
  #breadcrumbs span, #breadcrumbs span a {
    font-size: 14px;
    line-height: 24px;
  }

  .toggle-search {
    bottom: 5px;
  }

  ul.slimmenu {
    margin-top: 0;
  }

  #breadcrumbs span {
    padding-right: 5px;
    padding-left: 5px;
  }
  
  .collapse-button {
      padding-top: 0;
  }

  .innrbnr img {
    height: 180px;
  }

  .header-links li {
    padding-right: 8px;
    margin-right: 6px;
  }

  .header-links li a {
    font-size: 12px;
  }

  .logo {
    width: 120px;
  }

  .account-info {
    margin-right: 15px;
  }

  .a-info-text p a, .header_info .account-info {
    font-size: 12px;
  }

  .shopping-info li:not(:last-child) {
    margin-right: 15px;
  }

  .account-info i {
    width: 30px;
    height: 30px;
    margin-right: 7px;
    font-size: 16px;
  }

  .header_contacts li {
    margin-right: 15px;
  }

  .banner {
    margin-top: 152px;
  }

  .sticker {
    display: none;
  }

  .banner_text h3 {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 5px;
  }

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

  .banner_in {
    max-width: 100%;
    /* text-align: center; */
  }

  .banner-btn,
  .more {
    padding: 10px 13px;
    font-size: 12px;
  }

  .need-help h3,
  .sec-head h1,
  .sec-head h2 {
    font-size: 32px;
  }

  .product_wrap .owl-nav {
    right: 0;
  }

  .clien-slide .owl-nav {
    margin-top: 30px;
    position: static;
    justify-content: center;
  }

  .clien-slide .owl-item:nth-child(odd) {
    margin-top: 0;
  }

  .client-says {
    padding: 40px 0 10px;
  }

  .need-help {
    padding: 50px 0;
  }

  .footer-left {
    padding-right: 12px;
  }

  .ftr-middle-inner {
    margin-top: 30px;
  }

  .inrPgeTitle h1 {
    font-size: 32px;
  }

  .sidebarWrapper {
    padding-top: 30px;
  }

  .themeTxt h1 {
    font-size: 32px;
    line-height: 42px;
  }

  .themeTxt h2 {
    font-size: 25px;
    line-height: 35px;
  }

  .themeTxt h3 {
    font-size: 22px;
    line-height: 32px;
  }

  .contctMapWrp iframe {
    height: 200px !important;
    margin-bottom: 25px;
  }

  .contactmap .row .contctMapWrp:last-child iframe {
    margin-bottom: 0;
  }

  .brandsLists li {
    width: 50%;
  }

  .completeKitchenCart table.shop_table td {
    max-width: 100%;
  }

  .completeKitchenCart table td.actions button.button[name="update_cart"] {
    margin-left: 0;
    margin-top: 12px;
  }

  .completeKitchenCart table td.actions button.button {
    width: auto !important;
  }

  .completeKitchenCart .quantity .minus {
    margin-left: 20px !important;
  }

  .completeKitchenCart .quantity .minus {
    font-size: 20px !important;
  }

  .completeKitchenCart .quantity .plus {
    font-size: 15px !important;
  }

  .completeKitchenCart .quantity input.qty {
    font-size: 12px !important;
  }

  .completeKitchenCart table .product-price span,
  .completeKitchenCart table .product-subtotal span {
    font-size: 15px;
  }

  .pro-box .yith-wcwl-add-to-wishlist a {
    width: 35px !important;
    height: 35px !important;
  }

  .pro_image .yith-wcwl-add-button a i {
    font-size: 18px;
    margin-right: 0;
    margin-top: 2px;
  }

  .pro-box .yith-wcwl-add-to-wishlist i.fa-heart {
    font-size: 18px;
  }

  .shopBody .listingrt h1.page-title {
    position: relative;
    top: 0;
    font-size: 28px !important;
    text-align: center;
  }

  .wooResultOrdrbyWrap form.woocommerce-ordering select {
    padding-left: 0 !important;
  }

  .compltKitchnwreLogin .woocommerce-form {
    min-height: inherit;
  }

  .compltKitchnMyAccNav {
    margin-bottom: 30px;
  }

  .compltKitchnMyAccNav,
  .completeKitchnMyAccCont {
    min-height: inherit;
  }

  .completeKitchnMyAccCont .edit-account legend {
    font-size: 20px;
    margin-bottom: 13px;
  }

  .page-id-9 .woocommerce form .form-row-last,
  .page-id-9 .woocommerce-page form .form-row-last,
  .page-id-9 .woocommerce form .form-row-first,
  .page-id-9 .woocommerce-page form .form-row-first {
    width: 100% !important;
  }

  .compltKitchnCheckout #order_review #payment #place_order {
    display: inline-block;
    width: auto;
  }

  .completeKitchenCart.wishlistCont .tinv-wishlist .product-remove button {
    margin: 0 auto !important;
  }

  .completeKitchenCart.wishlistCont .tinvwl-table-manage-list tbody td {
    padding: 7px 15px;
  }

  .wishlistCont .tinv-wishlist table input[type=checkbox] {
    margin-top: 10px;
  }

  .completeKitchenCart.wishlistCont .tinvwl-table-manage-list tbody td.product-action button,
  .completeKitchenCart.wishlistCont .tinvwl-table-manage-list tfoot .tinvwl-input-group-btn button,
  .completeKitchenCart.wishlistCont .tinvwl-table-manage-list tfoot .tinvwl-to-right button {
    justify-content: center;
    max-width: 246px;
    margin-bottom: 10px;
  }

  .completeKitchenCart.wishlistCont .tinv-wishlist .product-remove button {
    font-size: 35px !important;
  }

  .completeKitchenCart.wishlistCont .tinvwl-table-manage-list tbody tr.wishlist_item td.product-remove button {
    position: absolute;
    top: 30px;
    right: 20px;
    width: 35px !important;
    height: 35px !important;
  }

  .pro-box .tinv-wraper {
    position: absolute;
    top: 10px;
    right: 10px;
  }

  .pro-box .tinv-wraper .tinvwl_add_to_wishlist_button {
    width: 30px !important;
    height: 30px !important;
  }

  .pro-box .tinv-wraper .tinvwl_add_to_wishlist_button::before,
  .pro-box .tinv-wraper .tinvwl_add_to_wishlist_button.inited-add-wishlist.tinvwl-product-in-list::before {
    font-size: 22px !important;
  }
  
  .pro-box button.addonify-cp-button {
    top: 47px;
    right: 10px;
    width: 30px !important;
    height: 30px !important;
  }
  
  .pro-box button.addonify-cp-button.compare-clicked::after {
    background-size: 30px 30px !important;
    width: 30px !important;
    height: 30px !important;  
  }
  
  .pro-box button.addonify-cp-button::after, .pro-box button.addonify-cp-button.compare-clicked::after {
    background-size: 16px 12px !important;
    width: 16px !important;
    height: 12px !important;
  }
 
 .pro-box button.addonify-cp-button.compare-clicked.selected::after {
    background-size: 16px 12px !important;
    width: 16px !important;
    height: 12px !important;
}
  
  .sellersldr .row .col-xl-4 {
    width: 50%;
  }
  

body.single-product .shopBody {
    padding: 30px 0;
}

  .imgovrlayparent {
    width: 75%;
  }
  
  .ovrlayLink {
    width: 94.3%;
    height: 97.5%;
  }
  
  .completeKitchenTab ul.tabs li {
    font-size: 16px !important;
    line-height: 26px !important;
    padding: 0px 10px 0 10px !important;
}

  .singleProductTopWrap .inrBnrCont {
      padding-top: 15px;
  }
  
  body.single-product .shopBody {
    padding: 15px 0 30px;
}

#loginModal .modal-body {
    padding: 15px 20px 20px;
}

.modalLogo img {
    width: 150px;
}

.searchRow article .pageContent {
    min-height: 290px;
}

 .searchRow article .pageContent header.entry-header {
    min-height: 290px;
 }
 
 .woocommerce-Reviews .comment-form-comment textarea {
     width: 100%;
     height: 150px !important;
 }
 
 .completeKitchenCartTotals .shipping-calculator-form .select2-container span.selection .select2-selection .select2-selection__rendered {
     text-align: left;
 }
 
 .completeKitchenCart table .product-remove a {
     margin: 0 0 0 auto;
     font-size: 25px !important;
     line-height: 20px !important;
     width: 30px !important;
     height: 30px !important;
 }
 
 .abtSecTwo {
    margin-top: 40px;
    padding: 40px 0 30px;
}

.abtSecTwo .container {
    padding: 0 12px;
}

.abtSecThree .row .abtSecThreeCol:first-child {
    margin-bottom: 24px;
}

.abrSecThreeContWrap {
    padding: 20px 15px;
}

  .singleProdctSummary .product_title.entry-title {
    font-size: 18px;
    line-height: 28px;
}

.woocommerce-checkout .woocommerce-order-details .woocommerce-order-details__title, .woocommerce-checkout .woocommerce-customer-details .woocommerce-column__title {
    font-size: 20px;
    line-height: 30px;
}

.woocommerce-checkout .woocommerce-customer-details address {
    font-size: 14px;
    line-height: 28px;
}

.whyChooseBx {
    min-height: inherit;
}

.shpngMiddleCont .accordion .accordion-header button {
    font-size: 16px;
}

.returnFrmWrap {
    padding: 20px 20px;
}

.compltKitchnCheckout #order_review #payment div.payment_box.payment_method_stripe {
    padding: 10px 15px;
}

#stripe-payment-data fieldset .woocommerce-SavedPaymentMethods-saveNew {
    display: flex;
    align-items: flex-start;
}

#stripe-payment-data fieldset .woocommerce-SavedPaymentMethods-saveNew input {
    margin-top: 8px !important;
}

#mega-menu-wrap-primary .mega-menu-toggle {
  width: 33px;
  height: 33px;
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block button span,
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block button span::before,
 #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block button span::after {
  width: 22px;
}

.mega-menu-primary-mobile-open .mega-menu-toggle.mega-menu-open {
  height: auto !important;
  width: auto !important;
}


}

@media only screen and (max-width: 575px) {
  .banner_item figure img {
    height: 200px;
    object-fit: cover;
  }

  .brand_wrap ul li {
    padding: 10px 6px;
  }

  .cntctFrmMainCol .wpcf7 form.invalid .wpcf7-response-output,
  .cntctFrmMainCol .wpcf7 form.unaccepted .wpcf7-response-output,
  .cntctFrmMainCol .wpcf7 form.payment-required .wpcf7-response-output {
    position: static;
  }

  .completeKitchenCart table td.actions #coupon_code {
    width: 140px !important;
  }

  .listingrt nav {
    padding-top: 40px;
  }

  .listingrt nav ul li .page-numbers {
    width: 25px !important;
    height: 25px !important;
    font-size: 12px !important;
    margin-right: 5px !important;
  }

  .pro-box .prdctDtls a.add_to_cart_button {
    font-size: 14px;
    line-height: 42px;
    height: 42px;
  }

  .completeKitchenCart.wishlistCont .tinvwl-table-manage-list tbody tr.wishlist_item td.product-remove button {
    width: 30px !important;
    height: 30px !important;
  }

  .completeKitchenCart.wishlistCont .tinv-wishlist .product-remove button i {
    font-size: 25px;
  }
  
  .ovrlayLink {
    width: 93.3%;
    height: 97.2%;
  }
  
  .completeKitchenTab table.shop_attributes th {
    min-width: 180px;
  }
  
 #loginModal .modal-content {
    width: 100% !important;
    max-width: 350px;
}

#loginModal .modal-body {
    padding: 15px 15px 20px;
}

.searchPagination {
    padding-top: 20px;
}

.searchPagination .nav-links span, .searchPagination .nav-links a {
    width: 25px;
    height: 25px;
    font-size: 12px;
    margin-right: 5px;
}

.pro-box .prdctDtls h2.woocommerce-loop-product__title {
    min-height: inherit;
}

.returnFrmWrap {
    padding: 15px 15px;
}
.head-menu { padding: 10px 0;}
.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input { padding: 8px 24px 8px 24px !important;}

}


@media only screen and (max-width: 480px) {
    
  .collapse-button {
    margin-top: 6px;
  }
  
  .toggle-search {
    bottom: 6px;
  }

  .header_search {
    max-width: 250px;
  }

  .search-field input[type=search] {
    width: 270px;
  }

  .header_info {
    margin-right: 12px;
  }

  .innrbnr img {
    height: 160px;
  }

  .header_contacts li:last-child i {
    font-size: 18px;
  }

  .header-links li a {
    font-size: 11px;
  }

  .header_contacts li i {
    margin-right: 0;
    margin-bottom: 0;
  }
  
  .singleProductTopWrap #breadcrumbs span, .singleProductTopWrap #breadcrumbs span a {
    font-size: 12px;
    padding-right: 3px;
    padding-left: 3px;
  }

  .banner {
    margin-top: 145px
  }

  .a-info-text p a, .header_info .account-info {
    font-size: 11px;
  }

  .a-info-text span a{
    font-size: 10px;
  }

  .logo {
    width: 105px
  }

  .banner_text p {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .banner_text {
    top: 46%;
  }

  .banner_text h3 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 5px;
  }

  .need-help h3,
  .sec-head h1,
  .sec-head h2 {
    font-size: 28px;
  }

  .ftr-middle-inner {
    width: 100%;
    margin-left: 0;
  }

  .footer-right {
    flex-wrap: wrap;
  }

  ul.ftr_links {
    width: 100%;
    text-align: center;
  }

  .inrPgeTitle h1 {
    font-size: 28px;
  }

  .contctDtlsWrp .info-item i {
    font-size: 15px;
    min-width: 35px;
    width: 35px;
    height: 35px;
    margin-right: 10px;
  }

  .contctDtlsWrp .info-item span {
    font-size: 16px;
  }

  .contctDtlsWrp .info-container {
    padding: 15px 15px 0;
  }

  .contctDtlsWrp .cntctFrmMainCol .wpcf7 {
    padding: 15px 15px 40px;
  }

  .contctDtlsWrp .form-group textarea {
    height: 135px;
  }

  .brandsLists li {
    padding: 0 8px;
  }

  .brndslistImgWrp {
    height: 100px;
    margin-top: 18px;
  }

  .brndslistImgWrp img {
    width: 105px;
    height: 52px;
  }

  .completeKitchenCart table td.actions button.button {
    min-width: 112px !important;
  }

  .wooResultOrdrbyWrap {
    border-bottom: 0;
    margin-bottom: 0;
  }

  .wooResultOrdrbyWrap form.woocommerce-ordering select {
    font-size: 14px !important;
  }

  .wooResultOrdrbyWrap .woocommerce-result-count {
    font-size: 11px !important;
    margin-left: 10px !important;
  }

  .wishlistCont.completeKitchenCart table.item-details-table td.value {
    font-size: 13px !important;
    padding-top: 15px !important;
    font-weight: 500;
  }
  
  .sellersldr .row .col-xl-4 {
    width: 100%;
 }
 
 .sellersldr .row .col-xl-4:last-child {
     margin-bottom: 0;
 }

 .imgovrlayparent {
    width: 100%;
 }
 
 .ovrlayLink {
    width: 95%;
    height: 97.7%;
 }
 
 .singleProdctSummary .pwb-single-product-brands span, .singleProdctSummary .pwb-single-product-brands a, .prodyctSingleMeta span,.variations_form th.label {
    font-size: 16px !important;
    line-height: 24px !important;
    margin-bottom: 5px;
}

.singleProdctSummary .price {
    font-size: 18px !important;
    line-height: 18px !important;
    margin-top: 20px;
}

.completeKitchenTab ul.tabs li {
    font-size: 14px !important;
    line-height: 24px !important;
}

  .woocommerce-Tabs-panel--pwb_tab #tab-pwb_tab-content h3 {
    font-size: 16px !important;
    line-height: 24px !important;
  }
  
  .completeKitchenTab table.shop_attributes th {
    min-width: 165px;
  }
  
  .searchRow article {
      width: 100%;
  }

  .searchRow article .pageContent {
    padding: 0px 15px 20px;
  }
  
  .searchsForm form input[type="search"] {
    width: 200px;
  }
  
  .searchsForm form input[type="submit"] {
    min-width: 94px;
  }
  
  .pro_image img {
    height: inherit !important;
  }
  
  .compltKitchnCheckout #order_review #payment {
     padding: 0;
  }
  
  .shipping_calculator.td-trans-frm {
      padding: 15px 15px;
      width: auto !important;
  }

  .header_info .a-info-text {
    display: none;
  }

  .hderinr {
    padding: 10px 0 4px;
}

}
@media only screen and (max-width: 480px) {
.singleProdctSummary form.cart .single_add_to_cart_button {
        padding: 0 18px 0 38px !important;
        margin-left:5px !important;
    }
.singleProdctSummary form.cart .single_add_to_cart_button::before {
        left: 18px;} 
}

@media only screen and (max-width: 400px) {
    .singleProdctSummary .price {
        font-size: 15px !important;
        line-height: 16px !important;
    }
.wp-block-wdevs-tax-switch .wdevs-tax-switch .wdevs-tax-switch-label {
    height: 26px !important;
    width: 50px !important;
} 
.wp-block-wdevs-tax-switch .wdevs-tax-switch .wdevs-tax-switch-slider:before {
    bottom: 2px !important;
    height: 22px !important;
    left: 4px !important;
    width: 22px !important;
}
.productPriceWrap .wp-block-wdevs-tax-switch .wdevs-tax-switch-label-text {
    font-size: 12px !important;
}
}
