/*!
Theme Name: carbon-kevlar-supply
Theme URI: 
Author: 
Author URI: 
Description: 
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: carbon-kevlar-supply
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

carbon-kevlar-supply is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

@import url("//fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* font-family: 'Manrope', sans-serif;
font-family: 'Montserrat', sans-serif; */

body,
html {
  overflow-x: hidden;
}

/* body,html{
    width: 100%;
} */
body {
  margin: 0;
  padding: 0;
  font-family: var(--body-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  font-weight: 400;
  font-style: normal;
  color: var(--body-color);
  font-size: 16px;
  line-height: 1.5;
  background-color: var(--primary-white);
}

:root {
  scroll-behavior: smooth;
  --body-font: "Manrope", sans-serif;
  --heading-font: "Montserrat", sans-serif;
  --primary-white: #fff;
  --primary-black: #000;
  --heading-color: #333333;
  --primary-orange: #c3370d;
  --secondary-orange: #c94917;
  --alt-orange: #c13109;
  --body-color: #343232;
  --alt-body-color: #525151;
}

b,
strong {
  font-weight: 700;
}

p {
  margin: 0 0 22px 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 25px 0;
  padding: 0;
  color: var(--primary-black);
  font-weight: 700;
  font-family: var(--heading-font);
}

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

h1,
.hOne {
  font-weight: 500;
  font-size: 40px;
  line-height: 1.1;
  color: var(--primary-white);
  margin-bottom: 21px;
}

h2,
.hTwo {
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
}

h3,
.hThree {
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
}

h4,
.hFour {
  font-size: 22px;
  line-height: 1.2;
}

h5,
.hFive {
  font-size: 20px;
  line-height: 1.2;
}

h6,
.hSix {
  font-size: 18px;
  line-height: 1.3;
  color: #242424;
  margin-bottom: 10px;
}

a {
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  color: var(--primary-black);
  -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;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: var(--alt-orange);
}

img {
  max-width: 100%;
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
select {
  background-color: var(--primary-white);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  color: var(--primary-black);
  border: 1px solid #dedede;
  height: 61px;
  padding: 0 17px;
  outline: none !important;
}

textarea {
  background-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  border: 1px solid #dedede;
  padding: 24px 17px;
  width: 100%;
  color: var(--primary-black);
  height: 233px;
  outline: none !important;
  resize: none;
}

select {
  border: 1px solid rgba(255, 255, 255, 0.7);
  width: 100%;
  padding: 0 11px;
  background: url(images/sort-down.svg) no-repeat calc(100% - 16px) center transparent;
  background-size: 18px;
  padding-right: 40px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input[type="submit"] {
  background: linear-gradient(180deg, #bf2804 0%, #c94917 100%);
  box-shadow: 10px 19px 44px rgba(201, 73, 23, 0.29);
  border-radius: 6px;
  color: var(--primary-white);
  height: 51px;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  padding-left: 30px;
  padding-right: 30px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  min-width: 161px;
}

input[type="submit"]:hover {
  background: linear-gradient(180deg, #c94917 0%, #bf2804 100%);
  color: var(--primary-white);
}

::-webkit-input-placeholder {
  opacity: 1;
  color: var(--primary-black);
}

:-ms-input-placeholder {
  opacity: 1;
  color: var(--primary-black);
}

::-moz-placeholder {
  opacity: 1;
  color: var(--primary-black);
}

:-moz-placeholder {
  opacity: 1;
  color: var(--primary-black);
}

/* images alignment for wordpress content pages */
.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  float: none;
  clear: both;
}

/* custom checkbox */

.form_input_check label {
  position: relative;
  margin: 0;
  padding-left: 40px;
  display: inline-block;
}

.form_input_check label span {
  margin: 0;
  padding: 0;
}

.form_input_check label input[type="checkbox"] {
  visibility: hidden;
  display: none;
}

.form_input_check label input[type="checkbox"]+span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  border: 1px solid #3e3e42;
  background: transparent;
}

.form_input_check label input[type="checkbox"]+span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: url(images/tick.svg) no-repeat center center;
  background-size: 15px;
}

.form_input_check label input[type="checkbox"]:not(:checked)+span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.form_input_check label input[type="checkbox"]:checked+span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* custom radio */

.form_input_radio label {
  position: relative;
  margin: 0;
  padding-left: 30px;
  display: inline-block;
}

.form_input_radio label span {
  margin: 0;
  padding: 0;
}

.form_input_radio label input[type="radio"] {
  visibility: hidden;
  display: none;
}

.form_input_radio label input[type="radio"]+span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border: 2px solid #000000;
  border-radius: 100%;
  background: #fff;
}

.form_input_radio label input[type="radio"]+span::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #4b0049;
  position: absolute;
  top: 6px;
  left: 5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked)+span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.form_input_radio label input[type="radio"]:checked+span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* custom radio end */

/* back to top */

#scroll {
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  width: 55px;
  height: 55px;
  background-color: var(--alt-orange);
  display: none;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  line-height: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  z-index: 9;
}

#scroll:hover {
  background: var(--body-color);
}

#scroll i {
  color: var(--primary-white);
  font-size: 35px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

#scroll:hover i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
}

/* navbar*/

.navbar-brand {
  padding: 0;
  margin: 0;
  width: 170px;
  display: inline-block;
}

.navbar {
  background: none;
  margin: 0;
  padding: 0;
  min-height: inherit;
  height: inherit;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}

.navbar-nav li {
  position: relative;
  list-style: none;
}

.navbar-nav>li {
  margin: 0;
  padding: 26px 25px;
  position: relative;
}

.navbar-nav>li:last-child {
  padding-right: 0;
}

.navbar-nav>li:first-child {
  padding-left: 0;
}

.navbar-nav>li>a {
  color: var(--primary-black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  position: relative;
}

.navbar-nav>li>a:after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: var(--secondary-orange);
  /* opacity: 0; */
  position: absolute;
  bottom: -28px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar-nav>li.current-menu-item>a,
.navbar-nav>li>a:hover,
.navbar-nav>li.menu-item-has-children:hover>a {
  color: var(--primary-black);
}

.navbar-nav>li.current-menu-item>a:after,
.navbar-nav>li>a:hover:after,
.navbar-nav>li.menu-item-has-children:hover>a:after {
  width: 100%;
}

/* navbar submenu*/

.sub-menu {
  background: var(--primary-white);
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  border: 0;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  width: 160px;
  padding: 0;
  overflow: hidden;
  box-shadow: 10px 19px 44px rgba(201, 73, 23, 0.21);
}

.sub-menu>li>a {
  color: var(--primary-black);
  display: block;
  width: 100%;
  padding: 10px 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.sub-menu>li {
  width: 100%;
  display: block;
}

.sub-menu>li>a:hover,
.sub-menu>li.menu-item-has-children:hover>a,
.sub-menu>li.current-menu-item>a {
  background: var(--alt-orange);
  color: var(--primary-white);
}

.navbar-nav>li:last-child>.sub-menu {
  right: 0;
  left: inherit;
  padding: 0;
}

/* 2nd level submenu */
.navbar-nav>li>.sub-menu .sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
}

/* for push-menu */
.navbar-collapse .navbar-toggler {
  display: none;
}

#navoverlay {
  display: block;
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  margin: 0;
  padding: 0;
  z-index: 99;
  -webkit-transition: background-color 0.5s linear;
  transition: background-color 0.5s linear;
}

/* for push-menu end*/

/* custom-css */
.hdr-logo {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 84px;
  width: 84px;
}

.hdr-rgt-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.hdr-rgt-list>li {
  padding: 15px 12px;
}

.hdr-rgt-list>li:first-child {
  padding-left: 0;
}

.hdr-rgt-list>li:last-child {
  padding-right: 0;
}

.srch-box-wrap {
  position: absolute;
  right: 0;
  top: 100%;
  width: 100%;
  z-index: 2;
  border: 1px solid var(--alt-orange);
  padding: 15px 60px 15px 20px;
  border-radius: 0 0 7px 7px;
  background-color: var(--primary-white);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}

.srch-box-wrap.srchbox-show {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.hdr-rgt-wrap {
  margin-left: 43px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.srch-box-wrap form input[type="search"] {
  background-color: transparent;
  border: 0;
  padding-right: 30px;
  width: 100%;
  height: 100%;
  font-size: 16px;
}

.srch-box-wrap form input[type="search"]:focus {
  outline: none !important;
}

.srch-box-wrap form input[type="submit"] {
  font-size: 0;
  background: url(images/srch-icon-white.svg) no-repeat center center var(--alt-orange);
  border-radius: 0;
  background-size: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  height: 100%;
  width: 50px;
  padding: 0;
  z-index: 3;
  box-shadow: none;
  min-width: auto;
}

.srch-box-wrap form input[type="submit"]:hover {
  background: url(images/srch-icon-white.svg) no-repeat center center var(--heading-color);
  background-size: 20px;
}

.cart-icon {
  position: relative;
}

.cart-icon .cart-item {
  position: absolute;
  top: -15px;
  right: -17px;
  font-size: 16px;
  color: var(--primary-white);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 26px;
  width: 26px;
  background: var(--alt-orange);
  border-radius: 100%;
}

.hdr-rgt-list>li>a:hover img {
  opacity: 0.5;
}

.main-head .cmn-btn {
  min-width: 173px;
  box-shadow: 10px 19px 44px rgba(201, 73, 23, 0.21);
}

.cmn-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  padding: 18px 20px;
  background: linear-gradient(180deg, #bf2804 0%, #c94917 100%);
  box-shadow: 10px 19px 44px rgba(201, 73, 23, 0.29);
  border-radius: 6px;
  color: var(--primary-white);
  line-height: 1;
  min-width: 161px;
}

.cmn-btn:hover {
  background: linear-gradient(180deg, #c94917 0%, #bf2804 100%);
  color: var(--primary-white);
}

.hdr-btn-wrap {
  margin-left: 65px;
}

.bnr-sec {
  position: relative;
  z-index: 1;
  padding-top: 25px;
}

.bnr-sec::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #1f1d1d 0%, rgba(19, 19, 19, 0.35) 94.53%);
  z-index: -1;
  pointer-events: none;
}

.hOne>span {
  font-weight: 800;
}

.bnr-list {
  list-style: none;
  margin: 0 0 18px 0;
  padding: 0;
}

.bnr-list>li {
  color: var(--primary-white);
  padding-left: 36px;
  padding-bottom: 12px;
  position: relative;
}

.bnr-list>li:last-child {
  padding-bottom: 0;
}

.bnr-list>li::after {
  content: "";
  height: 24px;
  width: 24px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(images/bnr-li-tick.svg) no-repeat center;
  background-size: 100% 100%;
}

.bnr-rgt-innr figure {
  margin-bottom: 0;
}

.bnr-rgt-innr figure img {
  width: 100%;
}

.bnr-lft-innr {
  padding: 22px 0 78px 0;
}

.bnr-rgt-innr {
  position: absolute;
  bottom: 0;
  right: 0;
}

.bnr-wrap {
  position: relative;
}

.bnr-blur {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  pointer-events: none;
}

.bnr-shape {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  max-width: 850px;
  z-index: 0;
  pointer-events: none;
}

.review-wrap>img {
  width: 100%;
}

.review-sec {
  margin-top: -78px;
  position: relative;
  z-index: 2;
}

.product-sec .pg-hd .hTwo {
  color: var(--heading-color);
}

.pg-hd .hTwo {
  position: relative;
  padding-bottom: 21px;
  margin-bottom: 18px;
  text-transform: capitalize;
}

.pg-hd .hTwo::after {
  content: "";
  height: 3px;
  width: 69px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-orange);
}

.product-img {
  display: block;
  position: relative;
  text-align: center;
  z-index: 1;
  padding-top: 32px;
  height: 263px;
}

.product-img>img {
  max-width: 329px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-img::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #eaedf2 0%, rgba(255, 255, 255, 0) 100%);
  z-index: -1;
}

.product-innr {
  padding: 15px 19px 20px 19px;
  background-color: var(--primary-white);
  border-radius: 9px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 50px 85px 0 rgba(30, 32, 30, 0.02);
}

.product-txt {
  padding: 36px 17px 20px 17px;
}

.product-txt .hThree a {
  color: var(--heading-color);
  line-height: 1;
}

.product-txt .hThree {
  margin-bottom: 14px;
}

.product-txt .hThree a:hover {
  color: var(--alt-orange);
}

.product-txt .cmn-btn {
  width: 100%;
  padding: 20px;
  box-shadow: none;
}

.product-txt p {
  /* color: var(--alt-body-color); */
  line-height: 1.65;
  font-weight: 500;
  font-size: 15px;
}

.product-innr:hover {
  box-shadow: 0 50px 85px 0 rgba(30, 32, 30, 0.11);
}

.product-wrap {
  --bs-gutter-x: 29px;
  --bs-gutter-y: 30px;
}

.cmn-gap {
  padding: 95px 0;
}

.product-sec {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.product-shape-rgt {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  pointer-events: none;
}

.product-shape-lft {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
}

.about-lft-innr figure {
  margin-bottom: 0;
  border-radius: 10px;
  overflow: hidden;
  height: 503px;
}

.about-lft-innr figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-lft-innr {
  position: relative;
  z-index: 1;
  padding-right: 129px;
  padding-bottom: 39px;
}

.sml-img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  max-width: 303px;
  max-height: 338px;
  border-radius: 10px;
}

.dot-shape {
  position: absolute;
  right: 39px;
  top: 23%;
  z-index: -1;
  pointer-events: none;
}

.about-sec {
  position: relative;
  z-index: 1;
}

.about-sec::after {
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background: linear-gradient(180deg, #fff3ef 0%, rgba(255, 255, 255, 0) 100%);
  z-index: -1;
  pointer-events: none;
}

.about-blur {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}

.about-rgt-innr .pg-hd .hTwo::after {
  left: 0;
  transform: translate(0);
}

.about-list {
  padding: 0;
  margin: 0 0 42px 0;
  list-style: none;
}

.about-list>li {
  position: relative;
  padding-left: 36px;
  padding-bottom: 16px;
  font-weight: 500;
  color: var(--primary-black);
}

.about-list>li:last-child {
  padding-bottom: 0;
}

.about-list>li::after {
  content: "";
  height: 24px;
  width: 24px;
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(images/white-tick.svg) no-repeat center;
  background-size: 100% 100%;
  border-radius: 100%;
}

.about-rgt-innr {
  max-width: 531px;
}

.about-wrap {
  --bs-gutter-x: 55px;
  --bs-gutter-y: 25px;
  align-items: flex-start;
}

.vr-txt {
  text-transform: uppercase;
  display: block;
  writing-mode: vertical-rl;
  font-size: 72px;
  font-weight: 800;
  height: 100%;
  text-align: center;
  font-family: var(--heading-font);
  position: absolute;
  top: 50%;
  line-height: 1;
  transform: translateY(-50%);
  right: 5%;
  color: rgba(0, 0, 0, 0.02);
}

.news-wrap .hTwo {
  color: var(--primary-white);
  margin-bottom: 18px;
  padding-bottom: 0;
}

.news-wrap .hTwo::after {
  display: none;
}

.news-wrap p {
  color: var(--primary-white);
}

.news-wrap {
  max-width: 478px;
}

.news-wrap .pg-hd {
  margin-bottom: 24px;
}

.news-form-wrap input[type="email"] {
  border: 0;
  height: 100%;
  font-size: 15px !important;
  font-weight: 700;
  color: var(--primary-white);
  padding-left: 23px !important;
  padding-right: 180px !important;
  background-color: transparent;
  position: relative;
  border: 1px solid #fff5f5;
  border-radius: 7px;
  background-color: rgba(0, 0, 0, 0.24);
  height: 65px;
}

.news-form-innr {
  position: relative;
  border: 1px solid #fff5f5;
  border-radius: 7px;
  background-color: rgba(0, 0, 0, 0.24);
  height: 65px;
}

.news-form-wrap input[type="submit"] {
  position: absolute;
  right: 9px;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  height: auto;
  min-height: 51px;
  padding: 0 15px;
  max-width: 161px;
  width: 100%;
}

.news-form-wrap input::-webkit-input-placeholder {
  opacity: 1;
  color: var(--primary-white);
}

.news-form-wrap input:-ms-input-placeholder {
  opacity: 1;
  color: var(--primary-white);
}

.news-form-wrap input::-moz-placeholder {
  opacity: 1;
  color: var(--primary-white);
}

.news-form-wrap input:-moz-placeholder {
  opacity: 1;
  color: var(--primary-white);
}

.newsletter-sec {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.newsletter-sec::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg,
      #000000 0%,
      rgba(54, 53, 53, 0.86) 37.97%,
      rgba(50, 50, 50, 0) 65.47%);
  z-index: -1;
}

.news-shape {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  max-width: 426px;
  width: 100%;
  pointer-events: none;
}

.footer-uppr {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-uppr>* {
  padding: 0 46px 49px 46px;
  border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-uppr>*:last-child {
  border-right: 0;
  padding-right: 0;
}

.footer-uppr {
  margin: 0 0 0 -46px;
}

.footer-sec {
  background-color: #2c2c2b;
  padding-top: 79px;
  color: var(--primary-white);
  overflow: hidden;
}

.footer-logo {
  display: inline-block;
  max-width: 178px;
  width: 100%;
  margin-bottom: 29px;
}

.footer-left {
  width: 31%;
}

.footer-hdr {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 23px;
}

.footer-hdr::after {
  content: "";
  height: 2px;
  width: 50px;
  background-color: var(--primary-orange);
  position: absolute;
  bottom: 0;
  left: 0;
}

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

.footer-list>li {
  line-height: 1;
}

.footer-list>li:not(:last-child) {
  padding-bottom: 18px;
}

.footer-list>li>a {
  color: var(--primary-white);
}

.footer-list>li>a:hover {
  color: var(--alt-orange);
}

.footer-each {
  width: calc(69% / 4);
}

.footer-lwr {
  padding: 21px 0;
}

.ft-lwr-txt {
  line-height: 1;
}

.ft-lwr-txt>a {
  color: inherit;
}

.ft-lwr-txt>a:hover {
  color: var(--alt-orange);
}

.innr-bnr-sec {
  min-height: 393px;
  display: flex;
  align-items: center;
  padding: 30px 0 !important;
}

.innr-bnr-sec .bnr-shape {
  max-width: 100%;
}

.about-sec.innr-about-sec::after {
  display: none;
}

.innr-about-shape {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  max-width: 725px;
  width: 100%;
  z-index: -1;
  pointer-events: none;
}

.innr-rgt-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 850px;
  width: 100%;
  z-index: -1;
  pointer-events: none;
}

.big-txt {
  font-size: 26px;
  font-weight: 500;
}

.about-sec.innr-about-sec .about-wrap {
  align-items: center;
}

.footer-each-innr {
  padding-left: 18px;
}

.faq-sec .pg-hd {
  margin-bottom: 44px;
}

.faq-sec .pg-hd .hTwo {
  margin-bottom: 0;
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
  color: var(--primary-black);
}

.accordion-item {
  color: var(--bs-accordion-color);
  background-color: transparent;
  border: 1px solid #d7d7d7;
  border-radius: 10px !important;
  overflow: hidden;
  margin-bottom: 30px;
}

.accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-item:not(:first-of-type) {
  border-top: 1px solid #d7d7d7;
}

.accordion-button {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-black);
  font-family: var(--heading-font);
  padding: 21px 18px 21px 30px;
  line-height: 1.25;
  box-shadow: none !important;
}

.accordion-body {
  padding-top: 0;
  padding-left: 30px;
  padding-right: 18px;
  padding-bottom: 27px;
  font-size: 14px;
  /* color: #666A74; */
}

.accordion-button::after {
  background: url(images/plus.svg) no-repeat center right;
  background-size: 10px;
}

.accordion-button:not(.collapsed)::after {
  background: url(images/minus.svg) no-repeat center right;
  background-size: 10px;
  transform: none;
}

.faq-sec {
  position: relative;
  z-index: 1;
}

.innr-lft-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 850px;
  width: 100%;
  z-index: -1;
  pointer-events: none;
}

.faq-sec .innr-rgt-shape {
  top: 0;
  bottom: auto;
  max-width: none;
  width: auto;
}

.blog-fig {
  display: block;
  height: 272px;
  overflow: hidden;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.blog-fig>img {
  border-radius: 5px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top center;
  transition: all 0.3s ease-in-out;
}

.blog-fig:hover>img {
  transform: scale(1.02);
}

.date-box {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(180deg, #bf2804 0%, #c94917 100%);
  color: var(--primary-white);
  font-family: var(--heading-font);
  font-weight: 800;
  height: 58px;
  width: 58px;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.blog-uppr {
  position: relative;
}

.blog-innr {
  padding: 12px;
  background-color: var(--primary-white);
  border-radius: 7px;
  overflow: hidden;
  border: 1px solid #efefef;
  transition: all 0.3s ease-in-out;
}

.blog-innr:hover {
  border-color: transparent;
  box-shadow: 0 50px 85px 0 rgba(30, 32, 30, 0.11);
}

.blog-lwr {
  padding: 26px 4px 21px 4px;
}

.admin-wrap,
.admin-img {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 25px;
}

.admin-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 12px;
}

.admin-wrap p,
.admin-img p {
  width: calc(100% - 12px);
  padding-left: 10px;
  line-height: 1;
  color: #c8102e;
  font-size: 14px;
}

.blog-lwr .hSix a {
  color: inherit;
}

.blog-lwr .hSix a:hover {
  color: var(--alt-orange);
}

.blog-lwr>p {
  margin-bottom: 15px;
}

.blog-link {
  color: #c8102e;
  font-weight: 600;
  text-decoration: underline !important;
  text-transform: capitalize;
}

.blog-wrap {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 20px;
}

.faq-sec.blog-sec .pg-hd {
  margin-bottom: 27px;
}

.load-more-btn-wrap {
  margin-top: 50px;
}

.contact-form-innr {
  --bs-gutter-x: 29px;
  --bs-gutter-y: 29px;
}

.contact-lft-innr figure {
  border-radius: 15px;
  overflow: hidden;
}

.contact-lft-innr figure img {
  width: 100%;
}

.innr-contact-sec .about-rgt-innr .pg-hd {
  margin-bottom: 31px;
}

.innr-contact-sec .about-rgt-innr {
  max-width: 100%;
}

.innr-contact-sec .about-wrap {
  --bs-gutter-x: 44px;
}

.innr-contact-sec .innr-rgt-shape {
  max-width: none;
  width: auto;
  top: 0;
  bottom: auto;
}

.footer-logo>img {
  width: 100%;
}

.mob-dwnld-icon {
  display: none;
}

.footer-active>a {
  color: var(--alt-orange) !important;
}

.product-txt-contpart {
  padding: 0 18px;
  margin-bottom: 22px;
}

.prduct-arrow {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  border-radius: 10px;
  writing-mode: vertical-lr;
  background-color: var(--alt-orange);
  position: absolute;
  right: 2%;
  bottom: 20%;
  z-index: 99;
  color: var(--primary-white);
}

.prduct-arrow>img {
  margin-top: 6px;
}

.prduct-arrow:hover {
  background-color: var(--alt-body-color);
  color: var(--primary-white);
}

/* custom-css */

/* 21/02/2024 dm */

.news-form-wrap div#gform_wrapper_1 {
  position: relative;
}

.news-form-wrap .gform_wrapper.gravity-theme .gform_footer,
.news-form-wrap .gform_wrapper.gravity-theme .gform_page_footer {
  padding: 0 !important;
  margin: 0 !important;
}

.news-form-wrap .gform_validation_error input[type="submit"] {
  top: 26%;
}

.news-form-wrap .gform_validation_errors,
.contact-form-wrapper .gform_validation_errors {
  display: none;
}

.contact-form-wrapper .gform_wrapper.gravity-theme input[type="color"],
.contact-form-wrapper .gform_wrapper.gravity-theme input[type="date"],
.contact-form-wrapper .gform_wrapper.gravity-theme input[type="datetime-local"],
.contact-form-wrapper .gform_wrapper.gravity-theme input[type="datetime"],
.contact-form-wrapper .gform_wrapper.gravity-theme input[type="email"],
.contact-form-wrapper .gform_wrapper.gravity-theme input[type="month"],
.contact-form-wrapper .gform_wrapper.gravity-theme input[type="number"],
.contact-form-wrapper .gform_wrapper.gravity-theme input[type="password"],
.contact-form-wrapper .gform_wrapper.gravity-theme input[type="search"],
.contact-form-wrapper .gform_wrapper.gravity-theme input[type="tel"],
.contact-form-wrapper .gform_wrapper.gravity-theme input[type="text"],
.contact-form-wrapper .gform_wrapper.gravity-theme input[type="time"],
.contact-form-wrapper .gform_wrapper.gravity-theme input[type="url"],
.contact-form-wrapper .gform_wrapper.gravity-theme input[type="week"],
.contact-form-wrapper .gform_wrapper.gravity-theme select {
  background: #ffffff;
  border: 1px solid #dedede;
  padding: 0 17px;
  font-size: 16px;
}

.contact-form-wrapper .gform_wrapper.gravity-theme textarea {
  background: #ffffff;
  border: 1px solid #dedede;
  padding: 24px 17px;
  font-size: 16px;
}

.contact-form-wrapper .gform_wrapper.gravity-theme .ginput_complex {
  margin: 0 -15px !important;
}

.contact-form-wrapper .gform_wrapper.gravity-theme .ginput_complex span {
  padding: 0 15px !important;
}

.contact-form-wrapper .gform_wrapper.gravity-theme .gform_fields {
  grid-row-gap: 30px;
}

.contact-form-wrapper .gform_wrapper.gravity-theme .gform_footer {
  padding: 0;
  margin-top: 34px;
}

/*woocommerce css*/
.woocommerce-shop aside#secondary {
  display: none;
}

form.woocommerce-ordering {
  display: none;
}

p.woocommerce-result-count {
  display: none;
}

.term-description {
  display: none;
}

/* 21/02/2024 dm */

/* 22.02.2024 */
.shop-lising-wrap {
  display: flex;
  flex-wrap: wrap;
}

.shop-lising-wrap .prod-left-menu {
  width: 263px;
}

.shop-lising-wrap ul.products {
  width: calc(100% - 263px);
  padding-left: 30px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px -30px 0;
}

.shop-lising-wrap ul.products>li {
  width: 33.33% !important;
  padding: 0 15px 30px !important;
  float: none !important;
  margin: 0 !important;
}

.shop-lising-wrap .prod-left-menu .product-list-main {
  list-style: none;
  padding: 0;
  margin: 0;
}

.shop-lising-wrap .prod-left-menu .product-list-main>li:not(:last-child) {
  margin-bottom: 20px;
}

.shop-lising-wrap .prod-left-menu .product-list-main>li {
  background-color: #fafafa;
}

.shop-lising-wrap .prod-left-menu .product-list-main>li {
  /* padding: 19px 45px 19px 22px; */
  display: block;
  font-family: var(--heading-font);
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.shop-lising-wrap .prod-left-menu .product-list-main>li>a {
  padding: 19px 45px 19px 22px;
  display: inline-block;
}

.shop-lising-wrap .prod-left-menu .product-list-main>li::after {
  content: "";
  height: 7px;
  width: 12px;
  position: absolute;
  top: 25px;
  right: 24px;
  background: url(images/dwn-arrow.svg) no-repeat center;
  background-size: 100% 100%;
  z-index: 1;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.woocommerce-breadcrumb {
  display: none;
}

.shop-lising-wrap .prod-left-menu .subcategory::before {
  content: "";
  height: 1px;
  width: 90%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #efefef;
}

.shop-lising-wrap .prod-left-menu .product-list-main>ul {
  list-style: none;
  padding-left: 0;
}

.shop-lising-wrap .prod-left-menu .product-list-main>li .subcategory {
  display: none;
}

.shop-lising-wrap .prod-left-menu .product-list-main>li.product-show .subcategory {
  display: block;
}

.shop-lising-wrap .prod-left-menu .product-list-main>li.product-show::after {
  transform: rotate(180deg);
}

.shop-lising-wrap .prod-left-menu .subcategory ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.shop-lising-wrap .prod-left-menu .subcategory {
  padding: 17px 22px 30px;
  position: relative;
}

.shop-lising-wrap .prod-left-menu .subcategory .sub-product li>a {
  font-weight: 400;
  font-size: 15px;
}

.shop-lising-wrap .prod-left-menu .subcategory .sub-product:not(:last-child) li {
  margin-bottom: 10px;
}

.prod-lis-wrap {
  padding: 75px 0;
}

.shop-lising-wrap ul.products>li a.woocommerce-LoopProduct-link {
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 10px;
}

.shop-lising-wrap ul.products>li a.woocommerce-LoopProduct-link>img {
  height: 181px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 11px;
}

.shop-lising-wrap ul.products>li a.woocommerce-LoopProduct-link::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #eaedf2 0%, rgba(255, 255, 255, 0) 100%);
  z-index: -1;
}

.shop-lising-wrap ul.products .woocommerce-loop-product__title {
  font-size: 14px !important;
  font-weight: 400;
  color: var(--body-color);
  font-family: var(--heading-font);
  line-height: 1.3;
  min-height: 69px;
}

.shop-lising-wrap ul.products .woocommerce-Price-amount,
.current-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-black);
}

.shop-lising-wrap ul.products .quick-btn,
.add-btn {
  display: block;
  width: 100%;
  background: linear-gradient(180deg, #bf2804 0%, #c94917 100%);
  color: var(--primary-white);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--heading-font);
  max-width: 227px;
  margin: 0 auto;
  padding: 10px;
  text-align: center;
  border-radius: 4px;
}

.shop-lising-wrap ul.products .quick-btn:hover,
.add-btn:hover {
  background: linear-gradient(180deg, #c94917 0%, #bf2804 100%);
}

.modelform-wrap-fancybxs .product-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -12px;
}

.modelform-wrap-fancybxs .product-list>* {
  padding: 0 12px;
}

.modelform-wrap-fancybxs .product-list .product-cntnt>h2 {
  color: var(--body-color);
  font-size: 25px;
}

.modelform-wrap-fancybxs .product-list .pro-image {
  width: 220px;
  height: 244px;
}

.modelform-wrap-fancybxs .product-list .pro-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modelform-wrap-fancybxs .product-list .product-cntnt {
  width: calc(100% - 220px);
}

.modelform-wrap-fancybxs .product-list .add-btn {
  margin-left: 0;
}

.modelform-wrap-fancybxs .product-list .view-detai {
  display: inline-block;
  margin-bottom: 15px;
}

.modelform-wrap-fancybxs .product-list .current-price {
  display: block;
  margin-bottom: 10px;
}

.modelform-wrap-fancybxs {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
}

.itemloop-wrap,
.product-box {
  padding: 8px;
  background: #ffffff;
  box-shadow: 0px 2.91111px 10.1889px rgba(0, 0, 0, 0.17);
}

.news-form-wrap input[type="submit"] {
  background: linear-gradient(180deg, #bf2804 0%, #c94917 100%);
  box-shadow: 10px 19px 44px rgba(201, 73, 23, 0.29);
  border-radius: 6px;
  color: var(--primary-white);
  height: 51px;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  padding-left: 30px;
  padding-right: 30px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  min-width: 161px;
}

.news-form-wrap input[type="submit"]:hover {
  background: linear-gradient(180deg, #c94917 0%, #bf2804 100%);
  color: var(--primary-white);
}

/* 22.02.2024 */

/* 23.02.24 css */
.product-in-row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
  justify-content: center;
}

.product-box {
  padding: 8px 8px 26px;
  height: 100%;
}

.product-box .product-box-header {
  position: relative;
  padding: 15px 10px;
  margin-bottom: 15px;
}

.product-box .product-box-header::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #eaedf2 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.product-box .product-box-header>a {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 181px;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}

.product-box .product-box-header>a>img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-box-footer {
  padding: 0 10px;
}

.tertiary-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 20px;
  background: linear-gradient(180deg, #bf2804 0%, #c94917 100%);
  box-shadow: 10px 19px 44px rgba(201, 73, 23, 0.29);
  border-radius: 6px;
  color: var(--primary-white);
  line-height: 1;
  min-width: 161px;
}

.tertiary-btn:hover {
  background: linear-gradient(180deg, #c94917 0%, #bf2804 100%);
  color: var(--primary-white);
}

.tertiary-btn svg {
  width: 20px;
  margin-left: 8px;
}

.woocommerce-account .wrap-section .entry-header {
  text-align: center;
  margin-bottom: 40px;
}

.woocommerce-account .wrap-section .entry-header,
.woocommerce-cart .entry-header {
  text-align: center;
}

.entry-title {
  text-align: center;
}

.woocommerce-account .wrap-section .entry-header h1,
.woocommerce-cart .entry-header h1,
.entry-header h1 {
  color: var(--primary-black);
  position: relative;
  padding-bottom: 21px;
  margin-bottom: 18px;
  font-weight: 700;
}

.woocommerce-account .wrap-section .entry-header h1::before,
.woocommerce-cart .entry-header h1::before,
.entry-header h1::before {
  content: "";
  height: 3px;
  width: 69px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-orange);
}

.woocommerce-button,
.woocommerce-Button,
.add_to_cart_button,
.button,
.components-button,
.wc-block-components-checkout-return-to-cart-button,
.error-404>a,
.added_to_cart {
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  padding: 15px 20px !important;
  background: linear-gradient(180deg, #bf2804 0%, #c94917 100%) !important;
  box-shadow: 10px 19px 44px rgba(201, 73, 23, 0.29) !important;
  border-radius: 6px !important;
  color: var(--primary-white) !important;
  line-height: 1 !important;
  min-width: 161px;
  border: none !important;
}

.woocommerce-button:hover,
.woocommerce-Button:hover,
.add_to_cart_button:hover,
.button:hover,
.components-button:hover,
.wc-block-components-checkout-return-to-cart-button:hover,
.error-404>a:hover,
.added_to_cart:hover {
  background: linear-gradient(180deg, #c94917 0%, #bf2804 100%) !important;
  color: var(--primary-white) !important;
}

.woocommerce-account .woocommerce-form-row button {
  margin-top: 15px !important;
}

.lost_password {
  margin-top: 10px;
}

.woocommerce-account .u-columns {
  display: flex;
  flex-wrap: wrap;
  margin: -20px -20px;
  width: auto !important;
}

.woocommerce-account .u-columns>* {
  width: 50% !important;
  padding: 20px 20px;
  float: none !important;
}

.woocommerce-account .woocommerce-form {
  border-radius: 0 !important;
  border: 1px solid #dedede !important;
}

.wp-block-product-new .wc-block-grid__products {
  padding-top: 30px;
  justify-content: space-between;
  margin: 0;
  margin-bottom: -2%;
}

.wp-block-product-new .wc-block-grid__product {
  padding: 15px !important;
  width: 23% !important;
  flex: auto !important;
  max-width: 100% !important;
  border: none !important;
  text-align: left !important;
  padding: 8px;
  background: #ffffff;
  box-shadow: 0px 2.91111px 10.1889px rgba(0, 0, 0, 0.17);
  margin-right: 2%;
  margin-bottom: 2%;
}

.wp-block-product-new .wc-block-grid__product:last-child {
  margin-right: 0;
}

.wp-block-product-new .wc-block-grid__product .wc-block-grid__product-link {
  display: block;
  width: 100%;
  min-height: 252px;
}

.wp-block-product-new .wc-block-grid__product-title {
  font-size: 14px !important;
  font-weight: 400 !important;
}

.wp-block-product-new .wc-block-grid__product-price {
  font-size: 15px !important;
  font-weight: 700;
}

.wp-block-product-new .wc-block-grid__product-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 181px;
  margin-bottom: 25px !important;
}

.wp-block-product-new .wc-block-grid__product-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}

.woocommerce-cart .entry-header {
  margin-bottom: 40px;
}

.sin-section .post_date {
  color: var(--primary-white);
  display: block;
  font-weight: 500;
}

.sin-section .blg-img {
  width: 100%;
  height: 350px;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 25px;
}

.sin-section .blg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sin-section .comments-area {
  padding-top: 50px;
}

.sin-section {
  padding: 95px 0;
}

.woocommerce-MyAccount-navigation ul {
  padding: 0;
  margin: 0;
  list-style: none;
  border: 1px solid #dedede;
  border-radius: 10px;
}

.woocommerce-MyAccount-navigation ul li {
  display: block;
  width: 100%;
  padding: 6px;
  border-bottom: 1px solid #dedede;
}

.woocommerce-MyAccount-navigation ul li.is-active a {
  color: var(--alt-orange);
}

.woocommerce-MyAccount-navigation ul li:last-child {
  border-bottom: none;
}

.woocommerce-MyAccount-navigation ul li a {
  width: 100%;
  display: block;
  padding: 5px 10px;
}

.edit-link {
  display: block;
  margin-top: 15px;
}

.edit-link a,
.edit {
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--alt-orange);
}

.woocommerce-MyAccount-content {
  padding: 20px;
  border: 1px solid #dedede;
  border-radius: 10px;
}

.woocommerce-info,
.woocommerce-message {
  border-top-color: var(--alt-orange);
}

.woocommerce-info::before,
.woocommerce-message::before {
  color: var(--alt-orange);
}

.woocommerce-account .woocommerce-info {
  margin-bottom: 0 !important;
}

.woocommerce-MyAccount-content .woocommerce-EditAccountForm p:last-child,
.woocommerce-address-fields p:last-child {
  margin-top: 15px !important;
}

.select2-container--default .select2-selection--single {
  border: 1px solid #dedede;
  border-radius: 0;
  height: 61px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 61px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 61px;
}

.select2-container--default .select2-results__option[aria-selected="true"],
.select2-container--default .select2-results__option[data-selected="true"] {
  background-color: var(--alt-orange) !important;
  color: var(--primary-white) !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field,
.select2-dropdown {
  border-color: #dedede !important;
}

.woocommerce-checkout .entry-header {
  margin-bottom: 30px;
}

.wc-block-checkout__form input[type="text"],
.wc-block-checkout__form input[type="email"],
.wc-block-checkout__form input[type="tel"] {
  border-radius: 0 !important;
  border-color: #dedede !important;
}

.wc-block-components-checkout-return-to-cart-button svg {
  position: relative !important;
  transform: translateY(0) !important;
  top: auto !important;
  margin-right: 6px;
}

.woocommerce-checkout .wc-block-checkout__form .wc-block-checkout__actions .components-button {
  min-height: 54px;
}

.post-wraper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}

.published-text {
  margin-bottom: 0;
  margin-right: 5px;
  font-weight: 500;
}

.post-in {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background: linear-gradient(180deg, #bf2804 0%, #c94917 100%);
  color: var(--primary-white);
  padding: 4px 10px;
  border-radius: 2px;
}

.errorm-wrap {
  padding: 95px 0;
}

.error-404 {
  position: relative;
  width: 100%;
  text-align: center;
}

.error-404 img {
  width: 100%;
}

.error-404>a {
  margin-top: 25px;
}

.add-pro-btn>*:first-child {
  margin-right: 15px;
}

.add-pro-btn {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

/* 23.02.24 css */

/* css update start RN 26-02-2024 */

.product-details-bredcum .site-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f9f6f6;
  padding: 17px 12px 17px 17px;
  border-radius: 3px;
  margin-bottom: 55px;
}

.product-details-bredcum .woocommerce-breadcrumb {
  display: block;
  margin: 0;
  color: #c94917;
  font-size: 16px;
  line-height: 1;
}

.breadcum_section {
  padding-top: 28px;
}

.product-details-bredcum .single-search_wrp {
  width: 326px;
  position: relative;
}

.product-details-bredcum .single-search_wrp input[type="search"] {
  width: 100%;
  height: 57px;
  background: #fff;
  border-radius: 4px;
  font-size: 16px;
  color: #000;
  padding: 0 70px 0 19px;
  border: none;
  outline: none;
  box-shadow: 10px 19px 44px 0 rgba(103, 98, 98, 0.14);
}

.product-details-bredcum-search {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 59px;
  height: 46px;
  background: linear-gradient(180deg, #bf2804 0%, #c94917 100%);
  border-radius: 4px;
  overflow: hidden;
}

.product-details-bredcum-search:hover {
  background: linear-gradient(180deg, #c94917 0%, #bf2804 100%);
}

.product-details-bredcum .single-search_wrp input[type="submit"] {
  width: 100%;
  height: 100%;
  font-size: 0;
  line-height: 0;
  min-width: auto;
  background: url(images/search-prod.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 21px;
}

.product-details-bredcum .woocommerce-breadcrumb a {
  color: #c94917;
  font-size: 16px;
  line-height: 1;
}

.product-details-bredcum .woocommerce-breadcrumb a:hover {
  color: #000;
}

.shipping-details-hd {
  display: flex;
  align-items: center;
  font-size: 27px;
  line-height: 1;
  font-weight: 700;
  color: #333333;
  font-family: var(--heading-font);
  margin-bottom: 16px;
}

.shipping-details-hd i {
  display: inline-flex;
  width: 39px;
  margin-right: 15px;
}

.shipping-details-hd i img {
  width: 100%;
}

.shipping-list-details {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: -10px;
  list-style: none;
  padding-left: 0;
}

.shipping-list-details li {
  position: relative;
  padding-left: 30px;
  margin-right: 16px;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.shipping-list-details li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: url(images/shipping-tick.svg) no-repeat center center #bf2804;
  background-size: 14px;
  content: "";
}

.content-left,
.content-right {
  background: #fdf4f4;
  padding: 24px 28px;
  border: 1px solid rgba(191, 40, 4, 0.56);
  height: 100%;
}

.each-shipping-cont {
  width: 50%;
  padding: 0 15px;
}

.contentfull_content {
  display: flex;
  margin: 0 -15px;
}

.content-right {
  display: flex;
  align-items: center;
}

.content-right .gurantee-icon {
  margin-right: 12px;
}

.content-right .shipping-details-hd {
  margin-bottom: 10px;
}

.product-shipping-box-row {
  margin-bottom: 60px;
}

.product-slider-all .woocommerce-product-gallery,
.product-details-left .summary {
  float: none !important;
  width: 100% !important;
}

.product-details-left-row {
  --bs-gutter-x: 28px;
}

.product-slider-all .wpgs-for .slick-arrow {
  display: none !important;
}

.product-details-left .product_title {
  text-align: left;
  color: #333333;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 10px;
  line-height: 1;
  font-size: 24px;
}

.star-rating span {
  color: #ffc107;
}

.woocommerce-review-link {
  color: #605b5b;
  font-weight: 500;
}

.woocommerce-product-rating {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e2dede;
}

.product-details-left .price {
  font-weight: 700;
  font-family: var(--heading-font);
  color: #333333 !important;
  font-size: 18px !important;
  margin-bottom: 8px;
}

.product-details-left .woocommerce-product-details__short-description {
  margin-bottom: 12px;
}

.product-details-left .variations_form tr th,
.product-details-left .variations_form tr td {
  vertical-align: middle !important;
  padding: 5px 0 !important;
  position: relative;
}

.product-details-left .variations_form select {
  border: 1px solid #eceaea;
  padding: 0 14px;
  border-radius: 4px;
  text-align: left;
  height: 48px;
  width: 70%;
  min-width: 50% !important;
  font-size: 14px;
  background-size: 12px;
}

.product-details-left .reset_variations {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #bf2804 !important;
  font-size: 15px !important;
  font-weight: 600;
}

.product-details-left .reset_variations:hover {
  color: #333 !important;
}

.product-details-left .woocommerce-variation-add-to-cart {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.product-details-left .quantity {
  margin-right: 10px !important;
}

.product-details-left .quantity input[type="number"] {
  border: 1px solid #eceaea;
  height: 45px;
  width: 60px;
  padding: 5px;
  color: #333;
  font-weight: 500;
  border-radius: 4px;
  text-align: center;
}

.product-details-left .quantity input[type="number"]:focus {
  border: 1px solid #eceaea;
  outline: none;
}

.product-details-left .sku_wrapper {
  font-weight: 700;
  color: #333;
  display: block;
  margin-bottom: 5px;
  font-family: var(--heading-font);
}

.product-details-left .sku_wrapper .sku {
  font-weight: 400;
  font-family: var(--heading-font);
}

.product_meta .posted_in {
  display: block;
  font-weight: 700;
  color: #333;
  font-family: var(--heading-font);
}

.product_meta .posted_in a {
  font-weight: 400;
  font-family: var(--heading-font);
}

.product-search-rightbox {
  padding-left: 6px;
}

.product-search-rightbox .widget-area {
  border: 1px solid #f5eaea;
  border-radius: 4px;
  padding: 25px 15px;
}

.product-search-rightbox .wp-block-heading,
.product-search-rightbox .wp-block-search__label {
  font-size: 18px;
  font-family: var(--heading-font);
  color: #333;
  margin-bottom: 10px;
  font-weight: 700;
}

.product-search-rightbox .widget-area .widget_block:not(:last-child) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f5eaea;
}

.product-search-rightbox .wp-block-latest-posts li a {
  font-weight: 600;
  font-size: 14px;
  color: #333;
  line-height: 1.2;
}

.product-search-rightbox .wp-block-latest-posts li a:hover {
  color: #bf2804;
}

.product-search-rightbox .wp-block-group__inner-container ol {
  padding: 0;
}

.product-search-rightbox .wp-block-group__inner-container ol li a,
.product-search-rightbox ul li a,
.product-search-rightbox ol li a {
  font-weight: 600;
  font-size: 14px;
  color: #333;
  line-height: 1.2;
}

.product-search-rightbox .wp-block-latest-posts li:not(:last-child),
.product-search-rightbox .wp-block-group__inner-container ol li.wp-block-latest-comments__comment {
  margin-bottom: 8px !important;
}

.product-search-rightbox .wp-block-group__inner-container ol li.wp-block-latest-comments__comment:last-child {
  margin-bottom: 0px !important;
}

.product-search-rightbox .wp-block-group__inner-container ol,
.product-search-rightbox .wp-block-latest-posts {
  margin-bottom: 0 !important;
}

.product-search-rightbox .wp-block-search__inside-wrapper {
  position: relative;
  width: 100%;
}

.product-search-rightbox .wp-block-search__inside-wrapper input[type="search"] {
  width: 100%;
}

.product-search-rightbox .wp-block-search__inside-wrapper button[type="submit"] {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  font-size: 0;
  line-height: 0;
  min-width: auto;
  border: none;
  outline: none;
  padding: 0;
}

.product-search-rightbox .wp-block-search__inside-wrapper button[type="submit"]::before {
  background: linear-gradient(180deg, #bf2804 0%, #c94917 100%);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  content: "";
  z-index: -1;
  border-radius: 4px;
}

.product-search-rightbox .wp-block-search__inside-wrapper button[type="submit"]::after {
  background: url(images/search-prod.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 18px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  content: "";
  z-index: 1;
  border-radius: 4px;
}

.product-search-rightbox .wp-block-search__inside-wrapper input[type="search"] {
  width: 100%;
  height: 50px;
  background: #fff;
  border-radius: 4px;
  font-size: 16px;
  color: #000;
  padding: 0 70px 0 19px;
  border: none;
  outline: none;
  box-shadow: 10px 19px 44px 0 rgba(103, 98, 98, 0.14);
  padding: 0 50px 0 12px;
}

.shop-lising-wrap .pro-fliter {
  width: 263px;
}

.shop-lising-wrap .woof_shortcode_output {
  width: calc(100% - 263px);
}

.shop-lising-wrap .woof_shortcode_output .products .product {
  width: 33.33%;
}

.shop-lising-wrap ul.products {
  width: 100% !important;
}

.pro-fliter .woof_container_checkbox {
  padding: 25px 17px;
  background: #fafafa;
  margin-bottom: 19px;
}

.pro-fliter .woof_container_checkbox:last-child {
  margin-bottom: 0;
}

.pro-fliter .woof_block_html_items {
  padding-top: 17px;
  border-top: 1px solid #efefef;
  margin-top: 16px;
}

.pro-fliter .woof_container_inner h4 {
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.pro-fliter .woof_list label {
  font-size: 15px;
}

.pro-fliter .woof_list_checkbox li div {
  margin-top: 0;
}

.itemloop-wrap,
.product-box {
  height: 100%;
}

.itemloop-wrap {
  padding: 8px 8px 18px;
}

.woof_results_by_ajax_shortcode {
  width: calc(100% - 263px);
}

.shop-lising-wrap .woof_results_by_ajax_shortcode .woof_shortcode_output {
  width: 100%;
}

.woof_products_top_panel {
  padding-left: 45px;
  margin-bottom: 25px;
  overflow: visible;
}

.woof_products_top_panel .woof_reset_button_2 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  padding: 18px 20px;
  background: linear-gradient(180deg, #bf2804 0%, #c94917 100%);
  box-shadow: 10px 19px 44px rgba(201, 73, 23, 0.29);
  border-radius: 6px;
  color: var(--primary-white);
  line-height: 1;
  min-width: 161px;
  outline: none;
  border: none;
}

.woof_products_top_panel .woof_reset_button_2:hover {
  background: linear-gradient(180deg, #c94917 0%, #bf2804 100%);
}

.woof_products_top_panel ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.woof_products_top_panel li {
  float: none;
}

.woof_submit_search_form_container {
  overflow: visible;
}

.woof_front_toggle {
  font-size: 0;
  width: 12px;
  height: 12px;
  background: url(images/filter-arw.svg) no-repeat center center;
  background-size: 12px;
}

.woof_front_toggle_opened {
  transform: rotateX(180deg);
}

.woocommerce-no-products-found {
  margin-left: 45px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: none;
  background-color: transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
  display: none;
}

.productdisplay .woocommerce-tabs .tabs {
  padding: 25px 0 !important;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid #e6e5e5;
  border-bottom: 1px solid #e6e5e5;
}

.productdisplay .woocommerce-tabs .tabs li {
  padding: 0 !important;
  margin: 0 83px 0 0 !important;
  float: none !important;
  line-height: 1;
}

.productdisplay .woocommerce-tabs .tabs li a {
  padding: 0 !important;
  display: inline-flex !important;
  line-height: 1;
  font-weight: 700;
  font-size: 18px;
  color: #cbc8c8 !important;
  font-family: var(--heading-font);
}

.productdisplay .woocommerce-tabs .tabs li.active a,
.productdisplay .woocommerce-tabs .tabs li a:hover {
  color: #333 !important;
}

.productdisplay {
  margin-top: 25px;
}

.productdisplay .accordion-item {
  border: none;
  border-radius: 0 !important;
  border-bottom: 1px solid rgba(191, 40, 4, 0.06);
}

.productdisplay .accordion-item .accordion-button {
  padding: 16px 0;
  font-size: 16px;
  font-family: var(--heading-font);
  font-weight: 600;
}

.productdisplay .accordion-item .accordion-body {
  padding: 0 0 24px;
}

.productdisplay .accordion-item {
  margin-bottom: 9px;
}

.productdisplay .accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-button::after,
.accordion-button:not(.collapsed)::after {
  background-size: 12px;
}

.faq-acc-wrap {
  margin-bottom: 71px;
}

.additonal-product .pg-hd {
  margin-bottom: 31px;
}

.additonal-product .pg-hd h2,
.product-sect .pr-hd h2 {
  position: relative;
  padding-bottom: 22px;
  color: #333333;
}

.additonal-product .pg-hd h2::after,
.product-sect .pr-hd h2::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 69px;
  height: 3px;
  background: #c3370d;
  content: "";
}

.additionproduct-row {
  --bs-gutter-x: 52px;
}

.inner_des .product-img-wrp {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #eaedf2 0%, rgba(255, 255, 255, 0) 100%);
  padding: 20px;
  min-height: 224px;
  margin-bottom: 20px;
}

.inner_des .product-img-wrp img {
  max-height: 140px;
}

.inner_des .content-sec {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--heading-font);
  color: #000;
  margin-bottom: 19px;
}

.inner_des a {
  display: block !important;
  width: 100%;
  text-align: center;
  margin-top: 19px !important;
  box-shadow: none !important;
}

.inner_des {
  height: 100%;
  padding: 10px 12px 26px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 33px 55px 0 rgba(30, 32, 30, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.additonal-product {
  margin-bottom: 60px;
}

#review_form .form-submit input[type="submit"] {
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  font-size: 15px !important;
  font-weight: 700;
  padding: 18px 20px !important;
  background: linear-gradient(180deg, #bf2804 0%, #c94917 100%) !important;
  box-shadow: 10px 19px 44px rgba(201, 73, 23, 0.29) !important;
  border-radius: 6px !important;
  color: var(--primary-white) !important;
  line-height: 1 !important;
  min-width: 161px !important;
  outline: none !important;
  border: none !important;
}

#review_form .form-submit input[type="submit"]:hover {
  background: linear-gradient(180deg, #c94917 0%, #bf2804 100%) !important;
}

/* css update end RN 26-02-2024 */

/* css update start RN 27-02-2024 */

.product-wraps .product-eachs {
  padding: 0 15px;
}

.product-wraps .slick-list {
  margin: 0 -15px;
  padding: 30px 0;
}

.product-innrs {
  padding: 8px 9px 14px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.17);
  height: 100%;
}

.product-wraps .product-img::after {
  display: none;
}

.product-innrs-box {
  background: linear-gradient(180deg, #eaedf2 0%, rgba(255, 255, 255, 0) 100%);
  height: 100%;
}

.product-innrs-box .product-img {
  height: 190px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  padding: 0;
  margin-bottom: 14px;
}

.product-innrs-box .product-img img {
  max-height: 160px;
}

.product-wraps .product-txt-contparts h3 {
  font-size: 18px;
  line-height: 1.25;
  font-family: var(--heading-font);
  color: rgba(51, 51, 51, 1);
  margin-bottom: 20px;
  text-align: center;
}

.product-wraps .product-txt-butnboxs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  box-shadow: none;
  padding: 0 20px;
  min-height: 40px;
}

.product-wraps .slick-track {
  display: flex;
}

.product-wraps .product-eachs.slick-slide {
  height: auto !important;
}

.product-wraps .products-txt {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 204px);
  padding: 0 8px;
}

.product-wraps .slick-arrow {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  background: #fff;
  font-size: 0;
  filter: grayscale(1);
  transition: all 0.3s ease-in-out;
  opacity: 0.4;
}

.product-wraps .slick-arrow::before {
  display: none;
}

.product-wraps .slick-arrow.slick-next {
  background: #fff url(images/prod-arw-rgt.svg) no-repeat center center;
  background-size: 10px;
  right: -60px;
}

.product-wraps .slick-arrow.slick-prev {
  background: #fff url(images/prod-arw-left.svg) no-repeat center center;
  background-size: 10px;
  left: -60px;
}

.product-wraps .slick-arrow:hover {
  opacity: 1;
  filter: none;
  border-color: #c13109;
  box-shadow: 0 11px 22px 0 rgba(0, 0, 0, 0.09);
}

.product-sect {
  padding-bottom: 60px;
}

.shop_attributes th {
  color: #bf2804;
  font-size: 18px;
  font-weight: 700;
}

.shop_attributes td {
  color: #343232;
  font-size: 16px;
  font-weight: 500;
  font-style: normal !important;
}

.faq-heading {
  padding: 25px 0;
  border-top: 1px solid #e6e5e5;
  border-bottom: 1px solid #e6e5e5;
  margin-bottom: 6px;
}

.faq-heading h2,
.productdisplay .woocommerce-tabs h2 {
  color: #333333;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  font-family: var(--heading-font);
}

.img-wrap {
  display: inline-flex;
  max-width: 26px;
  min-height: 20px;
  margin-bottom: 10px;
}

.wrap-title {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #343232;
}

.offer-wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 17px 0;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 15px;
}

.delivery-pro,
.pod-pro,
.return-wrap {
  text-align: center;
  padding: 0 12px;
}

.fiber-wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 8px 0;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  margin-top: 27px;
}

.ver-wrap,
.dtail-pro {
  padding-right: 47px;
  display: flex;
  align-items: center;
}

.dtail-pro {
  padding-left: 33px;
}

.ver-wrap {
  border-right: 1px solid #eaeaea;
}

.twotitle-wrap span {
  display: block;
}

.dtail-pro-matrtial {
  line-height: 0;
  margin-right: 8px;
}

.dtail-pro-matrtial .img-wrap {
  margin: 0;
  line-height: 0;
}

.wrap-matrtial,
.wrap-finish {
  font-size: 14px;
  color: #605b5b;
}

.wrap-venyl,
.wrap-carbon {
  color: #3a3a3a;
  font-size: 12px;
  font-weight: 700;
}

.inner-side-content {
  border: 1px solid #f5eaea;
  border-radius: 9px;
  margin-bottom: 34px;
  padding: 25px 18px 18px;
}

.inner-side-content:last-child {
  margin-bottom: 0;
}

.inner-side-content .woocommerce-Price-amount {
  font-size: 14px;
  font-weight: 500;
  color: #605b5b;
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}

.inner-side-content .woocommerce-Price-amount strong {
  color: #333333;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-right: 7px;
  line-height: 1;
}

.inner-side-content p {
  color: #605b5b;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
}

.inner-side-content p span {
  color: #bf2804;
  font-weight: 800;
}

.inner-side-content p strong {
  color: #000;
  font-weight: 700;
}

.information-wrap {
  display: flex;
  margin-bottom: 10px;
}

.information-wrap:last-child {
  margin-bottom: 0;
}

.point-wrap {
  width: 35%;
  padding-right: 5px;
}

.information-wrap .sec-point {
  width: 65%;
  padding-left: 5px;
  color: #343232;
}

.information-wrap span {
  font-size: 13px;
  color: #000;
}

.inner-side-content h4 {
  font-size: 18px;
  color: #333333;
  line-height: 1.2;
  font-family: var(--heading-font);
  margin-bottom: 18px;
}

.main-content p {
  color: #343232;
  font-size: 15px;
}

.post-contents {
  display: flex;
}

.post-contents .image-sec {
  width: 69px;
  /* border-radius: 8px; */
  /* overflow: hidden; */
  margin-right: 13px;
  flex: 0 0 auto;
  margin-bottom: 0;
}

.post-contents .image-sec figure {
  border-radius: 8px;
  overflow: hidden;
  margin: 0;
  height: 69px;
}

.post-contents .image-sec img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-box-all h4 {
  margin-bottom: 0;
}

.post-box-all h4 a {
  color: #525151;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none !important;
}

.post-box-all h4 a:hover {
  color: #bf2804;
}

.post-box-all p {
  color: #343232;
  font-size: 13px;
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 0;
}

.post-box-all a {
  color: #bf2804;
  display: inline-flex;
  text-decoration: underline !important;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.post-box-all {
  line-height: 1;
}

.post-contents {
  padding-bottom: 24px;
  border-bottom: 1px solid #eaeaea;
}

.post-list-all {
  padding-top: 19px;
  border-top: 1px solid #eaeaea;
}

.post-list:not(:last-child) {
  margin-bottom: 20px;
}

.post-box-all a:hover {
  color: #000;
}

.woocommerce .product-details-left .woocommerce-product-rating .star-rating {
  margin-top: 0;
}

.woocommerce .product-details-left .woocommerce-product-rating {
  display: flex;
  align-items: center;
}

.woocommerce .product-details-left .woocommerce-product-rating .woocommerce-review-link {
  line-height: 1;
}

.inner-side-content-all {
  max-height: 500px;
  overflow-y: auto;
}

/* 06-03-2024 start (DD) */
.inner-side-content-prodlist .arrowscroll {
  text-align: center;
  display: block;
  cursor: pointer;
  max-width: fit-content;
  margin: 0 auto;
  padding: 4px 10px;
  line-height: normal;
  margin-bottom: -14px;
  border-radius: 100%;
  transition: all 300ms ease-in-out;
}

.inner-side-content-prodlist .arrowscroll:hover {
  transform: translateY(3px);
}

/* 06-03-2024 end (DD) */
/* / Firefox / */
.inner-side-content-all {
  scrollbar-width: auto;
  scrollbar-color: #bf2804 #ffffff;
}

/* / Chrome, Edge, and Safari / */
.inner-side-content-all::-webkit-scrollbar {
  width: 8px;
}

.inner-side-content-all::-webkit-scrollbar-track {
  background: #ffffff;
}

.inner-side-content-all::-webkit-scrollbar-thumb {
  background-color: #bf2804;
  border-radius: 6px;
  border: 1px solid #ffffff;
}

.wp-block-woocommerce-empty-cart-block .star-rating {
  margin: 0 !important;
}

.single-product .woocommerce-variation-price bdi:before {
  content: "Total Price: ";
  font-size: 16px;
}

/* css update end RN 27-02-2024 */

/* css update start RN 28-02-2024 */
.single-product .woocommerce-variation-price bdi:before {
  content: "Total Price: ";
  font-size: 16px;
}

.main-head {
  transition: all 0.3s ease-in-out;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
}

body {
  padding-top: 76px;
}

.main-head.fixed {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.product-details-left .variations_form tr th {
  width: 30%;
  font-size: 14px;
  line-height: 1.1 !important;
}

.product-details-left .variations_form tr td {
  width: 70%;
}

/* css update end RN 28-02-2024 */

/* css update start RN 29-02-2024 */
.product-details-price {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-family: var(--heading-font);
  color: #333333 !important;
  font-size: 18px !important;
  margin: 0 -5px 12px;
  line-height: 1;
}

.product-details-price .woocommerce-Price-amount {
  font-weight: 700;
  font-family: var(--heading-font);
  color: #333333 !important;
  font-size: 18px !important;
  margin-bottom: 0 !important;
  padding: 0 5px;
  line-height: 1;
}

/* css update end RN 29-02-2024 */
/* css update start RN 04-03-2024 */
.bnr-list>li::after {
  display: none;
}

.bnr-list>li::before {
  content: "";
  height: 24px;
  width: 24px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  border: 1px solid #2bff00;
  background: url(images/banr-tick.svg) no-repeat center;
  background-size: 12px;
}

/* review sec start */
.review-product-wrap {
  background-color: #f5f5f5;
}

.review-sec .ti-widget.ti-goog .ti-review-item:hover {
  transform: none;
}

.review-sec .ti-widget.ti-goog .ti-review-item>.ti-inner {
  padding: 15px 20px !important;
  background: #fff !important;
  border-radius: 10px !important;
  box-shadow: 0 5px 20px 0px rgba(30, 32, 30, 0.11);
}

.review-sec .ti-widget.ti-goog .ti-col-3 .ti-review-item {
  padding: 0 15px !important;
}

.review-sec .ti-widget.ti-goog .ti-reviews-container-wrapper {
  margin: 0 -15px !important;
  padding: 0 0 50px 0;
}

.review-sec .ti-next {
  right: -58px !important;
}

.review-sec .ti-prev {
  left: -58px !important;
}

.review-sec .ti-profile-img {
  width: 45px !important;
  height: 45px !important;
  border-radius: 50%;
  margin-right: 13px !important;
}

.review-sec .ti-widget.ti-goog .ti-profile-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.review-sec .ti-widget.ti-goog .ti-profile-details {
  max-width: calc(100% - 68px) !important;
  width: 100%;
}

.review-sec .ti-widget.ti-goog .ti-widget-container .ti-name {
  font-size: 18px;
  line-height: 1.2;
  color: #000;
  padding-right: 0;
  font-family: var(--heading-font);
}

.ti-widget.ti-goog .ti-review-header {
  padding-right: 30px !important;
}

.review-sec .ti-widget .source-Google .ti-review-header:after {
  right: 0;
  top: 4px;
  transform: none;
  width: 25px;
  height: 25px;
}

.review-sec .ti-widget.ti-goog .ti-widget-container .ti-date {
  font-size: 14px !important;
  color: #8f8f8f;
  opacity: 1;
  font-weight: 500;
}

.review-sec .ti-widget.ti-goog .ti-reviews-container-wrapper .ti-inner>.ti-stars,
.review-sec .ti-widget.ti-goog .ti-reviews-container-wrapper .ti-popup-inner>.ti-stars {
  margin: 10px 0;
}

.review-sec .ti-widget.ti-goog .ti-review-content {
  font-size: 15px;
  color: #525151;
  line-height: 1.4;
  overflow: auto;
}

.review-sec .ti-widget.ti-goog .ti-read-more {
  padding-top: 15px !important;
  display: none !important;
}

.review-sec .ti-widget.ti-goog .ti-footer {
  display: none;
}

.review-sec .ti-widget.ti-goog .ti-widget-container {
  margin-bottom: 0 !important;
}

.review-sec .ti-widget.ti-goog .ti-controls .ti-next:hover,
.review-sec .ti-widget.ti-goog .ti-controls .ti-prev:hover {
  transform: none;
}

.review-sec .ti-widget.ti-goog .ti-controls .ti-next:before,
.review-sec .ti-widget.ti-goog .ti-controls .ti-prev:before {
  width: 32px;
  height: 32px;
  border: none;
  transform: none;
  background-size: 100% 100% !important;
  background-position: center center !important;
  transform: none;
  top: 0;
}

.review-sec .ti-widget.ti-goog .ti-controls .ti-next:before {
  background: url(images/review-next.svg);
}

.review-sec .ti-widget.ti-goog .ti-controls .ti-prev:before {
  background: url(images/review-prev.svg);
}

.review-sec .ti-widget.ti-goog .ti-controls .ti-next:after,
.review-sec .ti-widget.ti-goog .ti-controls .ti-prev:after {
  display: none;
}

.ti-widget.ti-goog .ti-controls .ti-next,
.ti-widget.ti-goog .ti-controls .ti-prev {
  width: 32px !important;
  height: 32px !important;
  padding: 0 !important;
}

.ti-widget.ti-goog .ti-controls {
  top: calc(50% - 40px) !important;
  margin-top: 0 !important;
  transform: translateY(-50%) !important;
}

.review-sec {
  margin-top: -48px;
}

.bnr-lft-innr {
  padding-top: 0;
}

/* review sec end */
/* css update end RN 04-03-2024 */

/* css update start RN 06-03-2024 */
.prod-qty-box {
  display: flex;
  align-items: center;
  margin-bottom: 17px;
}

.prod-qty-box label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(96, 91, 91, 1);
  margin: 0;
  display: inline-block;
  margin-right: 13px;
}

.prod-qty-box select {
  height: 28px;
  padding: 0 30px 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.09);
  background-color: rgba(250, 250, 250, 1);
  border-radius: 3px;
  width: 85px;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  background-size: 9px;
  background-position: right 12px center;
}

.sidebar-purch-btn a {
  display: block;
  min-height: 35px;
  border-radius: 4px;
  border: 1px solid rgba(201, 73, 23, 1);
  padding: 0 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: rgba(201, 73, 23, 1);
}

.sidebar-cart-btn a {
  background: rgba(201, 73, 23, 1);
  color: #fff;
}

.sidebar-purch-btn a:hover {
  background: rgba(201, 73, 23, 1);
  color: #fff;
}

.sidebar-cart-btn a:hover {
  color: rgba(201, 73, 23, 1);
  background: #fff;
}

.sidebar-purch-btn {
  margin-bottom: 11px;
}

.sidebar-purch-btn.sidebar-buy-btn {
  margin-bottom: 0;
}

.detail-wrap {
  margin-top: 30px;
}

.delivery-addr {
  display: flex;
}

.delivery-addr-icon {
  display: inline-flex;
  width: 17px;
  margin-right: 9px;
  flex: 0 0 auto;
  align-items: flex-start;
  padding-top: 5px;
}

.delivery-addr-icon img {
  width: 100%;
}

.delivery-addr p {
  color: #bf2804;
  font-size: 14px;
  margin: 0;
}

.delivery-addr {
  margin-bottom: 12px;
}

.stock-left {
  font-weight: 600;
  font-size: 14px;
  color: #605b5b;
  margin-bottom: 12px;
}

.add-select-list select {
  width: 100%;
  padding: 0 30px 0 14px;
  border: 1px solid #c94917;
  color: #c94917;
  font-weight: 700;
  font-size: 15px;
  height: 35px;
  border-radius: 4px;
  background: #fff url(images/add-list-arw.svg) no-repeat right 12px center;
  background-repeat: no-repeat !important;
  background-size: 10px !important;
}

.add-select-list {
  margin-top: 15px;
}

/* css update end RN 06-03-2024 */

/* 07/03/2024 dm */

.custm_mdl .modal-content .btn-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  background: rgba(201, 73, 23, 1);
  color: #fff;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  outline: none;
  box-shadow: none;
  padding: 0;
}

.custm_mdl .modal-content .btn-close::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  background: var(--bs-btn-close-bg) no-repeat center center;
  background-size: 100% 100%;
  width: 15px;
  height: 15px;
  filter: brightness(0) invert(1);
  margin: 0 auto;
}

.custm_mdl .modal-content .modal-heading {
  padding: 16px 24px;
  background: rgba(0, 0, 0, 0.025);
}

.custm_mdl .modal-content .modal-heading h5 {
  font-size: 16px;
}

.custm_mdl .modal-content .modal-body {
  padding: 16px 24px;
  font-size: 14px;
}

.custm_mdl .modal-content .modal-body p {
  font-size: 14px;
  margin-bottom: 10px;
}

.custm_mdl .modal-content .btn-secondary {
  width: 100%;
  background: rgba(201, 73, 23, 1);
  border: 1px solid transparent;
  outline: none;
  box-shadow: none;
  font-size: 14px;
  color: #fff;
  margin: 10px 0;
}

.custm_mdl .modal-content .btn-secondary:hover {
  background: transparent;
  border-color: rgba(201, 73, 23, 1);
  color: rgba(201, 73, 23, 1);
}

.custm_mdl .modal-content a {
  font-size: 14px;
}

.custm_mdl .modal-content .modal-body form {
  margin-top: 20px;
}

.custm_mdl .modal-content .modal-body form label {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #dedede;
  width: 100%;
  display: block;
}

.custm_mdl .modal-content .modal-body .pin-form-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.custm_mdl .modal-content .modal-body form .form-control {
  height: 40px;
  padding: 0 15px;
  font-size: 14px;
  box-shadow: none;
  outline: none;
  border-radius: 5px;
  width: 65.948%;
  margin-right: 2%;
}

.custm_mdl .modal-content .modal-body form .form-control:focus {
  border-color: rgba(201, 73, 23, 1);
}

.custm_mdl .modal-content .modal-body form input[type="submit"] {
  width: 31.948%;
  min-width: inherit;
  height: 40px;
  font-size: 14px;
  padding: 0 20px;
}

/* 07/03/2024 dm */

/* css start RN 08-03-2024 */
.variation_original_price .tiered-pricing-dynamic-price-wrapper {
  display: flex;
  align-items: center;
  margin: 0 -5px;
}

.inner-side-content .variation_original_price {
  margin-bottom: 15px;
}

.inner-side-content .variation_original_price .woocommerce-Price-amount {
  font-size: 18px;
  color: #333333;
  margin: 0;
  font-weight: 700;
  line-height: 1;
  padding: 0 5px;
  font-family: var(--heading-font);
}

.add-address-wrap a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  padding: 18px 20px;
  background: linear-gradient(180deg, #bf2804 0%, #c94917 100%);
  box-shadow: 10px 19px 44px rgba(201, 73, 23, 0.29);
  border-radius: 6px;
  color: var(--primary-white);
  line-height: 1;
  width: 100%;
  text-align: center;
  line-height: 1.2;
}

.add-address-wrap a:hover {
  background: linear-gradient(180deg, #c94917 0%, #bf2804 100%);
}

.articles_prompt .modal-body p,
.articles_prompt .modal-heading {
  text-align: center;
}

.articles_prompt .modal-body .select-address-ouer form {
  margin: 10px 0 0 0 !important;
}

.articles_prompt .modal-body .select-address-ouer form input[type="submit"] {
  background: transparent;
  height: auto;
  padding: 0;
  color: #bf2804;
  box-shadow: none;
  width: 100%;
  text-align: center;
  white-space: inherit;
}

.articles_prompt .modal-body .select-address-ouer form input[type="submit"]:hover {
  color: #000000;
}

.add-address-wrap {
  margin-bottom: 25px;
}

.articles_prompt .modal-footer {
  display: none;
}

.articles_prompt .modal-content .modal-body {
  padding-bottom: 30px;
}

/* css end RN 08-03-2024 */

/* support start 11/3/24 */
.cross-sells-product .wc-block-components-product-image a {
  padding: 20px;
  background-color: rgb(193 49 9 / 10%);
  border-radius: 5px;
  width: 100%;
  height: 100%;
  display: block;
}

.cross-sells-product .wc-block-components-product-image a img {
  max-height: 200px;
  min-height: 200px;
  object-fit: contain !important;
  object-position: center;
}

.cross-sells-product .wc-block-components-product-title .wc-block-components-product-name {
  font-weight: 700 !important;
}

/* support end 11/3/24 */

/* support start 12/3/24 */
.upsells .itemloop-wrap .woocommerce-LoopProduct-link {
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 10px;
}

.upsells .itemloop-wrap .woocommerce-LoopProduct-link:after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #eaedf2 0%, rgba(255, 255, 255, 0) 100%);
  z-index: -1;
}

.woocommerce .upsells ul.products li.product .itemloop-wrap .woocommerce-LoopProduct-link>img {
  height: 181px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 11px;
}

.upsells .itemloop-wrap .woocommerce-LoopProduct-link .woocommerce-loop-product__title {
  font-size: 14px !important;
  font-weight: 400;
  color: var(--body-color);
  min-height: 56px;
}

.upsells .itemloop-wrap .woocommerce-LoopProduct-link .woocommerce-Price-amount {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-black);
}

.woocommerce .upsells ul.products li.product .itemloop-wrap .quick-btn {
  display: block;
  width: 100%;
  background: linear-gradient(180deg, #bf2804 0%, #c94917 100%);
  color: var(--primary-white);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--heading-font);
  max-width: 227px;
  margin: 0 auto;
  padding: 10px;
  text-align: center;
  border-radius: 4px;
}

.woocommerce .upsells ul.products li.product .itemloop-wrap .quick-btn:hover {
  background: linear-gradient(180deg, #c94917 0%, #bf2804 100%);
}

.upsells>h2 {
  position: relative;
  padding-bottom: 22px;
  color: #333333;
}

.upsells>h2::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 69px;
  height: 3px;
  background: #c3370d;
  content: "";
}

.woocommerce .upsells ul.products li.product {
  margin: 0;
  padding: 12px;
  width: 25%;
}

.woocommerce .upsells ul.products {
  margin: -12px;
}

.wp-block-woocommerce-cart-cross-sells-block .wp-block-heading {
  position: relative;
  padding-bottom: 22px;
  color: #333333;
  font-size: 32px;
}

.wp-block-woocommerce-cart-cross-sells-block .wp-block-heading::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 69px;
  height: 3px;
  background: #c3370d;
  content: "";
}

.woocommerce-MyAccount-orders .woocommerce-orders-table__cell .woocommerce-button {
  display: block !important;
  text-align: center;
}

/* .woocommerce-MyAccount-orders .woocommerce-orders-table__cell .woocommerce-button.pay{margin-bottom: 10px;width: 48%;margin-right: 8px;}
.woocommerce-MyAccount-orders .woocommerce-orders-table__cell .woocommerce-button.cancel{margin-top: 10px;} */
/* support end 12/3/24 */

/* support start 13/3/24 */
.add_to_wishlist {
  display: block;
  width: 100%;
  border: 1px solid #c94917;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--heading-font);
  max-width: 227px;
  margin: 0 auto !important;
  padding: 10px;
  text-align: center;
  border-radius: 4px;
  color: #c94917;
}

.add_to_wishlist:hover {
  background: #c94917;
  color: var(--primary-white);
}

.woocommerce-orders-table .woocommerce-orders-table__cell .woocommerce-button {
  min-width: auto;
  display: inline-block !important;
  width: auto;
  font-size: 14px !important;
  font-weight: 700 !important;
  padding: 10px 10px !important;
}

.woocommerce-orders-table .woocommerce-orders-table__cell .woocommerce-button:not(:last-child) {
  margin-right: 4px;
}

.woocommerce-orders-table .woocommerce-orders-table__cell .woocommerce-button:first-child {
  margin-left: 0;
}

.woocommerce-orders-table .woocommerce-orders-table__cell .woocommerce-button:last-child {
  margin-right: 0;
}

.yith-wcwl-wishlistexistsbrowse .feedback,
.yith-wcwl-wishlistaddedbrowse .feedback {
  text-align: left;
  align-items: baseline;
  font-size: 14px;
  margin-top: 10px;
}

.yith-wcwl-wishlistexistsbrowse,
.yith-wcwl-wishlistaddedbrowse {
  text-align: left;
  margin-left: 7px;
}

.yith-wcwl-add-to-wishlist .feedback .yith-wcwl-icon,
.yith-wcwl-wishlistaddedbrowse .feedback .yith-wcwl-icon {
  color: #c94917;
}

.yith-wcwl-wishlistexistsbrowse a,
.yith-wcwl-wishlistaddedbrowse a {
  color: #c94917;
}

.yith-wcwl-wishlistexistsbrowse a:hover,
.yith-wcwl-wishlistaddedbrowse a:hover {
  color: var(--primary-black);
}

/* support end 13/3/24 */

/* support start 14/3/24 */
td.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-actions:last-child {
  display: flex;
  align-items: center;
  padding: 9px;
}

/* support end 14/3/24 */

/* support start 15/3/24 */
.wp-block-woocommerce-cart-cross-sells-block .wp-block-heading.has-large-font-size {
  font-size: 32px !important;
}

.wc-block-grid__product-add-to-cart .add_to_cart_button {
  display: block !important;
  width: 100%;
  max-width: 227px;
  margin: 0 auto !important;
  text-align: center;
}

.search .product-box-header {
  text-align: center;
}

.search .product-wrapper .hTwo {
  color: var(--primary-black);
  text-align: center;
  margin-bottom: 35px;
}

/* support end 15/3/24 */
/* CSS Modification 29.03.24 */
.blg_dtls_cntnt {
  display: table;
  width: 100%;
}

.blg_dtls_cntnt .blg-img {
  max-width: 35%;
  height: inherit;
}

/* CSS Modification 29.03.24 */

/* 2/4/24 work start */
.inner_accordion_toggle {
  width: 12px;
  height: 7px;
  display: block;
  background: url(images/filter-arw.svg) no-repeat center center;
  background-size: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.inner_accordion .parent-cat {
  padding: 25px 17px;
  background: #fafafa;
  margin-bottom: 19px;
}

.inner_accordion .parent-cat h4 {
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.inner_accordion .child-cat-listcheckbox {
  margin: 0;
  padding: 0px;
  list-style: none;
}

.inner_accordion .child-cat-listcheckbox li:not(:last-child) {
  margin-bottom: 10px;
}

.inner_accordion .block-html-items {
  padding-top: 14px;
  border-top: 1px solid #efefef;
  margin-top: 16px;
  /* display: none; */
}

.inner_accordion .parent-cat.active .inner_accordion_toggle {
  transform: rotateX(180deg);
}

/* 2/4/24 work end */

/* css update start RN 05-04-2024 */

.navbar-nav>li {
  padding: 26px 15px;
}

.main-head .cmn-btn {
  width: 140px;
  min-width: inherit;
  text-align: center;
  line-height: 1.4;
  padding: 10px 12px;
}

/* .main-head{
  padding: 5px 0;
} */
.navbar-nav>li.shopitem {
  padding: 13px 0;
}

.navbar-nav>li.shopitem a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  min-height: 50px;
  padding: 0 15px;
  background: #2bff00;
}

.navbar-nav>li.shopitem a:hover {
  background: #45e424;
}

.navbar-nav>li.shopitem a::after {
  display: none;
}

.bnr-lft-innr h1 {
  font-size: 35px;
  margin-bottom: 14px;
}

.review-sec .ti-widget.ti-goog .ti-reviews-container-wrapper {
  padding: 0 0 30px 0;
}

.remember-login {
  display: flex;
  flex-direction: column;
}

.remember-login .woocommerce-form-login__rememberme {
  margin-bottom: 10px;
  width: fit-content;
}

.remember-login button[type="submit"] {
  width: fit-content;
}

/* css update end RN 05-04-2024 */

/* 5.04.2024 */
/* .product-sec {
  padding-top: 45px !important;
} */
.review-sec .ti-widget.ti-goog .ti-review-item>.ti-inner {
  text-align: center;
}

.review-sec .ti-widget.ti-goog .ti-review-content {
  height: auto !important;
}

.review-sec .ti-widget.ti-goog .ti-review-header .ti-profile-img {
  margin-top: 0 !important;
}

.review-sec .ti-widget.ti-goog .ti-review-header {
  padding-right: 0 !important;
}

.review-sec .ti-widget.ti-goog .ti-review-header .ti-profile-img img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 32px;
}

.review-sec .ti-widget.ti-goog .ti-profile-details {
  max-width: 100% !important;
}

.review-sec .ti-widget.ti-goog .ti-review-item>.ti-inner {
  padding: 30px 20px !important;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.contact-modal .modal-header {
  border-bottom: 0;
}

.contact-modal .modal-body {
  padding-left: 20px;
  padding-right: 20px;
}

.contact-modal .gfield_choice_all_toggle {
  background-color: var(--primary-orange);
  color: var(--primary-white);
  border-radius: 3px;
  border: 0;
  padding: 5px 15px;
}

.review-sec .ti-widget.ti-goog .ti-review-item>.ti-inner .ti-review-header {
  width: 20%;
}

.review-sec .ti-widget.ti-goog .ti-review-item>.ti-inner .ti-stars {
  width: 15%;
}

.review-sec .ti-widget.ti-goog .ti-review-item>.ti-inner .ti-review-content {
  width: 60%;
}

/* 5.04.2024 */

/* 06.05.2024 start*/
.woocommerce-pagination {
  margin-top: 40px;
  position: relative;
  z-index: 6;
}

/* 06.05.2024 end */

/* support starts 31.05.2024  */
.news-form-wrap .gform_confirmation_message{
  color: var(--primary-white);
}


/* ========== responsive css =========== */
@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1164px;
  }
}

@media (min-width: 1025px) {

  /* navbar*/
  .navbar-nav .clickD {
    display: none;
  }

  .navbar-nav .clickD {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 6px;
    background: url(images/sort-down.svg) center center no-repeat;
    display: block;
    background-size: 100% 100%;
    cursor: pointer;
    pointer-events: none;
  }

  .navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sub-menu>li.menu-item-has-children .clickD {
    top: 50%;
    right: 5px;
    -webkit-transform: rotate(-90deg) translateY(-50%);
    transform: rotate(-90deg) translateY(-50%);
  }

  .sub-menu>li.menu-item-has-children .clickD.toggled {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .navbar-nav li.menu-item-has-children:hover>.sub-menu {
    display: block;
  }
}

@media(max-width: 1299px) {

  /* css update start RN 05-04-2024 */
  .review-wrap {
    padding: 0 25px;
  }

  .ti-widget.ti-goog .ti-controls .ti-prev:before {
    left: 15px !important;
  }

  .ti-widget.ti-goog .ti-controls .ti-next:before {
    right: 15px !important;
  }

  /* css update end RN 05-04-2024 */
}

@media (max-width: 1199px) {
  .hdr-rgt-wrap {
    margin-left: 10px;
  }

  .navbar-nav>li {
    padding: 23px 15px;
  }

  .hdr-btn-wrap {
    margin-left: 30px;
  }

  .hdr-rgt-list>li {
    padding: 15px 8px;
  }

  .footer-uppr>* {
    padding: 0 20px 30px 20px;
  }

  .footer-uppr {
    margin: 0 -20px;
  }

  .navbar-nav>li>a:after {
    bottom: -24px;
  }

  .navbar-nav .clickD {
    right: 0 !important;
  }

  .about-sec.innr-about-sec .about-wrap {
    align-items: flex-start;
  }

  /* 23.02.24 css */
  .shop-lising-wrap ul.products>li {
    padding: 0 10px 20px !important;
  }

  .shop-lising-wrap ul.products {
    margin: 0 -10px -20px 0;
    padding-left: 15px;
  }

  .shop-lising-wrap .prod-left-menu .product-list-main>li:not(:last-child) {
    margin-bottom: 15px;
  }

  .shop-lising-wrap .prod-left-menu .product-list-main>li>a {
    padding: 14px 45px 14px 20px;
  }

  .prod-lis-wrap {
    padding: 60px 0;
  }

  /* 23.02.24 css */

  /* css update start RN 26-02-2024 */
  .shop-lising-wrap .pro-fliter {
    width: 230px;
  }

  .shop-lising-wrap .woof_shortcode_output {
    width: calc(100% - 230px);
  }

  .woof_results_by_ajax_shortcode {
    width: calc(100% - 230px);
  }

  .woof_products_top_panel {
    padding-left: 25px;
  }

  .woocommerce-no-products-found {
    margin-left: 25px;
  }

  /* css update end RN 26-02-2024 */

  /* css update start RN 27-02-2024 */
  .shipping-details-hd {
    font-size: 23px;
  }

  .shipping-details-hd i {
    width: 35px;
  }

  .shipping-list-details li::before {
    width: 20px;
    height: 20px;
    background-size: 10px;
    top: 2px;
  }

  .content-left,
  .content-right {
    padding: 20px 18px;
  }

  .product-details-bredcum .site-main {
    margin-bottom: 35px;
  }

  .product-shipping-box-row {
    margin-bottom: 35px;
  }

  .productdisplay .woocommerce-tabs .tabs li a {
    font-size: 16px;
  }

  .productdisplay .woocommerce-tabs .tabs li {
    margin: 0 50px 0 0 !important;
  }

  .additionproduct-row {
    --bs-gutter-x: 24px;
  }

  .product-wraps .product-eachs {
    padding: 0 12px;
  }

  .product-wraps .slick-list {
    margin: 0 -12px;
  }

  .additonal-product {
    margin-bottom: 40px;
  }

  .product-wraps .product-txt-contparts h3 {
    font-size: 16px;
  }

  .product-wraps .slick-arrow {
    position: static;
    transform: none;
  }

  .product-wraps {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
  }

  .product-wraps .slick-list {
    order: 1;
  }

  .product-wraps .slick-arrow.slick-prev {
    order: 2;
    margin-right: 10px;
  }

  .product-wraps .slick-arrow.slick-next {
    order: 3;
    margin-left: 10px;
  }

  .inner-side-content .woocommerce-Price-amount {
    margin-bottom: 8px;
  }

  .inner-side-content p {
    margin-bottom: 8px;
  }

  .inner-side-content p br {
    display: none;
  }

  .information-wrap {
    margin-bottom: 5px;
  }

  .inner-side-content {
    margin-bottom: 15px;
    padding: 18px 12px;
  }

  .inner-side-content h4 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .inner-side-content p {
    font-size: 14px;
  }

  .post-contents .image-sec {
    width: 50px;
  }

  .post-contents .image-sec figure {
    height: 50px;
  }

  .post-box-all p {
    font-size: 12px;
    line-height: 1.4;
  }

  .post-list-all {
    padding-top: 15px;
  }

  .post-list:not(:last-child) {
    margin-bottom: 15px;
  }

  .post-contents {
    padding-bottom: 15px;
  }

  .inner-side-content-prodlist {
    max-height: 300px;
    overflow-y: auto;
  }

  /* css update end RN 27-02-2024 */
  /* css update start RN 28-02-2024 */
  .offer-wrap-each {
    margin-bottom: 5px;
  }

  .offer-wrap {
    padding-bottom: 12px;
  }

  .product-details-left .variations_form tr th {
    width: 25%;
  }

  .product-details-left .variations_form tr td {
    width: 75%;
  }

  .product-details-left .variations_form select {
    padding: 0 8px;
    width: 75%;
    background-size: 10px;
    margin-right: 0 !important;
  }

  .product-details-left .reset_variations {
    font-size: 14px !important;
  }

  .ver-wrap,
  .dtail-pro {
    padding-right: 20px;
  }

  .dtail-pro {
    padding-left: 15px;
  }

  /* css update end RN 28-02-2024 */

  /* 04-03-2024 css start (DD) */
  .bnr-lft-innr h1,
  .bnr-lft-innr .hOne {
    font-size: 37px;
  }

  .review-sec .ti-widget.ti-goog .ti-widget-container .ti-name {
    font-size: 17px;
  }

  /* 04-03-2024 css end (DD) */
  /* css start RN 08-03-2024 */
  .inner-side-content .variation_original_price {
    margin-bottom: 8px;
  }

  /* css end RN 08-03-2024 */

  /* support start 13/3/24 */
  /* .woocommerce-orders-table
    .woocommerce-orders-table__cell
    .woocommerce-button {
    width: 45%;
  }
  .woocommerce-orders-table
    .woocommerce-orders-table__cell
    .woocommerce-button.cancel {
    margin-top: 8px;
  } */
  .yith-wcwl-wishlistexistsbrowse {
    margin-left: 3px;
  }

  /* support end 13/3/24 */

  /* css update start RN 05-04-2024 */
  .navbar-nav>li>a {
    font-size: 14px;
  }

  .navbar-nav>li {
    padding: 23px 10px;
  }

  .navbar-nav>li.shopitem a {
    font-size: 16px;
    padding: 0 10px;
  }

  .bnr-lft-innr h1,
  .bnr-lft-innr .hOne {
    font-size: 32px;
  }

  .ti-widget.ti-goog .ti-controls .ti-prev:before {
    left: 0 !important;
  }

  .ti-widget.ti-goog .ti-controls .ti-next:before {
    right: 0 !important;
  }

  /* css update end RN 05-04-2024 */
  /* 5.04.2024 */
  .review-sec .ti-widget.ti-goog .ti-review-item>.ti-inner .ti-review-header {
    width: 100%;
  }

  .review-sec .ti-widget.ti-goog .ti-review-item>.ti-inner .ti-stars {
    width: 100%;
  }

  .review-sec .ti-widget.ti-goog .ti-review-item>.ti-inner .ti-review-content {
    width: 100%;
  }

  /* 5.04.2024 */
}

/* 04-03-2024 css start (DD) */
@media (max-width: 1169px) {
  .review-sec .ti-next {
    right: -38px !important;
  }

  .review-sec .ti-prev {
    left: -38px !important;
  }
}

/* 04-03-2024 css end (DD) */

@media (max-width: 1024px) {

  /* navbar*/
  .navbar-nav .clickD {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 6px;
    background: url(images/sort-down.svg) center center no-repeat;
    display: block;
    background-size: 100% 100%;
    cursor: pointer;
    pointer-events: all;
  }

  .navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sub-menu>li.menu-item-has-children .clickD {
    top: 50%;
    right: 5px;
    -webkit-transform: rotate(-90deg) translateY(-50%);
    transform: rotate(-90deg) translateY(-50%);
  }

  .sub-menu>li.menu-item-has-children .clickD.toggled {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  /* navbar end*/
  .navbar-nav li.menu-item-has-children>.sub-menu {
    display: none;
  }

  .navbar-nav li.menu-item-has-children>.sub-menu.show {
    display: block;
  }

  /* 04-03-2024 css start (DD) */
  .review-wrap {
    padding: 0 20px;
  }

  .review-sec .ti-next {
    right: -45px !important;
  }

  .review-sec .ti-prev {
    left: -45px !important;
  }

  /* 04-03-2024 css end (DD) */
}

@media (max-width: 991px) {
  body {
    font-size: 14px;
  }

  /* navbar*/
  .navbar-toggler {
    position: relative;
    width: 33px;
    margin-left: 20px;
    height: 28px;
    padding: 0;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    order: 4;
  }

  .stick,
  .stick:after,
  .stick:before {
    width: 30px;
    height: 2px;
    background: #000;
    position: absolute;
    left: 0;
    top: auto;
    transition: all 0.6s;
    border-radius: 5px;
  }

  .stick:before {
    content: "";
    top: -10px;
    left: 0;
  }

  .stick:after {
    content: "";
    top: 10px;
    left: 0;
  }

  .stick.open {
    transform: translateX(-50px);
    background: transparent;
  }

  .stick.open:before {
    transform: rotate(45deg) translate(42px, -28px);
    left: 2px;
    background: var(--primary-white);
  }

  .stick.open:after {
    transform: rotate(-45deg) translate(42px, 28px);
    left: 2px;
    background: var(--primary-white);
  }

  .navbar-nav .clickD {
    top: 16px;
    right: 10px !important;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    background-image: url(images/drop-white.svg);
  }

  .navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sub-menu>li.menu-item-has-children .clickD {
    top: 8px;
    right: 10px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  .sub-menu,
  .navbar-nav>li>.sub-menu .sub-menu {
    position: relative;
    width: 100%;
    left: inherit;
    top: inherit;
    border: none;
    right: inherit;
  }

  .navbar-nav>li.menu-item-has-children {
    padding-right: 0;
  }

  .navbar-nav>li {
    margin: 0;
    padding: 0;
  }

  .navbar-nav>li>a {
    padding: 10px 15px;
    display: inline-block;
    width: 100%;
    color: var(--primary-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-nav>li:last-child>a {
    border-bottom: 0;
  }

  .navbar-nav>li>a::after {
    display: none;
  }

  .navbar-nav li.menu-item-has-children>a {
    padding-right: 30px;
  }

  .sub-menu>li>a {
    padding: 10px 15px;
    color: var(--primary-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .sub-menu>li>a:hover,
  .sub-menu>li.menu-item-has-children:hover>a,
  .sub-menu>li.current-menu-item>a {
    background-color: transparent;
    color: var(--primary-orange);
  }

  .sub-menu>li:last-child a {
    border-bottom: none;
  }

  .sub-menu .sub-menu>li>a {
    padding-left: 60px;
  }

  .sub-menu .sub-menu .sub-menu>li>a {
    padding-left: 80px;
  }

  .navbar-nav>li>a:after {
    bottom: 0;
  }

  /* navbar end*/

  /* push nav */

  .navbar-collapse {
    background: linear-gradient(180deg, #bf2804 0%, #c94917 100%);
    position: fixed;
    top: 0;
    height: 100% !important;
    width: 290px;
    overflow-y: auto;
    transition: inherit !important;
    right: 0;
    margin: 0;
    display: block !important;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
    z-index: 100;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    display: block !important;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
  }

  .navbar-collapse .navbar-nav {
    margin: 80px 15px 0 15px;
    padding: 0 0 40px 0;
  }

  .navbar-collapse .navbar-toggler {
    display: block;
    right: 20px;
    top: 20px;
    position: absolute;
  }

  #navoverlay.open {
    background-color: rgba(0, 0, 0, 0.6);
    pointer-events: all;
    -webkit-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
  }

  body.open-nav,
  html.open-nav {
    height: 100%;
    overflow: hidden;
  }

  /* push nav end */
  .hdr-rgt-wrap {
    margin-left: auto;
  }

  .navbar {
    padding: 8px 0;
  }

  .sub-menu {
    background-color: var(--primary-black);
    position: static;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    /* border: 0; */
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    width: 100%;
    padding: 0;
    overflow: hidden;
    box-shadow: none;
  }

  .bnr-wrap {
    --bs-gutter-y: 20px;
  }

  .bnr-wrap>* {
    width: 100%;
  }

  .bnr-rgt-innr {
    position: static;
    bottom: 0;
    right: 0;
  }

  .bnr-lft-innr {
    padding: 0;
  }

  .bnr-sec {
    padding: 50px 0 0 0;
  }

  h1,
  .hOne {
    font-size: 35px;
  }

  .review-sec {
    margin-top: -55px;
  }

  h2,
  .hTwo {
    font-size: 26px;
  }

  .product-txt {
    padding: 20px 0 0 0;
  }

  h3,
  .hThree {
    font-size: 20px;
  }

  .product-txt p {
    line-height: 1.5;
    font-size: 14px;
  }

  .cmn-gap {
    padding: 40px 0;
  }

  .about-wrap>* {
    width: 100%;
  }

  .vr-txt {
    font-size: 50px;
    text-align: end;
  }

  .about-rgt-innr {
    max-width: 625px;
  }

  .news-wrap {
    max-width: 100%;
  }

  .footer-left {
    width: 100%;
    border-right: 0;
  }

  .footer-logo {
    max-width: 110px;
    margin-bottom: 20px;
  }

  .footer-sec {
    padding-top: 40px;
  }

  .footer-uppr>* {
    padding: 0 12px 30px 12px;
  }

  .footer-each {
    width: calc(100% / 4);
  }

  .footer-uppr {
    margin: 0 -12px;
  }

  .contact-lft-innr figure {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
  }

  .faq-sec .pg-hd {
    margin-bottom: 30px;
  }

  .accordion-button {
    font-size: 18px;
    padding: 18px 18px 18px 18px;
  }

  .faq-main>* {
    width: 100%;
  }

  .accordion-item:last-child {
    margin-bottom: 30px;
  }

  .faq-main>*:last-child .accordion-item:last-child {
    margin-bottom: 0;
  }

  .accordion-body {
    padding-left: 18px;
  }

  .accordion-item {
    margin-bottom: 16px;
  }

  .product-txt-contpart {
    padding: 0 0;
  }

  .prduct-arrow {
    bottom: 10%;
  }

  /* 23.02.24 css */
  .shop-lising-wrap ul.products>li {
    width: 50% !important;
  }

  .shop-lising-wrap .prod-left-menu {
    width: 230px;
  }

  .shop-lising-wrap ul.products {
    width: calc(100% - 230px);
  }

  .woocommerce-account .u-columns {
    margin: -10px -10px;
  }

  .woocommerce-account .u-columns>* {
    width: 100% !important;
    padding: 10px 10px;
  }

  .modelform-wrap-fancybxs .product-list .product-cntnt>h2 {
    font-size: 22px;
  }

  .wp-block-product-new .wc-block-grid__product {
    width: 48% !important;
  }

  .wp-block-product-new .wc-block-grid__product:nth-child(2n) {
    margin-right: 0;
  }

  .wp-block-product-new .wc-block-grid__products {
    padding-top: 15px;
  }

  .sin-section,
  .errorm-wrap {
    padding: 65px 0;
  }

  textarea {
    height: 200px;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation {
    margin-bottom: 30px;
  }

  .woocommerce-MyAccount-content {
    padding: 15px;
  }

  .woocommerce-MyAccount-navigation ul li {
    padding: 5px;
  }

  /* 23.02.24 css */

  /* css update start RN 26-02-2024 */
  .woof_products_top_panel ul {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .woof_products_top_panel ul li:first-child {
    width: 100%;
    margin-bottom: 10px !important;
  }

  /* css update start RN 27-02-2024 */

  .product-details-bredcum .woocommerce-breadcrumb,
  .product-details-bredcum .woocommerce-breadcrumb a {
    font-size: 14px;
  }

  .shipping-details-hd {
    font-size: 20px;
  }

  .shipping-list-details li::before {
    width: 16px;
    height: 16px;
    background-size: 8px;
    top: 3px;
  }

  .shipping-list-details li {
    padding-left: 25px;
  }

  .product-search-rightbox {
    padding-left: 0px;
  }

  .inner-side-content-prodlist {
    max-height: inherit;
    overflow-y: inherit;
  }

  .productdisplay .woocommerce-tabs .tabs li {
    margin: 0 30px 0 0 !important;
  }

  .additionproduct-row {
    margin-bottom: -25px;
  }

  .additionproduct-row .inner-content-cal {
    margin-bottom: 25px;
  }

  /* css update end RN 27-02-2024 */

  /* css update start RN 28-02-2024 */
  .product-details-left .pro-fliter .woof_container_checkbox {
    padding: 20px 12px;
  }

  .product-details-left .icheckbox_square-blue,
  .product-details-left .iradio_square-blue {
    background-size: 180px 18px;
    width: 18px;
    height: 18px;
  }

  .product-details-left ul.woof_list_checkbox li {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .product-details-left .pro-fliter .woof_list label {
    font-size: 14px;
  }

  .woocommerce table.shop_attributes th,
  .woocommerce table.shop_attributes td {
    font-size: 15px;
  }

  /* css update start RN 29-02-2024 */
  .product-details-price {
    margin: 0 -5px 5px;
  }

  /* css update end RN 29-02-2024 */

  /* 04-03-2024 css start (DD) */
  .review-product-wrap .ti-widget.ti-goog .ti-controls {
    width: 80px !important;
    height: auto;
    z-index: 1;
    height: 30px;
    top: auto !important;
    bottom: 28px !important;
    left: 0;
    right: 0;
    transform: none !important;
    margin: 0 auto;
  }

  .review-sec .ti-next {
    right: 0 !important;
  }

  .review-sec .ti-prev {
    left: 0 !important;
  }

  .review-sec .ti-widget.ti-goog .ti-reviews-container-wrapper {
    padding-bottom: 70px;
  }

  .review-product-wrap .ti-widget.ti-goog .ti-controls .ti-next,
  .review-product-wrap .ti-widget.ti-goog .ti-controls .ti-prev {
    display: block !important;
  }

  /* 04-03-2024 css end (DD) */

  /* css start RN 06-03-2024 */
  .delivery-addr-icon {
    padding-top: 2px;
  }

  /* css end RN 06-03-2024 */

  /* support start 12/3/24 */
  .woocommerce .upsells ul.products li.product {
    width: 50%;
  }

  /* support end 12/3/24 */
  /* support start 13/3/24 */
  /* .woocommerce-orders-table
    .woocommerce-orders-table__cell
    .woocommerce-button {
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
  } */
  .woocommerce-orders-table .woocommerce-orders-table__cell .woocommerce-button.cancel {
    margin-top: 8px;
  }

  td.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-actions:last-child {
    flex-wrap: wrap;
  }

  /* support end 13/3/24 */

  /* support start 15/3/24 */
  .upsells .itemloop-wrap {
    text-align: center;
  }

  .wp-block-woocommerce-cart-cross-sells-block .wp-block-heading.has-large-font-size {
    font-size: 26px !important;
  }

  .wp-block-product-new .wc-block-grid__product.add-to-wishlist-after_add_to_cart {
    text-align: center !important;
  }

  .add-to-wishlist-after_add_to_cart .wc-block-grid__product-rating {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .post-type-archive-product .add-to-wishlist-after_add_to_cart .itemloop-wrap {
    text-align: center;
  }

  .post-type-archive-product .add-to-wishlist-after_add_to_cart .itemloop-wrap .star-rating {
    left: 50%;
    transform: translateX(-50%);
  }

  .yith-wcwl-wishlistexistsbrowse,
  .yith-wcwl-wishlistaddedbrowse {
    text-align: center;
  }

  /* support end 15/3/24 */

  /* css update start RN 05-04-2024 */
  .bnr-lft-innr h1,
  .bnr-lft-innr .hOne {
    font-size: 37px;
  }

  .navbar-nav>li>a {
    font-size: 16px;
  }

  .navbar-nav>li.shopitem a {
    font-size: 18px;
    color: #000;
  }

  /* css update end RN 05-04-2024 */
}

@media (max-width: 767px) {

  /* images alignment for wordpress content pages */
  .alignright,
  .alignleft,
  .aligncenter {
    float: none;
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    clear: both;
    margin-bottom: 24px;
  }

  h1,
  .hOne {
    font-size: 30px;
  }

  .footer-each-innr {
    padding-left: 0;
  }

  .footer-each {
    width: calc(100% / 2);
  }

  .footer-uppr>* {
    border-right: 0;
  }

  .innr-bnr-sec {
    min-height: 295px;
  }

  .big-txt {
    font-size: 20px;
  }

  .admin-wrap {
    margin-bottom: 12px;
  }

  .accordion-button {
    font-size: 15px;
  }

  .accordion-body {
    padding-left: 15px;
    padding-right: 15px;
  }

  .accordion-button {
    padding: 18px 15px 18px 15px;
  }

  /* 23.02.24 css */
  .shop-lising-wrap .prod-left-menu,
  .shop-lising-wrap ul.products {
    width: 100%;
  }

  .shop-lising-wrap .prod-left-menu {
    margin-bottom: 30px;
  }

  .shop-lising-wrap ul.products {
    padding-left: 0;
  }

  .woocommerce-account .wrap-section .entry-header {
    margin-bottom: 30px;
  }

  .modelform-wrap-fancybxs .product-list .product-cntnt>h2 {
    font-size: 18px;
  }

  .fancybox__content {
    padding: 15px;
  }

  .wp-block-product-new .wc-block-grid__products {
    margin-bottom: -30px;
  }

  .wp-block-product-new .wc-block-grid__product {
    width: 100% !important;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .sin-section,
  .errorm-wrap {
    padding: 55px 0;
  }

  textarea {
    height: 150px;
  }

  .add-pro-btn {
    flex-direction: column;
    align-items: flex-start;
  }

  .add-pro-btn>*:first-child {
    margin-right: 0;
    margin-bottom: 12px;
  }

  /* 23.02.24 css */
  /* css update start RN 26-02-2024 */
  .shop-lising-wrap .pro-fliter {
    width: 100%;
    margin-bottom: 20px;
  }

  .shop-lising-wrap .woof_shortcode_output {
    width: 100%;
  }

  .woof_results_by_ajax_shortcode {
    width: 100%;
  }

  .shop-lising-wrap .woof_results_by_ajax_shortcode .woof_shortcode_output {
    width: 100%;
  }

  .shop-lising-wrap ul.products>li {
    padding: 0 0 20px !important;
  }

  .shop-lising-wrap ul.products {
    margin: 0 0px -20px 0;
    padding-left: 0;
  }

  .woof_products_top_panel {
    padding-left: 0;
  }

  .woocommerce-no-products-found {
    margin-left: 0;
  }

  /* css update end RN 26-02-2024 */

  /* css update start RN 27-02-2024 */
  .each-shipping-cont {
    width: 100%;
    padding: 0 12px;
    margin-bottom: 15px;
  }

  .contentfull_content {
    margin: 0 -12px -15px;
    flex-wrap: wrap;
  }

  .product-details-bredcum .site-main {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .product-details-bredcum .woocommerce-breadcrumb {
    width: 100%;
    margin-bottom: 20px;
  }

  .product-details-bredcum .single-search_wrp {
    width: 100%;
  }

  .productdisplay .woocommerce-tabs .tabs li a {
    font-size: 14px;
  }

  .productdisplay .woocommerce-tabs .tabs li {
    margin: 0 20px 10px 0 !important;
  }

  .productdisplay .woocommerce-tabs .tabs {
    padding: 25px 0 15px !important;
  }

  .faq-acc-wrap {
    margin-bottom: 40px;
  }

  /* css update end RN 27-02-2024 */

  /* css update start RN 28-02-2024 */
  .product-details-left .variations_form tr th {
    width: 35%;
    padding-right: 5px !important;
  }

  .product-details-left .variations_form tr td {
    width: 65%;
    padding-left: 5px !important;
  }

  /* css update end RN 28-02-2024 */
  /* css update start RN 08-03-2024 */
  .articles_prompt {
    padding: 0 !important;
  }

  .articles_prompt .modal-content {
    max-width: 95%;
    margin: 0 auto;
  }

  /* css update end RN 08-03-2024 */

  /* support start 13/3/24 */

  .yith-wcwl-wishlistexistsbrowse {
    margin-left: 9px;
  }

  /* support end 13/3/24 */

  /* support start 14/3/24 */
  .woocommerce-orders-table .woocommerce-orders-table__cell .woocommerce-button {
    width: 100%;
  }

  .woocommerce-orders-table .woocommerce-orders-table__cell .woocommerce-button:not(:last-child) {
    margin-right: 0;
  }

  .woocommerce-orders-table .woocommerce-orders-table__cell .woocommerce-button.view {
    margin-top: 8px;
  }

  td.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-actions:last-child {
    padding: 4px 8px;
  }

  /* support end 14/3/24 */

  /* support start 15/3/24 */
  .wp-block-woocommerce-cart-cross-sells-block {
    margin-top: 20px;
  }

  /* support end 15/3/24 */
  /* CSS Modification 29.03.24 */
  .blg_dtls_cntnt .blg-img {
    max-width: 100%;
  }

  /* CSS Modification 29.03.24 */

  /* css update start RN 05-04-2024 */
  .bnr-lft-innr h1,
  .bnr-lft-innr .hOne {
    font-size: 30px;
  }

  /* css update end RN 05-04-2024 */
}

@media (max-width: 640px) {
  .contact-form-wrapper .gform_wrapper.gravity-theme .ginput_complex span {
    margin-bottom: 20px;
  }

  .contact-form-wrapper .gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap: 20px;
  }

  .contact-form-wrapper .gform_wrapper.gravity-theme .ginput_complex span:last-child {
    margin-bottom: 0;
  }

  .contact-form-wrapper .gform_wrapper.gravity-theme .gform_footer {
    margin-top: 24px;
  }
}

@media (max-width: 575px) {
  .mob-dwnld-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 15px;
    width: 15px;
  }

  .main-head .cmn-btn {
    font-size: 0;
    min-width: auto;
    padding: 10px;
  }

  .review-sec {
    margin-top: 0;
  }

  /* 23.02.24 css start (DD)*/
  .review-product-wrap .review-sec {
    margin-top: -45px;
  }

  .review-sec .ti-widget.ti-goog .ti-review-item>.ti-inner {
    box-shadow: 0 5px 5px 0px rgba(30, 32, 30, 0.11);
  }

  /* 23.02.24 css end (DD)*/
  .prduct-arrow {
    padding: 12px 7px;
    right: 2%;
    bottom: 9%;
    font-size: 12px;
  }

  /* 23.02.24 css */
  .shop-lising-wrap ul.products>li {
    width: 100% !important;
  }

  .modelform-wrap-fancybxs .product-list .pro-image {
    padding-bottom: 25px;
  }

  .modelform-wrap-fancybxs .product-list .pro-image,
  .modelform-wrap-fancybxs .product-list .product-cntnt {
    width: 100%;
  }

  .woocommerce-info {
    display: flex;
    flex-direction: column;
  }

  .woocommerce-info a {
    margin-top: 15px !important;
  }

  /* 23.02.24 css */

  /* support start 12/3/24 */
  .woocommerce .upsells ul.products li.product {
    width: 100%;
  }

  /* support end 12/3/24 */

  /* css update start RN 05-04-2024 */
  .main-head .cmn-btn {
    width: auto;
  }

  /* css update end RN 05-04-2024 */
}

@media (max-width: 479px) {
  .hdr-logo {
    min-width: 75px;
    width: 75px;
  }

  .hdr-btn-wrap {
    margin-left: 25px;
  }

  h1,
  .hOne,
  .bnr-lft-innr h1,
  .bnr-lft-innr .hOne {
    font-size: 26px;
  }

  h2,
  .hTwo {
    font-size: 20px;
  }

  .pg-hd .hTwo {
    padding-bottom: 15px;
    margin-bottom: 10px;
  }

  h3,
  .hThree {
    font-size: 18px;
  }

  .product-txt .hThree {
    margin-bottom: 10px;
  }

  .product-txt .cmn-btn {
    padding: 15px 20px;
  }

  .product-img {
    height: 210px;
  }

  .about-lft-innr {
    padding-right: 60px;
    padding-bottom: 39px;
  }

  .dot-shape {
    right: 0;
  }

  .sml-img {
    max-width: 250px;
    max-height: 220px;
  }

  .about-lft-innr figure {
    height: 315px;
  }

  .about-list {
    margin: 0 0 25px 0;
  }

  .ft-lwr-txt {
    font-size: 12px;
  }

  .footer-lwr {
    padding: 15px 0;
  }

  #scroll {
    width: 40px;
    height: 40px;
  }

  #scroll i {
    font-size: 25px;
  }

  .news-wrap .hTwo {
    margin-bottom: 13px;
    padding-bottom: 0;
  }

  .srch-box-wrap {
    padding: 10px 60px 10px 20px;
  }

  .footer-hdr {
    font-size: 18px;
    padding-bottom: 6px;
    margin-bottom: 14px;
  }

  .hdr-rgt-list>li {
    padding: 10px 4px;
  }

  .cart-icon .cart-item {
    top: -10px;
    right: -12px;
    font-size: 12px;
    height: 20px;
    width: 20px;
  }

  .news-form-wrap input[type="submit"] {
    position: static;
    transform: none;
    height: auto;
    width: 100%;
    max-width: 100%;
  }

  .news-form-wrap input[type="email"] {
    padding-left: 23px;
    padding-right: 23px;
    margin-bottom: 20px;
  }

  .newsletter-sec {
    padding-bottom: 93px !important;
  }

  .innr-bnr-sec {
    min-height: 260px;
  }

  .big-txt {
    font-size: 16px;
  }

  h6,
  .hSix {
    font-size: 16px;
  }

  .blog-lwr {
    padding: 20px 0;
  }

  .load-more-btn-wrap {
    margin-top: 30px;
  }

  .news-form-innr {
    height: 55px;
  }

  input[type="text"],
  input[type="tel"],
  input[type="password"],
  input[type="email"],
  select {
    height: 55px;
  }

  .contact-form-innr {
    --bs-gutter-y: 20px;
  }

  .news-form-wrap .gform_wrapper.gravity-theme .gform_footer,
  .news-form-wrap .gform_wrapper.gravity-theme .gform_page_footer {
    margin-top: 0px !important;
  }

  .news-form-wrap .gform_wrapper.gravity-theme input:not([type="radio"]):not([type="checkbox"]):not([type="image"]):not([type="file"]) {
    min-height: 51px;
  }

  .news-form-wrap input[type="email"] {
    padding-left: 23px !important;
    padding-right: 23px !important;
    margin-bottom: 20px !important;
  }

  /* 23.02.24 css */
  .prod-lis-wrap {
    padding: 55px 0;
  }

  .woocommerce-account .wrap-section .entry-header {
    margin-bottom: 20px;
  }

  .woocommerce-account .woocommerce-form {
    padding: 12px !important;
  }

  .sin-section .blg-img {
    height: 280px;
  }

  textarea {
    height: 120px;
  }

  .edit-link a {
    font-size: 16px;
  }

  .woocommerce form .form-row-first,
  .woocommerce form .form-row-last,
  .woocommerce-page form .form-row-first,
  .woocommerce-page form .form-row-last {
    width: 100% !important;
  }

  .select2-container--default .select2-selection--single,
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 55px;
  }

  .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 55px;
  }

  .wc-block-cart-item__product {
    margin-bottom: 0 !important;
  }

  .woocommerce-checkout .wc-block-checkout__actions_row {
    flex-direction: column;
  }

  .woocommerce-checkout .wc-block-checkout__actions_row>* {
    width: 100%;
  }

  .woocommerce-checkout .wc-block-checkout__actions_row>*:not(:last-child) {
    margin-bottom: 15px;
  }

  /* 23.02.24 css */

  /* css update start RN 27-02-2024 */
  .product-details-left .variations_form select {
    width: 75%;
  }

  .ver-wrap,
  .dtail-pro {
    padding-right: 25px;
  }

  .dtail-pro {
    padding-left: 20px;
  }

  .point-wrap {
    width: 25%;
  }

  .information-wrap .sec-point {
    width: 75%;
  }

  .delivery-pro,
  .pod-pro,
  .return-wrap {
    padding: 0 5px;
  }

  .woocommerce table.shop_attributes th,
  .woocommerce table.shop_attributes td {
    font-size: 14px;
  }

  /* css update end RN 27-02-2024 */

  /* 04-03-2024 start (DD) */
  .review-product-wrap .ti-widget.ti-goog .ti-controls {
    display: none !important;
  }

  .review-sec .ti-widget.ti-goog .ti-reviews-container-wrapper {
    padding-bottom: 10px;
  }

  .review-wrap {
    padding: 0 10px;
  }

  /* 04-03-2024 end (DD) */

  /* support start 11/3/24 */
  .cross-sells-product .wc-block-components-product-image a img {
    max-height: 240px;
    min-height: 240px;
  }

  /* support end 11/3/24 */

  /* support start 15/3/24 */
  .wp-block-woocommerce-cart-cross-sells-block .wp-block-heading.has-large-font-size {
    font-size: 20px !important;
  }

  /* support end 15/3/24 */

  /* css update start RN 05-04-2024 */
  .bnr-lft-innr h1,
  .bnr-lft-innr .hOne {
    font-size: 24px;
  }

  /* css update end RN 05-04-2024 */
}

/* 08-03-2024 added */
.variation_original_price {
  font-weight: 700;
  color: #333333;
  font-size: 18px;
}

/* 08-03-2024 added */


@media (max-width: 374px) {

  /* css update start RN 27-02-2024 */
  .product-details-left .variations_form select {
    width: 78%;
    background-size: 10px;
  }

  .product-details-left .variations_form tr th {
    width: 30%;
  }

  .product-details-left .variations_form tr td {
    width: 70%;
  }

  /* css update end RN 27-02-2024 */
  /* css update start RN 05-04-2024 */
  .bnr-lft-innr h1,
  .bnr-lft-innr .hOne {
    font-size: 20px;
  }

  /* css update end RN 05-04-2024 */
}