/* =========== loader css STARTS ========== */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -95px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--mildblue);
  -webkit-animation: spin 2s linear infinite;  /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 2s linear infinite;  /* Chrome, Firefox 16+, IE 10+, Opera */
  z-index: 1001;
}

#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--red);
  -webkit-animation: spin 3s linear infinite;  /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 3s linear infinite;  /* Chrome, Firefox 16+, IE 10+, Opera */
}

#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--yellow);
  -webkit-animation: spin 1.5s linear infinite;  /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 1.5s linear infinite;  /* Chrome, Firefox 16+, IE 10+, Opera */
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(0deg);    /* IE 9 */
    transform: rotate(0deg);    /* Firefox 16+, IE 10+, Opera */
  }

  100% {
    -webkit-transform: rotate(360deg);    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(360deg);    /* IE 9 */
    transform: rotate(360deg);    /* Firefox 16+, IE 10+, Opera */
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(0deg);    /* IE 9 */
    transform: rotate(0deg);    /* Firefox 16+, IE 10+, Opera */
  }

  100% {
    -webkit-transform: rotate(360deg);    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(360deg);    /* IE 9 */
    transform: rotate(360deg);    /* Firefox 16+, IE 10+, Opera */
  }
}

#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  z-index: 1000;
  -webkit-transform: translateX(0);  /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateX(0);  /* IE 9 */
  transform: translateX(0);  /* Firefox 16+, IE 10+, Opera */
}

#loader-wrapper .loader-section.section-left {
  left: 0;
  background: linear-gradient(90deg, var(--white), var(--white));
}

#loader-wrapper .loader-section.section-right {
  right: 0;
  background: linear-gradient(90deg, var(--white), var(--white));
}

/* Loaded */
.loaded #loader-wrapper .loader-section.section-left {
  -webkit-transform: translateX(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateX(-100%);  /* IE 9 */
  transform: translateX(-100%);  /* Firefox 16+, IE 10+, Opera */

  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader-wrapper .loader-section.section-right {
  -webkit-transform: translateX(100%);
  /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateX(100%);
  /* IE 9 */
  transform: translateX(100%);
  /* Firefox 16+, IE 10+, Opera */

  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
  visibility: hidden;

  -webkit-transform: translateY(-100%);
  /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateY(-100%);
  /* IE 9 */
  transform: translateY(-100%);
  /* Firefox 16+, IE 10+, Opera */

  -webkit-transition: all 0.3s 1s ease-out;
  transition: all 0.3s 1s ease-out;
}

/* JavaScript Turned Off */
.no-js #loader-wrapper {
  display: none;
}
/* =========== loader css ENDS =============== */

/*tech-vip**/

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700;800&display=swap");

* {
  transition: all 0.1s ease;
}

a:hover,
a:focus {
  text-decoration: none !important;
}

img {
  max-width: 100%;
}

.scraped-container {
  width: 100% !important;
  max-width: 1400px !important;
  padding: 0 10px !important;
}

.home .home-slider {
  max-width: 1400px;
  margin: auto;
  padding: 0 10px;
}

.home .home-slider .info .ft {
  display: none;
}

.p-heading .p-title {
  float: left;
  padding: 15px 20px 12px 0 !important;
  position: relative !important;
  background: none !important;
  font-weight: 700 !important;
  font-size: 22px !important;
  line-height: 30px !important;
  color: #333 !important;
}

.p-heading::before {
  display: none !important;
}

/* .p-heading .p-title:after {
  width: 100%;
  position: absolute;
  content: "";
  height: 3px;
  background: #f36b1c;
  left: 0px;
  bottom: 1px;
}

.p-heading::before {
  margin: 0px !important;
  background: #ddd !important;
  top: 96% !important;
  height: 1px !important;
} */

.features div div .text-feat {
  font-size: 19px;
  line-height: 22px;
  text-transform: uppercase;
  width: 65%;
  padding: 0;
}

.features div div .text-feat b {
  font-weight: 800 !important;
}

.features p {
  margin: 6px 0 0 0 !important;
}

.img-featMain {
  float: left;
  width: 50px;
  text-align: center;
  line-height: 56px;
}

.cls-1 {
  fill: #fff !important;
}

.feature-item .img-feat {
  min-width: 55px !important;
}

/* .home .list-product .p-heading {
  margin-bottom: 30px !important;
} */
.home .list-product .p-heading {
  margin-bottom: 0 !important;
}

.header-desc .categories-menu>li {
  float: left !important;
  text-transform: uppercase;
}

.header-desc .categories-menu li.current-cat-ancestor>a,
.header-desc .categories-menu li.current-cat-parent>a,
.header-desc .categories-menu li.current-cat>a,
.header-desc .categories-menu li.current-menu-ancestor>a,
.header-desc .categories-menu li.current-menu-item>a,
.header-desc .categories-menu li.current-menu-parent>a,
.header-desc .categories-menu li:hover a,
.header-desc .categories-menu li a:active,
.header-desc .categories-menu li a:hover {
  box-shadow: inset 0 -2px 0 0 #f36b1c !important;
  color: #f36b1c !important;
}

.media-box .subscribecont {
  background: linear-gradient(-45deg, #f36b1c, var(--red));
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  padding: 45px 0 55px 0;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.subscribe {
  display: flex;
}

.subscribeH {
  font-size: 22px !important;
  line-height: 33px !important;
  color: #fff !important;
  font-weight: 800 !important;
  width: 40% !important;
  margin: 0 30% !important;
}

.subscribe input[type="email"] {
  border: 0 !important;
  border-radius: 0px !important;
  box-shadow: 0 0 0 !important;
}

.footer .content-partners {
  background: #333 !important;
}

.footer .content-partners .scraped-container ul li span {
  color: #fff;
  font-weight: 700;
}

.footer .content-partners .scraped-container ul.payment_methods {
  text-align: left;
  padding: 0px;
}

.footer .content-partners .scraped-container ul {
  text-align: right;
}

.header-desc .wrap-header {
  padding: 35px 0 !important;
}

.cart-sidenav .cart-footer .item-cart a.btn-proceed {
  height: 55px !important;
  line-height: 55px !important;
  background: #f36b1c !important;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 16px !important;
}

.cart-sidenav .cart-header h2 {
  font-weight: 800 !important;
  font-size: 17px !important;
  color: var(--red);
}

/****** vivek  ****/
.open_sidebar .body-inner-content-wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: 5;
}

.body-inner-content-wrapper {
  overflow: visible !important;
  position: relative;
}

.header-desc .logo-box {
  margin: -3px 0;
  display: inline-block;
  vertical-align: middle;
}

.menu-toggle {
  display: inline-block;
  cursor: pointer;
  margin-left: 20px;
}

.menu-toggle::after {
  content: "\f0c9";
  font-family: FontAwesome;
  font-size: 28px;
}

.shop_tech_menu {
  background: #fff;
  position: absolute;
  left: -100%;
  top: 0;
  height: 100vh;
  z-index: 30;
  width: 420px;
  padding: 0;
  margin: 0;
  transition: all 0.5s ease;
  overflow-y: auto;
}

.open_sidebar .shop_tech_menu {
  left: 0;
}

body.open_sidebar {
  overflow: hidden;
}

.shop_tech_menu ul {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shop_tech_menu a {
  display: block;
  position: relative;
  font-size: 13px;
  font-weight: 400;
  line-height: 30px;
  padding: 5px 20px;
  color: var(--black) !important;
}

.shop_tech_menu a:hover {
  background-color: #f1f1f1;
  color: #f36b1c;
}

.header-top .contact .tel {
  margin: 0 20px 0 0 !important;
}

.custshopbag {
  display: inline-block;
  position: relative;
  left: -10px;
  z-index: 0;
}

.custshopbag::after {
  color: var(--black);
  content: "\f290";
  font-family: FontAwesome;
  display: block;
  line-height: 20px;
  font-size: 30px;
}

.header-desc .cart a::before {
  display: none !important;
}

.header-top {
  background: #f1f1f1 !important;
  padding: 12px 0 !important;
}

.header-top .contact a {
  color: var(--black) !important;
  padding-left: 0 !important;
  font-size: 13px !important;
}

.header-top .contact a::before {
  display: none !important;
}

.header-top .dropdown_currency {
  color: var(--black) !important;
}

.header-desc .logo-box .logo img {
  width: 230px !important;
}

.header-desc .search-post {
  width: 100% !important;
  max-width: 550px !important;
  border: none !important;
  display: inline-block !important;
  float: none !important;
  margin: 0 !important;
}

.js-autocomplete-search {
  border: 2px solid var(--red) !important;
  border-radius: 25px !important;
  padding: 3px 30px 3px 18px !important;
  top: 0 !important;
  left: 0 !important;
}

.header-desc .search-post button {
  height: 45px !important;
  right: 25px !important;
  padding: 0 30px !important;
  border-radius: 0 25px 25px 0 !important;
  background: var(--red) !important;
}

.header-desc .search-post button::before {
  color: #fff !important;
}

.header-desc .cart a {
  background: transparent !important;
  padding: 0 !important;
}

.cart .count_item {
  display: inline-block !important;
  border-radius: 25px;
  width: 22px;
  height: 22px;
  line-height: 22px;
  background: var(--red);
  color: #fff !important;
  text-align: center;
  font-size: 12px !important;
  font-weight: 700 !important;
  position: absolute;
  left: 10px;
  top: 13px;
  z-index: 1;
  transition: all 0.3s ease;
}

.header-desc .search-post.is-focus button {
  right: 25px !important;
  left: auto !important;
}

.contact .icon {
  width: 15px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px 0 0;
}

.header-desc .wrap-header {
  border: none !important;
}

.header-desc .categories-menu>li>a:hover {
  border: none !important;
}

.header-desc .categories-menu>li {
  float: none !important;
  display: inline-block !important;
}

.ttdropdown-toggle.load_currency b {
  display: none !important;
}

.tel .icon::after {
  color: var(--red);
  content: "\f095";
  font-family: FontAwesome;
  display: block;
  line-height: 20px;
  font-size: 18px;
  height: 20px;
}

.email .icon::after {
  color: var(--red);
  content: "\f0e0";
  font-family: FontAwesome;
  display: block;
  line-height: 20px;
  font-size: 16px;
  height: 20px;
  margin: -3px 0 0 0;
}

.total-price {
  display: inline-block;
  vertical-align: middle;
  color: var(--black) !important;
  font-weight: 700 !important;
  line-height: normal;
  font-size: 14px !important;
  margin: 0 0 0 5px;
}

.text-shipping {
  font-size: 13px;
  line-height: 12px;
  display: inline-block;
  vertical-align: middle;
}

.text-shipping::before {
  content: "\f072";
  color: var(--red);
  font-family: FontAwesome;
  display: inline-block;
  vertical-align: middle;
  line-height: 20px;
  font-size: 19px;
  height: 20px;
  margin: 0 10px 0 0;
}

.ttdropdown-toggle.load_currency::before {
  content: "Language";
  display: inline-block;
  font-size: 13px;
  line-height: 12px;
  color: var(--black);
  margin: 0 10px 0 40px;
}

.ttdropdown-toggle.load_currency::after {
  content: "\f1ab" !important;
  color: var(--red) !important;
  font-family: FontAwesome !important;
  display: inline-block !important;
  vertical-align: middle !important;
  line-height: 20px !important;
  font-size: 16px !important;
  height: 20px !important;
  margin: 0 10px 0 0 !important;
  position: relative !important;
  left: -114px !important;
  transform: none !important;
  width: auto !important;
  border: none !important;
}

.ttdropdown-toggle {
  display: inline-block !important;
}

.homeLink a {
  font-size: 0 !important;
  background-image: url("https://assets.checkoutchamp.com/Funnel/assets/images/399da7c5-0923-493a-8d72-25b12f3a6d3b/b525bba6-07e9-4517-ad8f-9ae7f26ed590/techvip.png");
  background-repeat: no-repeat;
  background-size: 170px;
  background-position: left;
  height: 53px;
  margin: 20px 0 10px 20px;
}

.homeLink a:hover {
  background-color: transparent !important;
}

.header-top .show .ttdropdown-toggle::after {
  transform: none !important;
  border: none !important;
  height: auto !important;
  width: auto !important;
}

.header-desc .text-secure {
  background-size: cover;
  display: block;
  height: 42px;
  width: 86px;
  background-size: 100%;
}

/* .product-item .title {
  font-size: 16px;
  line-height: 25px;
  color: var(--black);
  margin: 0 0 8px 0 !important;
  height: auto !important;
} */

.product-item .price .sale,
.features div .text-feat b {
  color: #f36b1c !important;
}

.submiter .button.btn:hover {
  background: #fff !important;
  color: var(--black) !important;
}

.p-heading .p-title a {
  color: var(--black);
}

.product-item:hover .title {
  text-decoration: none !important;
}

.product-item {
  overflow: hidden;
  position: relative;
  box-shadow: none !important;
  background: #f1f1f1;
  margin-bottom: 14px;
}

.product-item .wrap-img {
  margin: 0 0 140px 0;
}

.product-item .wrap-img .discount {
  width: 46px;
  height: 46px;
  padding: 0 !important;
  border-radius: 50%;
  line-height: 46px;
  text-align: center;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  background-color: var(--red) !important;
}

.product-item .wrap-img .discount span {
  font-size: 12px !important;
}

.product-item .wrap-img .discount::before {
  content: "Discount";
  display: inline-block;
  font-size: 11px;
  line-height: 24px;
  color: var(--black);
  background: #fff;
  border-radius: 6px;
  position: absolute;
  left: -110px;
  top: 10px;
  width: 80px;
  height: 25px;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  visibility: hidden;
  opacity: 0;
  font-weight: bold;
  text-transform: uppercase;
}

.product-item .wrap-img .discount::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #fff;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  top: 16px;
  left: -35px;
  transform: rotate(-32deg);
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  visibility: hidden;
  opacity: 0;
}

.product-item:hover .wrap-img .discount::before {
  left: -90px;
  visibility: visible;
  opacity: 1;
}

.product-item:hover .wrap-img .discount::after {
  left: -15px;
  visibility: visible;
  opacity: 1;
}

.product-item .buy_now_div {
  text-align: center;
}

.product-item .buy_now_btn {
  background-color: var(--red);
  color: #ffffff;
  font-size: 14px;
  line-height: 18px;
  padding: 9px 16px 11px 16px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  visibility: hidden;
  text-transform: uppercase;
  opacity: 0;

}

.product-item .buy_now_btn span {
  display: inline-block;
  vertical-align: middle;
  font-weight: 600;
}

.product-item .buy_now_btn span::before {
  color: #fff;
  content: "\f290";
  font-family: FontAwesome;
  display: inline-block;
  vertical-align: middle;
  font-size: 15px;
  line-height: normal;
  margin: -5px 10px 0 0;
}

.product-item:hover .buy_now_btn {
  visibility: visible;
  opacity: 1;
}

.product-item .buy_now_btn:hover {
  background-color: #f36b1c;
  color: #fff;
}

.product-item .woo_item_content {
  padding: 20px 0 15px 0;
  background-color: var(--product-bg);
  position: absolute;
  bottom: -65px;
  left: 0;
  right: 0;
  height: 200px;
  transition: all 0.2s ease-in-out;
}

.product-item:hover .woo_item_content {
  bottom: 0;
}

.product-item .starRating {
  height: auto !important;
  margin: 0 0 5px 0 !important;
}

.product-item .starRating .call-item {
  display: none;
}

/* .product-item .title {
  font-size: 15px !important;
  line-height: 25px !important;
  margin: 0 0 10px 0 !important;
  height: auto !important;
  color: var(--black) !important;
} */

.product-item .price .sale {
  font-size: 16px;
  line-height: 20px;
}

.product-item .price {
  background: none !important;
  height: auto !important;
  padding: 0 0 12px 0;
}

.footer .copyright {
  float: left;
  font-size: 14px !important;
}

.footer .content-partners .scraped-container ul.payment_methods {
  text-align: right;
  float: right;
}

.footer .footer-row .f-col {
  border: none !important;
}

#menu-purchase-info li {
  width: 50%;
  float: left;
}

.list-social .ico-social::before {
  font-size: 25px !important;
  line-height: normal !important;
}

.footer .contact a::before {
  font-size: 40px;
  line-height: normal !important;
  display: inline-block !important;
  vertical-align: middle;
  position: relative !important;
  margin: 0 10px 0 0 !important;
  font-family: FontAwesome !important;
}

.footer .contact .tel::before {
  content: "\f025" !important;
}

.footer .contact .email::before {
  content: "\f003" !important;
}

.footer .contact a {
  display: inline-block;
  vertical-align: middle;
  padding: 0 !important;
}

.footer .footer-menu li a {
  font-size: 15px !important;
  line-height: 21px !important;
}

.footer .footer-menu li a:hover {
  color: #f36b1c !important;
}

.social_icon_main {
  padding: 0 !important;
}

.footer .copyright {
  margin: 10px 0;
}

.footer .logo-box .logo {
  width: 240px;
  height: auto !important;
}

.footer .contact div {
  margin: 0 !important;
}

.footer .callTxt {
  display: inline-block;
  vertical-align: middle;
  font-weight: 100 !important;
  font-size: 12px;
  line-height: 24px;
}

.footer .callTxt b {
  display: block;
  font-size: 27px;
  line-height: 30px;
  font-weight: 700 !important;
}

.feature-item {
  padding: 20px 20px;
  min-height: 130px;
}

.featureBg1 {
  background: rgba(179, 179, 179, 0.45);
}

.featureBg2 {
  background: rgba(179, 179, 179, 0.35);
}

.featureBg3 {
  background: rgba(179, 179, 179, 0.25);
}

.featureBg4 {
  background: rgba(179, 179, 179, 0.15);
}

.features div div .text-feat {
  width: 100% !important;
}

.features p {
  padding: 0 !important;
}

.footer .copyright h4 {
  font-size: 15px;
  line-height: 18px;
  margin: 0 0;
}

.footer .contact {
  margin: 25px 0 20px 0 !important;
}

.footer .f-head {
  font-size: 18px !important;
  line-height: 20px !important;
  font-weight: 600 !important;
  text-transform: capitalize !important;
  position: relative;
}

.header-desc .text-secure {
  background: url("https://assets.checkoutchamp.com/Funnel/assets/images/399da7c5-0923-493a-8d72-25b12f3a6d3b/b525bba6-07e9-4517-ad8f-9ae7f26ed590/sslupf.svg") center center/contain no-repeat !important;
}

.header-desc .categories-menu>li>a {
  padding: 8px 20px !important;
  font-weight: 700;
  font-size: 13px;
  color: var(--black) !important;
  transition: all 0.2s ease-in-out;
}

.img-featMain img {
  vertical-align: top !important;
}

.feature-item .img-feat {
  margin-top: 0 !important;
}

.b-top-but {
  border-radius: 50% !important;
  background-size: 80px !important;
  background: #fff !important;
  z-index: -1 !important;
}

.product-item .price .old {
  font-size: 15px;
}

.footer .copyright,
.footer .contact a,
.footer .contact a::before {
  color: #fff !important;
}

.footer .content-partners {
  padding: 15px 0;
}

.cart-sidenav .cart-footer .item-name,
.cart-sidenav .cart-footer .item-price {
  font-size: 20px !important;
}

.footer .contact a::before {
  display: none !important;
}

.supportImg {
  width: 50px;
  margin: 0 10px 0 0 !important;
}

.footer .f-head::after {
  content: "";
  width: 100%;
  position: absolute;
  height: 1px;
  background: #fff;
  bottom: 1px;
  left: 0;
}

.footer .f-head span {
  display: inline-block;
  padding: 5px 20px 5px 0 !important;
  border-bottom: 4px solid #f36b1c;
  position: relative;
  z-index: 1;
}

.b-top::after {
  content: "\f062";
  font-family: FontAwesome;
  width: 64px;
  height: 64px;
  color: #f36b1c;
  display: inline-block;
  font-size: 40px;
  line-height: 64px;
  position: relative;
  left: -50px;
  z-index: 5;
}

.keep-contact-with .btn-bord {
  text-transform: uppercase !important;
  background-color: var(--red);
  color: #fff;
  border-color: var(--red) !important;
  border-radius: 0;
  height: auto !important;
  transition: all 0.2s ease-in-out;
}

.keep-contact-with .btn-bord:hover {
  background-color: #f36b1c !important;
  border-color: #f36b1c !important;
}

.header-desc-lft {
  width: 25%;
  float: left;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}

.header-desc-mid {
  width: 54%;
  float: left;
  text-align: center;
}

.header-desc-rt {
  float: right;
  text-align: right;
}

.header-desc .logo-box .logo {
  display: inline-block !important;
  vertical-align: middle !important;
}

.header-mobile {
  display: none !important;
}

.header-top-rt {
  float: right;
  width: 50%;
}

.header-top .contact {
  float: left;
  white-space: unset !important;
  width: 50%;
}

.product-item .title {
  -webkit-line-clamp: inherit !important;
}

.page-content {
  padding: 30px 0 !important;
  margin: 0 !important;
}

.p-heading-page {
  padding: 10px 0 !important;
  margin: 0 !important;
}

.p-heading-page .p-title {
  text-align: left;
  font-weight: 600 !important;
  font-size: 25px !important;
  line-height: 28px !important;
  margin: 0 0 10px 0 !important;
}

#tracking-form .btn {
  text-transform: uppercase !important;
  background-color: var(--red) !important;
  border-color: var(--red) !important;
}

#tracking-form .btn:hover {
  background-color: #f36b1c !important;
  border-color: #f36b1c !important;
}

.page-contact .info-mail a {
  color: var(--red) !important;
}

.page-contact form .btn-bord {
  color: #fff !important;
  border-radius: 0 !important;
  text-transform: uppercase !important;
  background-color: var(--red) !important;
  border-color: var(--red) !important;
}

.page-contact form .btn-bord:hover {
  background-color: #f36b1c !important;
  border-color: #f36b1c !important;
}

.page-contact .info-text {
  text-align: left !important;
}

.page-contact .info-text h3 {
  font-weight: 600 !important;
}

.page-contact .info-text a {
  color: var(--red) !important;
  padding: 0 !important;
}

.page-contact {
  padding: 40px 0;
}

.article>.row {
  margin: 0 !important;
}

.mainproul h3 {
  width: calc(100% - 30px) !important;
  font-size: 18px !important;
  line-height: 20px !important;
  margin: 0 0 10px 0 !important;
  position: relative;
}

.mainproul .answer {
  font-size: 15px !important;
  line-height: 21px !important;
}

.mainproul h3::after {
  content: "\f078";
  font-family: FontAwesome;
  position: absolute;
  right: -20px;
  top: 0;
}

.mainproul>div {
  width: 100%;
  float: left;
  margin: 0 0 10px 0;
}

.page-content .content h2 {
  font-size: 20px !important;
  font-weight: 600 !important;
}

.article .content h3 {
  font-size: 18px !important;
  margin: 0 0 10px 0 !important;
  font-weight: 600 !important;
}

.article .content h4 {
  font-size: 18px !important;
  margin: 0 0 10px 0 !important;
  font-weight: 600 !important;
}

.page-content .content p {
  margin: 0 0 10px 0 !important;
}

.page-content .content a {
  color: var(--red) !important;
  transition: all 0.2s ease-in-out !important;
}

.content>ol {
  padding: 0 0 0 30px;
}

.content>ol> ::marker {
  font-size: 22px;
  font-weight: 600;
}

.wrapper>h1 {
  font-size: 35xp !important;
  line-height: 38px !important;
  font-weight: 600 !important;
  text-align: left !important;
  margin: 0 0 20px 0 !important;
}

.perscab_cont .cablinks a {
  color: var(--red) !important;
}

.page-about .head {
  font-weight: 600 !important;
  line-height: normal !important;
}

.page-about p,
.page-about .text {
  line-height: normal !important;
}

.page-about .meet-our-team .list .our-team-item img {
  transition: 0.5s cubic-bezier(1, 0, 0, 1);
}

.page-about .meet-our-team .list .our-team-item:hover img {
  transform: scale(1.1);
}

.submiter input {
  background-color: var(--red) !important;
  color: #fff !important;
  border: none !important;
  padding: 10px 20px !important;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0px 0px 0px;
  border-radius: 0px;
  font-size: 13px;
}

.submiter input:hover {
  background-color: #f36b1c !important;
  border-color: #f36b1c !important;
}

.header-mobile-srch {
  display: none;
  width: 30%;
  float: left;
  padding: 10px 0;
}

.mobile_menu {
  display: none;
}

.mobile_search {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}

.mobile_search::after {
  content: "\f002";
  font-family: FontAwesome;
  color: var(--black);
  font-size: 20px;
  line-height: normal;
}

.mobile_search::before {
  content: "\f00d";
  display: none;
  font-family: FontAwesome;
  color: var(--black);
  font-size: 20px;
  line-height: normal;
}

.show_mob_srch .mobile_search::after {
  display: none;
}

.show_mob_srch .mobile_search::before {
  display: block;
}

.mobile_searchBx {
  position: absolute;
  z-index: 30;
  background: #f1f1f1;
  left: 0;
  right: 0;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.2s ease;
}

.mobile_searchBx .search-post {
  padding: 0 !important;
  max-width: 100% !important;
}

.mobile_searchBx .js-autocomplete-search {
  left: 0 !important;
  border: none !important;
}

.mobile_searchBx .search-post button {
  background: transparent !important;
  display: inline-block !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: inherit;
}

.mobile_searchBx .search-post button::before {
  color: var(--black) !important;
}

.header-mobile-srch .cart-sec {
  float: none !important;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 20px;
}

.header-mobile-srch .cart .count_item {
  left: 0 !important;
  width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 10px;
  top: 10px;
}

.header-desc .logo-box .logo {
  height: auto !important;
}

.header-desc .cart {
  margin: 0 !important;
}

.header-desc .cart a {
  line-height: normal !important;
  height: auto !important;
}

.close-menu {
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 30;
  cursor: pointer;
}

.close-menu::after {
  content: "\f00d";
  font-family: FontAwesome;
  font-size: 28px;
}

.checkout-main .field {
  min-height: auto !important;
  border-radius: 0 !important;
  padding: 4px 8px !important;
}

.inner-order .row {
  margin: 0 !important;
}

.checkout-main .field input,
.checkout-main .field textarea {
  padding: 17px 26px 7px 0 !important;
}

.header-desc .categories-menu {
  border: none !important;
}

.categories-menu-sec {
  background: #f1f1f1;
}

.shipping-page-item__image {
  width: 0 !important;
}

.shipping-page-item__text {
  width: 100% !important;
}

.loginform_cont h1 {
  font-weight: 600 !important;
  margin: 0 0 20px 0;
}

.newcustomer_cont h2 {
  font-weight: 600;
  margin: 0 0 20px 0;
}

.loginpageL .loginform {
  padding: 10px;
}

.loginpageL .forgot_link>a {
  color: var(--red) !important;
}

.header-desc-rt .cart-sec,
.header-desc-rt .ssl-sec {
  display: inline-block;
  vertical-align: middle;
  float: none !important;
}

.header-top .row {
  margin: 0 !important;
}

.cart .count_item:hover {
  transform: translateY(-10px);
}

/************** rajan  ***********/

.product-item .wrap-img .discount::before {
  content: "PRIX VIP" !important;
}

.glyphicon-paperclip::before {
  content: "\f0c6";
  font-family: "FontAwesome";
  font-size: 22px;
}

.fileinput-button {
  width: 40px !important;
  padding: 0 0px !important;
  border: none !important;
  text-align: center !important;
  background: var(--red) !important;
  position: relative !important;
  display: inline-block !important;
  color: #fff !important;
}

.single-product .view_cart {
  text-align: left !important;
  color: var(--red) !important;
}

.single-product .product-main .product-info .head {
  font-weight: 600 !important;
}

.single-product .product-price .salePrice .value {
  color: var(--red) !important;
}

.product-actions .btn.addCart {
  height: auto !important;
  text-transform: uppercase !important;
  background-color: var(--red) !important;
  padding: 14px 12px !important;
}

.single-product .product-price .youSave .save {
  color: var(--red) !important;
}

.product-actions .btn.addCart:hover {
  background-color: #f36b1c !important;
}

.header-desc .search-post.is-focus button,
.header-desc .search-post.is-not-empty button {
  left: auto !important;
  right: 25px !important;
}

.header-desc-rt .cart-sec {
  margin: 0 0 0 35px;
}

.cart-sidenav .cart-footer .item-cart a.btn-proceed {
  background-color: var(--red) !important;
}

.cart-sidenav .cart-footer .item-cart a.btn-proceed:hover {
  background-color: #f36b1c !important;
}

.setting-product-active {
  background-color: #f36b1c !important;
}

.single-product .product-main .product-meta .meta .m-row .value .meta-item {
  font-size: 12px !important;
  height: auto !important;
}

.form-control {
  border-radius: 0 !important;
}

.single-product button.submit-review {
  border-radius: 0 !important;
}

.fileinput-button {
  border-radius: 0 !important;
}

.searchresults .btn-bord {
  font-weight: 600 !important;
  text-transform: uppercase !important;
  background: var(--red) !important;
  border-radius: 0 !important;
  border: none !important;
}

.searchresults .btn-bord:hover {
  background-color: #f36b1c !important;
}

.checkout-main .move-box .btn-checkout {
  background: var(--red) !important;
  border-radius: 0 !important;
}

.checkout-main .move-box .btn-checkout:hover {
  background: #f36b1c !important;
}

/****/

.media-box {
  display: none;
}

.page-contact .col-md-60 .col-xs-60.pull-left {
  display: none !important;
}

.page-contact .col-md-60 .col-xs-60.pull-right {
  float: left !important;
  margin: 0px !important;
}


#feedback-mobile {
  display: none;
}



/************* 15-july-2021  ***************/
.scraped-container {
  width: 100% !important;
  max-width: 1200px !important;
  padding: 0 10px !important;
}

.product-item .woo_item_link {
  border: 5px solid var(--product-bg) !important;

  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.product-item .woo_item_content {
  background-color: var(--product-bg);
  border-radius: 15px;
  bottom: -52px;
}

.product-item .title {
  font-size: clamp(16px, 2.5vw, 24px) !important;
  font-weight: 600 !important;
  font-family: 'Auro' !important;
  line-height: normal !important;
  text-align: center;
}

.product-item {
  background: none !important;
}

.product-item .woo_item_link:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: var(--mildblue);
  opacity: 0;
  transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
  -webkit-transition: all linear .3s;
}

.product-item .woo_item_link:hover:after {
  opacity: .8;
}

.product-item:hover .title {
  display: none;
}

.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-item a,
.product-item a:hover .woo_item_content .buy_now_div {
  position: relative;
  z-index: 2;
}

.product-item .buy_now_btn {
  border-radius: 30px;
  padding: 12px 36px !important;
  background: #fff !important;
  color: var(--black) !important;
  font-family: 'Auro' !important;
}

.product-item .buy_now_btn span::before {
  display: none !important;
}

.product-item .wrap-img .discount {
  z-index: 2;
}

.category-header:after {
  display: none !important;
}

.h1cont h1,
.h1cont span {
  display: inline-block;
  vertical-align: middle;
  font-size: 22px;
  font-family: 'Auro' !important;
}

.category-header {
  margin-bottom: 0 !important;
}

.twistedtext,
.category-header .select>span {
  font-family: 'Auro' !important;
}

.woo_item_link:hover .product-item .woo_item_content {
  padding: 60px 0 15px 0 !important;
}

.product-item:hover .buy_now_div {
  top: -110px;
  position: absolute;
  left: 0;
  width: 100%;
}

.product-item:hover .woo_item_content {
  padding-top: 80px;
}

.product-item .price .old,
.product-item .price .sale {
  font-family: 'Auro' !important;
  color: var(--black) !important;
}

.scraped-container_features_widget_main {
  background: var(--mildblue);
  display: flex;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  margin: 0 !important;
}

.scraped-container_features_widget_main>.scraped-container {
  padding: 20px 0 0px 0 !important;
}

.scraped-container_features_widget_main .feature-text {
  width: 100%;
  font-family: 'Auro' !important;
}

.scraped-container_features_widget_main .feature-item {
  display: inline-block !important;
  background: none !important;
}

.scraped-container_features_widget_main .features div .img-feat {
  min-width: 100% !important;
  color: var(--black);
  margin: 0 !important;
}

.scraped-container_features_widget_main .p-heading .p-title {
  padding: 0 30px !important;
  text-transform: inherit;
  color: var(--black) !important;
  font-family: 'Auro' !important;
  font-size: 28px !important;
}

.scraped-container_features_widget_main .p-heading::before {
  display: none !important;
}

.scraped-container_features_widget_main .p-heading .p-title::after {
  display: none !important;
}

.scraped-container_features_widget_main .feature-text .text-feat {
  color: var(--black) !important;
  font-family: 'Auro' !important;
  font-size: clamp(16px, 3vw, 22px) !important;
  text-transform: capitalize !important;
}

.scraped-container_features_widget_main .feature-text .text-feat span {
  text-transform: uppercase;
}

.scraped-container_features_widget_main .feature-text .text-feat b {
  color: var(--black) !important;
}

.scraped-container_features_widget_main .features p {
  font-size: 15px !important;
  line-height: 1.4;
  color: var(--black);
  font-weight: 500;
  font-family: 'Auro' !important;
  text-align: left;
}

.scraped-container_features_widget_main .p-heading .p-title span {
  font-weight: bold !important;
}

.single_slide .item .itembgr {
  border-radius: 15px;
}

.single-product .product-main .product-actions .btn.addCart {
  border-radius: 30px !important;
  background: var(--red) !important;
  text-align: center;
}

.single-product .product-main .product-actions .btn.addCart span {
  margin: 0 auto;
}

/* .single-product .product-main .product-actions .btn.addCart:hover {
  background: var(--mildblue) !important;
  border-color:var(--mildblue) !important;
} */
.single-product .product-main .product-actions .btn.addCart span {
  color: var(--black) !important;
  font-family: 'Auro' !important;
  font-weight: bold;
}

.single-product .product-main .product-quantity .form-control {
  border: none !important;
}

.single-product .product-main .product-quantity .btn {
  border-radius: 50% !important;
  box-shadow: 0 0 10px #E8E8E8;
  border: none !important;
}

.single-product .product-main .product-quantity .input-group-quantity {
  padding: 7px 10px;
  border-radius: 50px;
  box-shadow: 0 0 10px #D8D8D8;
}

.single_slide .item .itembgr {
  padding: 0;
}

.single-product .product-main .product-info .head {
  font-family: 'Auro' !important;
  color: var(--black);
}

.stars {
  display: block !important;
}

.single-product .product-main .product-rate {
  font-family: 'Auro' !important;
  color: var(--black) !important;
}

.single-product .product-main .product-rate .orders {
  font-family: 'Auro' !important;
}

.single-product .product-price .salePrice .value {
  font-family: 'Auro' !important;
  color: var(--black) !important;
}

.youSave span.name {
  color: var(--red) !important;
}

.single-product .product-price .youSave .save {
  color: var(--black) !important;
}

.youSave {
  font-family: 'Auro' !important;
}

.single-product .product-price {
  border: none !important;
}

.single-product .product-main .product-meta .meta .m-row.sku-text .name {
  font-family: 'Auro' !important;
  color: var(--black) !important;
}

.single-product .product-main .product-meta .meta .m-row .value .meta-item {
  font-family: 'Auro' !important;
}

.single-product .product-main .product-meta .meta .m-row .name {
  font-family: 'Auro' !important;
}

.product-content .row {
  border: 1px solid #ddd !important;
  padding: 20px 40px;
}

.tab_bodies {
  border: none !important;
  padding: 0 !important;
}

tab_heads {
  border: none !important;
}

.tab_head {
  position: relative !important;
  border: none !important;
  background: none !important;
  padding: 0 10px !important;
  font-size: 19px !important;
}

.tab_head.active:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 50%;
  border-radius: 10px;
  background: var(--red);
  transition: 0.3s ease;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.single-product .product-content .tab-body {
  margin: 0px 0 20px 0;
}

.tabs_content_single_page {
  border: 2px solid var(--mildblue) !important;
  border-radius: 20px;
  padding: 40px;
  margin: 0 0 30px 0;
}

.custproductdtl .pr-breadcrumbs {
  position: relative;
}

.custproductdtl .pr-breadcrumbs:after {
  content: "";
  background: url("https://assets.checkoutchamp.com/Funnel/assets/images/399da7c5-0923-493a-8d72-25b12f3a6d3b/b525bba6-07e9-4517-ad8f-9ae7f26ed590/orangefootprint.png");
  position: absolute;
  right: 0;
  top: 0;
  background-repeat: no-repeat;
  background-size: contain;
  width: 250px;
  height: 250px;
}

.tabs_content_single_page {
  position: relative;
}

.tabs_content_single_page:before {
  content: "";
  background: url("https://assets.checkoutchamp.com/Funnel/assets/images/399da7c5-0923-493a-8d72-25b12f3a6d3b/b525bba6-07e9-4517-ad8f-9ae7f26ed590/bluefootprint.png");
  position: absolute;
  left: -120px;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: contain;
  width: 250px;
  height: 250px;
}

.single-product .product-content .content img {
  width: 19%;
  display: inline-block;
  padding: 6px;
  margin: 0 1% 1% 0;
}

.custproductdtl .single_showroom {
  margin: 0 5px 0 60px;
}

/* .scraped-container_features_widget_main .p-title {
  color: var(--black) !important;
  font-family: 'Auro' !important;
  font-size: 28px !important;
  text-transform: inherit !important;
} */
.scraped-container_features_widget_main .feature-item {
  padding-right: 130px;
}

.single-product .p-heading:before {
  display: none !important;
}

.single-product .aship-title:after {
  display: none !important;
}

.aship-box-products.list-product.related-products .aship-title {
  color: var(--black) !important;
  font-family: 'Auro' !important;
  font-size: 28px !important;
  text-transform: inherit !important;
}

.custcontact {
  display: flex;
  width: 100%;
  margin: 0 0 40px 0;
}

.custcontactLft {
  width: 50%;
}

.custcontactRt {
  width: 50%;
}

.custcontactLfttxt {
  width: 50%;
}

.custcontactLfttxt p {
  font-size: 18px !important;
  line-height: 27px !important;
  color: var(--black) !important;
  font-family: 'Auro' !important;
  font-weight: bold;
}

.custcontacttxt {
  margin: 0 0 30px 0;
  position: relative;
}

.custcontacttxt:after {
  content: "";
  background: url("https://assets.checkoutchamp.com/Funnel/assets/images/399da7c5-0923-493a-8d72-25b12f3a6d3b/b525bba6-07e9-4517-ad8f-9ae7f26ed590/bluefootprint.png");
  position: absolute;
  right: -120px;
  bottom: -70px;
  background-repeat: no-repeat;
  background-size: contain;
  width: 250px;
  height: 250px;
}

.custcontacttxt p {
  font-size: 16px !important;
  line-height: 26px !important;
  color: var(--black) !important;
  font-family: 'Auro' !important;
  font-weight: bold;
}

.custcontactLfttxt .bon__btn {
  margin: 90px 0 0 0;
}

.custcontact .bon__btn {
  padding: 12px 60px;
}

.contformrow {
  width: 100%;
  margin: 0 0 10px 0;
}

.contformcol {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
}

.contformcolinput {
  width: 90%;
  margin: 0 0 10px 0;
}

.contformrow input,
.contformcolinput input,
.contformrow textarea {
  padding: 10px;
  font-size: 15px;
  border: 2px solid #bdbdbd;
  border-radius: 20px;
  width: 100%;
  resize: none;
}

.custcontactLft .p-heading-page .p-title {
  width: 100%;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
  font-family: 'Auro' !important;
  color: var(--black);
}

.formbtnrow {
  width: 100%;
  margin: 40px 0 0 0;
}

.formbtnrow .bon__btn {
  border: none;
}

.page-content .content p {
  color: var(--black) !important;
}

.textcont {
  color: var(--black);
  font-weight: bold;
}

.custtble {
  border: 2px solid var(--black);
  border-radius: 20px;
  overflow: hidden !important;
  margin: 0 0 10px 0;
}

.custtble table th,
.custtble table td {
  padding: 10px !important;
}

.delaitxt {
  color: #9d9d9d !important;
}

.delaitxt {
  position: relative;
}

.delaitxt:after {
  content: "";
  background: url("https://assets.checkoutchamp.com/Funnel/assets/images/399da7c5-0923-493a-8d72-25b12f3a6d3b/b525bba6-07e9-4517-ad8f-9ae7f26ed590/bluefootprint.png");
  position: absolute;
  right: 150%;
  bottom: -70px;
  background-repeat: no-repeat;
  background-size: contain;
  width: 250px;
  height: 250px;
}

.p-heading .aship-title.p-title {
  color: var(--black) !important;
  font-family: 'Auro' !important;
  font-size: 28px !important;
  text-transform: inherit !important;
  border: none !important;
}

.faqmain {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.faqlft {
  width: 100%;
}

.faqlft .heading_div .header_title {
  font-size: clamp(20px, 5vw, 22px);
  line-height: 1.1;
  font-weight: 700;
  text-transform: capitalize;
  font-family: 'Auro' !important;
  color: var(--black);
  position: relative;
  z-index: 0;
  display: inline-block;
}

.faqlft .heading_div .header_title::after {
  content: '';
  position: absolute;
  width: 110%;
  height: 50%;
  border-radius: 10px;
  background: var(--red);
  transition: 0.3s ease;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.faqlft .mainproul h3::after {
  display: none;
}

.faqlft .mainproul a {
  margin: 0 !important;
}

.faqlft .mainproul h3 {
  margin: 0 !important;
}

.faqlft .mainproul a h3,
#faqs_accordion a h3 {
  border: 1px solid var(--black);
  padding: 8px 18px;
  border-radius: 30px;
  color: var(--black);
  width: 100% !important;
}

.mainproul .answer {
  padding: 0 20px;
}

.faqRT {
  width: 100%;
  padding: 0 0 0 10%;
}

.faqlft>h2 {
  font-size: clamp(20px, 5vw, 22px);
  line-height: 1.1;
  font-weight: 700;
  text-transform: capitalize;
  font-family: 'Auro' !important;
  color: var(--black);
  position: relative;
  z-index: 0;
  display: inline-block;
}

.faqRTmain {
  margin: 80px 0 0 0;
}

@media (min-width: 100px) and (max-width: 767px) {
  .scraped-container_features_widget_main .feature-item {
    padding-left: 50px;
    padding-right: 50px;
  }

  .ttgallery_cont .ttgallery .item {
    text-align: center;
  }

  .ttgallery_cont .ttgallery .item .img-featMain {
    float: none;
    display: inline-block;
  }

  .scraped-container_features_widget_main .feature-text {
    text-align: center;
  }

  .scraped-container_features_widget_main .features div .img-feat {
    text-align: center;
  }

  .scraped-container_features_widget_main .p-heading .p-title {
    width: 100%;
    text-align: center;
  }

  #form_singleProduct {
    text-align: center;
  }

  .sharePopup,
  .sharePopup .jssocials-shares {
    justify-content: center !important;
  }

  .custcontact {
    flex-wrap: wrap;
  }

  .custcontactLft,
  .custcontactRt {
    width: 100%;
  }

  .custcontactLfttxt {
    width: 100%;
  }

  .custcontactLfttxt .bon__btn {
    margin: 10px 0 50px 0;
  }

}

@media (min-width: 768px) and (max-width: 991px) {
  .scraped-container_features_widget_main .feature-item {
    padding-right: 30px;
  }

  .custcontactLfttxt {
    width: 100%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .custcontactLfttxt {
    width: 70%;
  }
}
