.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(255 255 255 / 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

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

.content-wrapper {
  overflow-x: hidden;
}

.plp-banner {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-color: #d8031d;
}

.plp-banner-text {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.banner-text-in h1 {
  font-size: 16vw;
  text-align: justify;
}

.plp-banner-content {
  position: absolute;
  top: 100vh;
  width: 100%;
  z-index: 5;
}

.plpbc-in {
  display: flex;
  justify-content: space-between;
  z-index: 5;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.bc-left,
.bc-right {
  flex: 1;
  padding: 20px;
  height: 100vh;
}

.bc-left .bcl-top {
  background-color: #111;
  padding: 16px 20px;
  margin-bottom: 8px;
  width: max-content;
}

.bc-left .bcl-bottom {
  background-color: #111;
  padding: 16px 20px;
  display: block;
  margin-left: auto;
  width: max-content;
}

.bc-left p {
  font-size: 16px;
  color: #fff;
  letter-spacing: 1px;
}

.bc-left .bcl-bottom p {
  max-width: 42ch;
  font-size: 14px;
  line-height: 21px;
}

.bclb-cta {
  margin-top: 30px;
}

.bclb-cta a {
  font-weight: 500;
  text-transform: capitalize;
  text-decoration: underline;
  color: #fff;
}

.bcright-image {
  width: 40%;
  margin-left: auto;
}

.bc-right img {
  width: 100%;
  object-fit: cover;
}

.padding {
  padding: 60px 0;
}

.custom-container {
  max-width: 1280px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}

.custom-container.big {
  max-width: 1380px;
}

.heading {
  margin-bottom: 80px;
}

.heading.center {
  text-align: center;
}

.heading h4 {
  font-size: 40px;
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.smt-sec {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.smt-sec .smt-item {
  display: flex;
  flex-direction: column;
  gap: 35px;
  align-items: center;
}

.smt-item .smti-icon {
  width: 48px;
  height: 48px;
}

.smt-item .smti-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.smti-text .smtit-head {
  margin-bottom: 13px;
  text-align: center;
}

.smtit-head h5 {
  font-weight: 500;
  font-size: 18px;
  color: #111;
}

.smtit-para p {
  max-width: 28ch;
  text-align: center;
  font-size: 14px;
  line-height: 21px;
  color: #4f4f4f;
}

.ticker-wrap {
  height: 120px;
}

.ticker-wrap .sp-ticker {
  z-index: 2;
}

.ticker-wrap .sp-ticker-wrapper {
  gap: 10px;
  background-color: #161616;
}

.ticker-wrap .sp-ticker-wrapper .sp-ticker-container {
  gap: 10px;
}

.ticker-wrap .sp-ticker {
  transform: rotate(-3.78deg);
  transform-origin: 70%;
}

.ticker-wrap .sp-ticker.spticker {
  transform: rotate(0.49deg);
  transform-origin: 170%;
}

.ticker-wrap .sp-ticker-item p {
  color: #e4e4e4;
  font-size: 18px;
  font-weight: 300;
}

.new-testimonials {
  background-color: #d8031d;
  padding: 120px 0;
}

.scroller {
  max-width: 100%;
  overflow: hidden;
}

.scroller__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 70px;
}

.tag-list .scroll-item {
  padding: 1rem;
  text-align: center;
}

.scroll-item .item-content {
  margin-top: 12px;
}

.ic-text p {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  max-width: 20ch;
  text-align: center;
}

.ic-name {
  margin-top: 40px;
}

.ic-name p {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  color: #f8cfd4;
  text-transform: uppercase;
  text-align: center;
}

.scroller[data-animated="true"] .scroller__inner {
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
  animation-play-state: running;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-animation: scroll var(--_animation-duration, 40s)
    var(--_animation-direction, forwards) linear infinite;
  animation: scroll var(--_animation-duration, 40s)
    var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-animated="true"] .scroller__inner:hover {
  animation-play-state: paused !important;
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 60s;
}

@-webkit-keyframes scroll {
  to {
    -webkit-transform: translate(calc(-50% - 0.5rem));
    transform: translate(calc(-50% - 0.5rem));
  }
}

@keyframes scroll {
  to {
    -webkit-transform: translate(calc(-50% - 0.5rem));
    transform: translate(calc(-50% - 0.5rem));
  }
}

.bestseller {
  background-color: #111;
  padding: 64px 0;
  position: relative;
}

.bs-tag {
  position: absolute;
  border-top-left-radius: 46px;
  border-bottom-left-radius: 46px;
  padding: 16px 29px;
  top: 26px;
  right: 0;
  background-color: #262626;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 3px;
}

.bestsel-in {
  display: flex;
  align-items: center;
}

.bestsel-in .bs-left {
  width: 52%;
}

.bestsel-in .bs-right {
  width: 45%;
}

.bestsel-in .bs-left .bsl-image {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.bsl-image .bslimg-box {
  aspect-ratio: 3/2;
  overflow: hidden;
}

.bsl-image .bslimg-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bs-right .bsright-in {
  width: 80%;
  margin-left: auto;
}

.bsr-data .bsrdata-head h4 {
  font-weight: 350;
  font-size: 48px;
  color: #fff;
}

.bsr-data .bsrdata-content p {
  color: #d1d1d1;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 1px;
  margin-top: 27px;
}

.bsr-data .bsrdata-content ul li {
  position: relative;
  color: #d1d1d1;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 1px;
  padding-left: 10px;
}

.bsr-data .bsrdata-content ul {
  list-style: none;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.bsr-data .bsrdata-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background-color: #d8031d;
  border-radius: 50%;
}

.bsrdata-button {
  margin-top: 50px;
}

.bsrdata-button .custom-button {
  padding: 14px 30px;
  display: block;
  background-color: #fff;
  color: #111;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
  transition: 0.2s ease all;
}

.bsrdata-button .custom-button:hover {
  background-color: #d8031d;
  color: #fff;
}

.pltabwrap-in .pl-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pl-tabs .pltablinks {
  padding: 10px 15px;
  font-weight: 400;
  font-size: 14px;
  color: #111;
  transition: 0.2s ease all;
  background-color: #e8e8e8;
  border-radius: 46px;
}

.pl-tabs .pltablinks.active {
  position: relative;
  background-color: #111;
  color: #fff;
  padding-left: 28px;
}

.pl-tabs .pltablinks.active::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 13px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #d8031d;
}

.pltabs-data {
  margin-top: 38px;
}

.pltabs-data .tabscontent {
  padding: 0;
}

.pltabs-data .pltab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 23px;
  width: 100%;
}

.pltgrid-item {
  background-color: #f2f2f2;
  padding: 13px;
  position: relative;
  padding-bottom: 80px;
}

.pltgrid-item .bs-tag {
  padding: 10px 20px;
  font-size: 11px;
  right: 13px;
}

.pltgrid-item .plgi-in {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.plgi-in .plgi-image {
  aspect-ratio: 6/5;
  overflow: hidden;
}

.plgi-in .plgi-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plgi-content .product-description {
  margin-top: 10px;
}

.pltgrid-item .product-description p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.productlist.padding {
  padding-top: 100px;
  padding-bottom: 80px;
}

.productlist .heading h4 {
  opacity: 0;
  transform: translateY(100%);
  transition: 0.6s ease all;
}

.productlist .heading.in-viewport h4,
.productlist .heading.was-in-viewport h4 {
  opacity: 1;
  transform: translateY(0%);
}

.plgic-stars img {
  width: 65px;
  height: auto;
}

.plgic-title {
  font-weight: 450;
  font-size: 26px;
  color: #111;
  margin-top: 2px;
}

.plgic-price {
  font-weight: 450;
  font-size: 20px;
  color: #111;
  margin-top: 16px;
}

.plgic-price span.screen-reader-text {
    display: none;
}

.plgic-button {
  margin-top: 32px;
  position: absolute;
  bottom: 13px;
  width: calc(100% - 26px);
  left: 13px;
}

.plgic-button .custom-button {
  padding: 14px 30px;
  display: block;
  background-color: #111;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
  transition: 0.2s ease all;
}

.plgic-button .custom-button:hover {
  background-color: #d8031d;
  color: #fff;
}

.pltabs-data .pagination {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pltabs-data .pagination .page-link {
  color: #6f6f6f;
  font-size: 18px;
  font-weight: 400;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease all;
}

.pltabs-data .pagination .page-link:hover {
  color: #d8031d;
}

.pltabs-data .pagination .page-link.active {
  background-color: #d8031d;
  color: #fff;
}

.whybuy {
  padding: 150px 0;
  background-color: #d8031d;
}

.whybuy .whybuy-in {
  text-align: center;
}

.whybuy-in .wbi-top {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(100%);
  transition: 0.6s ease all;
}

.whybuy-in .wbi-top.in-viewport,
.whybuy-in .wbi-top.was-in-viewport {
  opacity: 1;
  transform: translateY(0%);
}

.whybuy-in .wbi-bottom h4 {
  text-align: center;
  font-weight: 400;
  font-size: 40px;
  color: #fff;
  max-width: 41ch;
  letter-spacing: 0;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(100%);
  transition: 0.6s ease all;
}

.whybuy-in .wbi-bottom.in-viewport h4,
.whybuy-in .wbi-bottom.was-in-viewport h4 {
  opacity: 1;
  transform: translateY(0%);
}

.faq-section {
  padding-top: 100px;

}

.sp-faqsec {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

.sp-faqsec .spfaq-left {
  position: sticky;
  top: 10vh;
  padding-bottom: 45vh;
  width: 30%;
}

.sp-faqsec .spfaq-right {
  position: relative;
  z-index: 8;
  width: 65%;
  padding-top: 70px;
}

.spfaq-left .heading h4 {
  opacity: 0;
  transform: translateY(100%);
  transition: 0.6s ease all;
}

.spfaq-left .heading.in-viewport h4,
.spfaq-left .heading.was-in-viewport h4 {
  opacity: 1;
  transform: translateY(0%);
}

.faq-wrap .faq-accordian > ul > li {
  box-shadow: none;
  border: none;
  border-bottom: 1px solid #d5d5d5;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-radius: 0;
}

.faq-accordian ul li a.toggle .sign {
  position: absolute;
  right: 18px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #d8031d;
  top: 1px;
  background-image: none;
  content: "&#43;";
}

.faq-accordian ul li a.toggle .sign::before {
  position: absolute;
  content: "+";
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 300;
  font-size: 22px;
}

.faq-accordian ul li.active a.toggle .sign::before {
  content: "-";
}

.faq-wrap .faq-accordian ul li a.toggle {
  font-weight: 450;
  font-size: 20px;
  padding: 0;
  padding-left: 18px;
}

.faq-wrap .faq-accordian ul .inner p {
  padding: 0 120px 20px 20px;
  font-size: 16px;
  color: #717171;
  line-height: 24px;
  letter-spacing: 1px;
}

.faq-wrap .faq-accordian ul .inner p:last-child {
  padding-bottom: 0;
}

.tools {
  padding: 80px 0;
  background-color: #111;
}

.tools-heading h4 {
  color: #fff;
  font-weight: 350;
  font-size: 36px;
  line-height: 43px;
  max-width: 29ch;
}

.benefitsbox-wrap {
  margin-top: 60px;
  width: 70%;
  margin-left: auto;
}

.benefitsbox-wrap .benefitBoxes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
}

.benefitBoxes .benefit-item {
  background-color: #212020;
  padding: 20px 20px 30px 20px;
}

.benefit-item .bi-in {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.bi-in .bii-top {
  display: flex;
  align-items: center;
}

.bii-top .biit-icon {
  width: 57px;
  height: 57px;
}

.bii-top .biit-icon img {
  width: 100%;
}

.biit-text p {
  color: #fff;
  font-size: 18px;
  font-weight: 450;
  line-height: 23px;
}

.bii-bottom p {
  color: #e3e3e3;
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 1px;
}

.smtime .heading h4 {
  opacity: 0;
  transform: translateY(100%);
  transition: 0.6s ease all;
}

.smtime .heading h4 {
  opacity: 0;
  transform: translateY(100%);
  transition: 0.6s ease all;
}

.smtime .heading.in-viewport h4,
.smtime .heading.was-in-viewport h4 {
  opacity: 1;
  transform: translateY(0%);
}

.pdp-banner {
  padding-top: 125px;
  padding-bottom: 100px;
}

.pdp-container {
  padding: 0 62px;
}

.pdpban-in {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.pdpbanleft-images {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pdpbanleft-images .item-image {
  width: 100%;
  overflow: hidden;
}

.pdpbanleft-images img {
  width: 100%;
  height: auto;
}

.pdpbanleft-images video {
  width: 100%;
  height: auto;
}

.pdpban-right .pdpbanright-in {
  position: sticky;
  top: 125px;
  left: 0;
}

.pdpbanright-in .star-ratings {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.star-ratings .sr-stars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3px;
}

.sr-stars .star-item {
  display: flex;
}

.sr-stars .star-item img {
  width: 16px;
  height: 16px;
}

.review-count p {
  color: #717171;
  font-weight: 300;
  font-size: 14px;
}

.pdpbanright-in .product-name {
  position: relative;
  margin-top: 18px;
  margin-bottom: 30px;
}

.pdpbanright-in .product-name h4 {
  font-weight: 350;
  font-size: 36px;
  color: #111;
  line-height: 40px;
  max-width: calc(100% - 110px);
}

.pdpbanright-in .pprice,
.pdpbanright-in .price {
  font-weight: 350;
  font-size: 32px;
  color: #111;
  line-height: 40px;
  /* position: absolute;
    right: 0;
    top: 0 */
  margin-top: 16px;
}

.pdpbanright-in .product-description p {
  color: #3b3b3b;
  font-weight: 300;
  font-size: 16px;
  max-width: 53ch;
}

.cart-form .license-select {
  margin-top: 55px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 17px;
}

.license-select > p {
  color: #717171;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.license-select .license-item-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.license-item-wrap .license-item {
  padding: 4px 10px 6px 10px;
  border: 1px solid #fff0;
  transition: 0.2s ease all;
}

.license-item-wrap .license-item input {
  visibility: hidden;
  width: 0;
  height: 0;
}

.license-item-wrap .license-item:has(input:checked) {
  border-color: #111;
}

.license-item label {
  color: #111;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
}

.form-cart-button {
  margin-top: 20px;
}

.form-cart-button .custom-button {
  padding: 14px 30px;
  display: block;
  background-color: #111;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
  transition: 0.2s ease all;
  border: none;
  width: 50%;
}

.form-cart-button .custom-button:hover {
  background-color: #d8031d;
  color: #fff;
}

.pdpbanright-in .whygetit {
  margin-top: 55px;
}

.whygetit p.whyget-head {
  font-weight: 450;
  font-size: 16px;
  color: #111;
  line-height: 20px;
  letter-spacing: 0;
}

.whygetit ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 9px;
  margin-top: 16px;
}

.whygetit ul li {
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 1px;
  position: relative;
  padding-left: 12px;
}

.whygetit ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background-color: #111;
  border-radius: 50%;
}

.product-faq {
  margin-top: 46px;
}

.product-faq .faq-accordian > ul > li {
  box-shadow: none;
  border: none;
  margin-bottom: 30px;
  border-radius: 0;
}

.product-faq .faq-accordian ul li a.toggle .sign {
  position: absolute;
  right: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #111;
  top: 0;
  background-image: none;
  content: "&#43;";
}

.product-faq .faq-accordian ul li a.toggle .sign::before {
  position: absolute;
  content: "+";
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-weight: 300;
  font-size: 22px;
}

.product-faq .faq-accordian ul li.active a.toggle .sign::before {
  content: "-";
}

.product-faq .faq-accordian ul li a.toggle {
  font-weight: 450;
  font-size: 20px;
  padding: 0;
  padding-left: 0;
  padding-right: 60px;
}

.product-faq .faq-accordian ul .inner p {
  padding: 0 75px 20px 20px;
  font-size: 14px;
  font-weight: 300;
  color: #3b3b3b;
  line-height: 21px;
  letter-spacing: 1px;
}

.product-faq .faq-accordian ul .inner p:last-child {
  padding-bottom: 0;
}

.product-faq .faq-accordian ul .inner ul {
  padding: 0 75px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
}

.product-faq .faq-accordian ul .inner ul li {
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 1px;
  position: relative;
  padding-left: 12px;
}

.product-faq .faq-accordian ul .inner ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background-color: #111;
  border-radius: 50%;
}

.product-faq .faq-accordian ul .inner p b {
  font-weight: 400;
  font-size: 14px;
  color: #111;
}
.product-faq .faq-accordian ul .inner p strong {
  font-weight: 600;
  font-size: 14px;
  color: #111;
}

.whatpeoplesay {
  padding: 80px 0 150px 0;
}

.whatpeoplesay .heading {
  margin-bottom: 50px;
}

.say-ticker .sp-ticker {
  transform: none;
  bottom: auto;
  left: auto;
  width: 100%;
}

.say-ticker .sp-ticker-wrapper {
  gap: 10px;
}

.say-ticker .sp-ticker-wrapper:hover .say-ticker .sp-ticker-container {
  animation-play-state: paused !important;
}

.sayticker-right .sp-ticker .sp-ticker-container {
  animation-duration: 100s;
  gap: 10px;
}

.sayticker-left .sp-ticker .sp-ticker-container {
  -webkit-animation: ticker-animation 100s linear infinite reverse;
  animation: ticker-animation 100s linear infinite reverse;
  gap: 10px;
}

.say-ticker .sp-ticker-wrapper:hover .sp-ticker-container {
  animation-play-state: paused !important;
}

.say-ticker .sp-ticker-container .sp-ticker-item:nth-child(4n + 1) .ticker-box {
  background-color: #f3f3f3;
}

.say-ticker .sp-ticker-container .sp-ticker-item:nth-child(4n + 2) .ticker-box {
  background-color: #232323;
}

.say-ticker .sp-ticker-container .sp-ticker-item:nth-child(4n + 3) .ticker-box {
  background-color: #b1b0b0;
}

.say-ticker .sp-ticker-container .sp-ticker-item:nth-child(4n + 4) .ticker-box {
  background-color: #000;
}

.ticker-box {
  padding: 20px 28px;
  height: 100%;
  box-sizing: border-box;
}

.ticker-box .tickerbox-in {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px;
  height: 100%;
}

.say-ticker
  .sp-ticker-container
  .sp-ticker-item:nth-child(4n + 1)
  .ticker-box
  .tb-data
  p {
  color: #111;
}

.ticker-box .tb-data p {
  color: #fff;
  white-space: normal;
  font-size: 16px;
  line-height: 25px;
  max-width: 45ch;
}

.say-ticker .sp-ticker-container {
  padding: 6px 0;
}

.say-ticker .redbox {
  height: 0;
  padding-top: 100%;
  width: 270px;
  background-color: #d8031d;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.say-ticker .redbox img {
  width: 75px;
  height: 76px;
  max-width: inherit;
  max-height: inherit;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.tb-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.tb-user .tbuser-name {
  font-weight: 600;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3.12px;
}

.say-ticker
  .sp-ticker-container
  .sp-ticker-item:nth-child(4n + 1)
  .tb-user
  .tbuser-name {
  color: #3b3b3b;
}

.tb-user .tb-star .sr-stars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
}

.bestsel-in .bs-left .bsl-image.single {
  grid-template-columns: 1fr;
}

.forsingle .bestsel-in .bs-left {
  width: 50%;
}

.bsr-data .cart-form .license-select {
  margin-top: 80px;
}

.bsr-data .license-select > p {
  color: #d1d1d1;
}

.bsr-data .license-item-wrap .license-item:has(input:checked) {
  border-color: #fff;
}

.bsr-data .license-item label {
  color: #fff;
}

.also-like {
  padding: 150px 0;
  padding-top: 0;
}

.also-like .alsolike-grid-wrap {
  padding: 0 62px;
}

.also-like .pltab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 23px;
  width: 100%;
}

.pdpbanleft.slider {
  display: none;
}

.reviews-wrap {
  margin-top: 40px;
}

#reviews #comments {
  display: none;
}

#review_form_wrapper #reply-title {
  display: block;
  text-align: center;
  font-size: 30px;
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  line-height: 108%;
  letter-spacing: -1px;
  font-family: var(--aspekta);
}

.comment-respond .comment-notes {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  flex-wrap: wrap;
}

.comment-form {
  width: 40%;
  margin: 0 auto;
}

.comment-form-rating {
  text-align: center;
  margin-top: 30px;
}

.comment-form label {
  font-weight: 500;
  font-size: 16px;
  display: block;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 8px;
}

.comment-form input,
.comment-form textarea {
  display: block;
  width: calc(100% - 12px);
  border: none;
  padding: 9px 6px;
  border-bottom: 1px solid #3a3a3a;
  outline: none;
}

.comment-form textarea {
  resize: vertical;
  max-height: 15px;
  min-height: 15px;
}

.comment-form-rating .stars {
  margin-top: 8px;
}

.comment-form-rating .stars span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.comment-form-rating .stars span a {
  width: 20px;
  height: 20px;
  border: 1px solid #d7d7d7;
  text-align: center;
  background-color: #f2f2f2;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease all;
}

.comment-form-rating .stars span a.active {
  background-color: #d8031d;
  color: #fff;
}

.comment-form-cookies-consent {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 15px;
}

.comment-form-cookies-consent input {
  display: inline-flex;
  width: auto;
  padding: 0;
  margin-top: 5px;
}

.comment-form-cookies-consent label {
  margin: 0;
  text-align: left;
  font-size: 14px;
  font-weight: 400;
}

.aiowps-captcha-equation strong {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  margin-bottom: 20px;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.comment-form .form-submit input {
  border-bottom: none;
  padding: 14px 30px;
  display: block;
  background-color: #111;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
  transition: 0.2s ease all;
  width: 100%;
}

.comment-form .form-submit input:hover {
  background-color: #d8031d;
  color: #fff;
}

.cart-form .summary {
  margin-top: 55px;
}

.variations .label {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  color: #717171;
  text-transform: uppercase;
}

.variations .value {
  margin-left: 18px;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.variations td.value label {
  padding: 6px 10px;
  color: #111;
  border: 1px solid #111;
  font-size: 12px;
  font-weight: 500;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.woocommerce-variation.single_variation {
  visibility: hidden;
  height: 0;
}

.woocommerce-variation-add-to-cart {
  margin-top: 28px;
}

.woocommerce-variation-add-to-cart .single_add_to_cart_button {
  padding: 14px 30px;
  display: block;
  background-color: #111;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
  transition: 0.2s ease all;
  outline: none;
  border: none;
  width: 50%;
}

.woocommerce-variation-add-to-cart .single_add_to_cart_button:hover {
  background-color: #d8031d;
  color: #fff;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  background-color: #111;
  border-top-color: #d8061d;
  color: #fff;
  outline: none;
  padding: 8px 50px 10px 50px;
  font-size: 14px;
}

.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
  top: 11px;
}

.woocommerce-message::before {
  color: #d8061d;
}

.woocommerce-info a {
  display: block;
  margin-top: 2px;
}

.wocom-pages {
  padding: 100px 0;
  background-color: #f8f7f7;
}

.wocom-pages .page-heading {
  margin-bottom: 30px;
  width: 60%;
}

.wocom-pages .page-heading h1 {
  font-size: 40px;
  line-height: 130%;
  color: inherit;
  text-align: left;
}

.wocom-start .woocommerce .woocommerce-flexwrap {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  position: relative;
  justify-content: space-between;
  /* min-height: 400px */
}

.wocom-start .woocommerce .woocommerce-notices-wrapper {
  width: 65%;
}

.wocom-start .woocommerce .woocommerce-cart-form {
  width: 60%;
  background-color: #fff;
  border-radius: 18px;
  -webkit-box-shadow: 0 0 12px 2px rgb(0 0 0 / 0.18);
  -moz-box-shadow: 0 0 12px 2px rgb(0 0 0 / 0.18);
  box-shadow: 0 0 12px 2px rgb(0 0 0 / 0.18);
  padding: 30px 30px;
  position: static !important;
}

.wocom-start .woocommerce .woocommerce-cart-form table.shop_table {
  border: none;
  margin-bottom: 0;
}

.woocommerce-cart-form table.shop_table tr th:nth-child(1) {
  width: 30px;
  padding: 0;
}

.woocommerce-cart-form table.shop_table tr td:nth-child(1) {
  width: 30px;
  padding: 0;
}

.woocommerce-cart-form table.shop_table .product-thumbnail {
  width: 100px;
}

.woocommerce-cart-form table.shop_table tbody tr:last-child {
  position: absolute;
  top: 0;
  right: 0;
  width: 25%;
  background: #fff;
  -webkit-box-shadow: 0 0 12px 2px rgb(0 0 0 / 0.18);
  -moz-box-shadow: 0 0 12px 2px rgb(0 0 0 / 0.18);
  box-shadow: 0 0 12px 2px rgb(0 0 0 / 0.18);
  padding: 30px 30px;
  border-radius: 18px;
  display: none;
}

.woocommerce-cart-form table.shop_table tbody tr:last-child td:nth-child(1) {
  display: table-row;
}

.upper_coupon_code .main_heading p {
  font-weight: 600;
  margin-bottom: 14px;
  font-size: 20px;
  letter-spacing: inherit;
}

.upper_coupon_code .main_text p {
  font-size: 14px;
  line-height: 150%;
}

.upper_coupon_code .coupon {
  width: 100%;
  position: relative;
}

.upper_coupon_code .coupon input {
  width: 100%;
  padding: 10px 20px;
}

.product-name a {
  max-width: 12ch;
  font-size: 16px;
  line-height: 130%;
}

.woocommerce-cart-form .quantity button {
  width: 24px;
  height: 24px;
  border: 1px solid #111;
  border-radius: 6px;
  background-color: #fff;
  transition: 0.2s ease all;
  font-size: 18px;
  line-height: 22px;
}

.woocommerce-cart-form .quantity button:hover {
  background-color: #111;
  color: #fff;
}

.woocommerce-cart-form .quantity input::-webkit-outer-spin-button,
.woocommerce-cart-form .quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.woocommerce-cart-form .quantity input.qty {
  width: 20px !important;
  border: none;
  text-align: center;
  font-size: 18px;
  line-height: 18px;
  outline: none;
}

.woocommerce-cart-form .coupon {
  margin-top: 20px;
  position: relative;
  float: none !important;
}

.woocommerce-cart-form .coupon .input-text {
  width: calc(100% - 30px) !important;
  padding: 10px 15px;
  border: 1px solid #c2c2c2;
  font-size: 14px;
  outline: none;
  border-radius: 2px;
}

.woocommerce-cart-form .coupon button.button {
  margin-top: 10px !important;
}

.woocommerce-cart-form table.shop_table tbody tr:last-child button.button {
  padding: 14px 30px;
  display: block;
  background-color: #111;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
  transition: 0.2s ease all;
  outline: none;
  border: none;
  width: 100%;
  margin-top: 30px;
}
.wocom-start .woocommerce {
  position: relative;
}
.wocom-start .woocommerce .cart-collaterals {
  width: 25%;
  background-color: #fff;
  border-radius: 18px;
  -webkit-box-shadow: 0 0 12px 2px rgb(0 0 0 / 0.18);
  -moz-box-shadow: 0 0 12px 2px rgb(0 0 0 / 0.18);
  box-shadow: 0 0 12px 2px rgb(0 0 0 / 0.18);
  padding: 30px 30px;
  /* margin-top: -30px; */
  margin-left: auto;
  position: absolute;
  top: 0px;
  right: 0;
}

.wocom-start .woocommerce .cart_totals {
  width: 100%;
  float: none;
}

.woocommerce .cart_totals h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
}

.wocom-start .woocommerce .wc-proceed-to-checkout .checkout-button {
  padding: 14px 30px;
  display: block;
  background-color: #111;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
  transition: 0.2s ease all;
  outline: none;
  border: none;
  width: calc(100% - 60px);
}

.wocom-start .woocommerce .wc-proceed-to-checkout .checkout-button:hover {
  background-color: var(--SP-RED, #d8031d);
}

.product-subtotal .woocommerce-Price-amount.amount {
  font-weight: 500;
  color: var(--SP-RED, #d8031d);
}

#customer_details .woocommerce-billing-fields h3 {
  font-size: 40px;
  line-height: 130%;
  color: inherit;
  font-weight: 600;
  margin-bottom: 20px;
}

.woocommerce-billing-fields__field-wrapper .form-row label,
.woocommerce-account-fields .form-row label {
  font-size: 14px;
  line-height: 150%;
  font-weight: 500;
  margin-bottom: 4px;
}

.woocommerce-billing-fields__field-wrapper .form-row input,
.woocommerce-billing-fields__field-wrapper .form-row textarea,
.woocommerce-billing-fields__field-wrapper .form-row select,
.woocommerce-account-fields .form-row input,
.woocommerce-account-fields .form-row textarea,
.woocommerce-account-fields .form-row select {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #c2c2c2;
  font-size: 14px;
  outline: none;
  border-radius: 2px;
}

.woocommerce-billing-fields__field-wrapper
  .woocommerce-input-wrapper
  .select2-container--default
  .select2-selection--single {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #c2c2c2;
  font-size: 14px;
  outline: none;
  border-radius: 2px;
  height: auto;
}

.woocommerce-billing-fields__field-wrapper
  .select2-container
  .select2-selection--single
  .select2-selection__rendered {
  line-height: initial;
}

.woocommerce .checkout.woocommerce-checkout {
  display: flex;
  flex-direction: row;
  position: relative;
  gap: 60px;
  align-items: flex-start;
}

.woocommerce .checkout.woocommerce-checkout #customer_details {
  width: 50%;
}

.woocommerce #order_review_heading {
  width: calc(50% - 60px);
  position: absolute;
  right: 0;
  top: 30px;
  font-size: 40px;
  line-height: 130%;
  color: inherit;
  font-weight: 600;
}

.woocommerce #order_review {
  width: 50%;
  margin-left: auto;
  background-color: #fff;
  border-radius: 18px;
  -webkit-box-shadow: 0 0 12px 2px rgb(0 0 0 / 0.18);
  -moz-box-shadow: 0 0 12px 2px rgb(0 0 0 / 0.18);
  box-shadow: 0 0 12px 2px rgb(0 0 0 / 0.18);
  padding: 30px 30px;
  padding-top: 110px;
  box-sizing: border-box;
}

.woocommerce #customer_details .col-2 {
  display: none;
}

.woocommerce #customer_details .col-1 {
  width: 100%;
  float: none;
  background-color: #fff;
  border-radius: 18px;
  -webkit-box-shadow: 0 0 12px 2px rgb(0 0 0 / 0.18);
  -moz-box-shadow: 0 0 12px 2px rgb(0 0 0 / 0.18);
  box-shadow: 0 0 12px 2px rgb(0 0 0 / 0.18);
  padding: 30px 30px;
  box-sizing: border-box;
}

.woocommerce .checkout_coupon.woocommerce-form-coupon {
  background-color: #fff;
  border-radius: 18px;
  -webkit-box-shadow: 0 0 12px 2px rgb(0 0 0 / 0.18);
  -moz-box-shadow: 0 0 12px 2px rgb(0 0 0 / 0.18);
  box-shadow: 0 0 12px 2px rgb(0 0 0 / 0.18);
  padding: 30px 30px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.woocommerce .checkout_coupon.woocommerce-form-coupon > p {
  font-size: 14px;
  flex-basis: 100%;
}

.woocommerce .checkout_coupon.woocommerce-form-coupon > p input {
  padding: 10px 15px;
  border: 1px solid #c2c2c2;
  font-size: 14px;
  outline: none;
  border-radius: 2px;
  width: 100%;
}

.woocommerce .checkout_coupon.woocommerce-form-coupon > p button.button {
  padding: 14px 30px;
  display: block;
  background-color: #111;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
  transition: 0.2s ease all;
  outline: none;
  border: none;
  width: 50%;
}

.woocommerce .checkout_coupon.woocommerce-form-coupon > p.form-row {
  margin-bottom: 0;
  flex-basis: auto;
  padding: 0;
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
  background-color: #f8f7f7;
  border: 1px solid rgb(0 0 0 / 0.1);
}

.woocommerce #add_payment_method #payment div.payment_box,
.woocommerce .woocommerce-cart #payment div.payment_box,
.woocommerce .woocommerce-checkout #payment div.payment_box {
  background-color: #111;
  color: #fff;
}

#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before {
  border: 1em solid #111;
  border-right-color: #fff0;
  border-left-color: #fff0;
  border-top-color: #fff0;
}

.woocommerce-privacy-policy-text p {
  font-size: 14px;
}

.woocommerce-privacy-policy-text p a {
  display: inline-block;
  color: var(--SP-RED, #d8031d);
}

.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox {
  margin-top: 10px;
}

.woocommerce-terms-and-conditions-checkbox-text {
  font-size: 14px;
}

.woocommerce-terms-and-conditions-checkbox-text a {
  display: inline-block;
  color: var(--SP-RED, #d8031d);
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
  padding: 14px 30px;
  display: block;
  background-color: #111;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
  transition: 0.2s ease all;
  outline: none;
  border: none;
  float: none;
  margin-top: 20px;
}

.woocommerce .wocom-headings {
  font-size: 40px;
  line-height: 130%;
  color: inherit;
  text-align: center;
  font-weight: 500;
}

.woocommerce-form.woocommerce-form-login {
  background-color: #fff;
  border-radius: 18px !important;
  -webkit-box-shadow: 0 0 12px 2px rgb(0 0 0 / 0.18);
  -moz-box-shadow: 0 0 12px 2px rgb(0 0 0 / 0.18);
  box-shadow: 0 0 12px 2px rgb(0 0 0 / 0.18);
  padding: 30px 30px !important;
  position: static !important;
  border: none !important;
  width: 70%;
  margin: 2em auto !important;
  box-sizing: border-box;
}

.woocommerce-form.woocommerce-form-register {
  background-color: #fff;
  border-radius: 18px !important;
  -webkit-box-shadow: 0 0 12px 2px rgb(0 0 0 / 0.18);
  -moz-box-shadow: 0 0 12px 2px rgb(0 0 0 / 0.18);
  box-shadow: 0 0 12px 2px rgb(0 0 0 / 0.18);
  padding: 30px 30px !important;
  position: static !important;
  border: none !important;
  width: 80%;
  margin: 2em auto !important;
  box-sizing: border-box;
}

.woocommerce .woocommerce-form-row label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}

.woocommerce .woocommerce-form-row input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #c2c2c2;
  font-size: 14px;
  outline: none;
  border-radius: 2px;
}

.woocommerce .woocommerce-form-row span em {
  font-style: normal;
  font-size: 12px;
  margin-top: 2px;
  display: block;
}

.woocommerce-form-login.login p.form-row,
.woocommerce-form-register.register p.form-row {
  display: flex;
  flex-direction: column;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit,
.woocommerce .woocommerce-form-register .woocommerce-form-register__submit {
  padding: 14px 30px;
  display: block;
  background-color: #111;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
  transition: 0.2s ease all;
  outline: none;
  border: none;
  width: 100%;
  margin-top: 10px;
}

.woocommerce-LostPassword.lost_password {
  display: inline-block;
  color: var(--SP-RED, #d8031d);
}

.wocom-start .woocommerce.user-login {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.woocommerce-MyAccount-navigation {
  width: 30%;
  max-width: 230px;
}

.woocommerce-MyAccount-navigation ul {
  list-style: none !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.56px;
  letter-spacing: 0.03em;
  text-align: left;
  color: #433f3c;
  padding-left: 0 !important;
  display: flex;
  flex-direction: column;
}

.woocommerce-MyAccount-navigation ul li {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid #d1d1d1;
  padding: 15px;
  box-sizing: border-box;
}

.woocommerce-MyAccount-navigation ul li.is-active {
  background-color: #d8061d;
}

.woocommerce-MyAccount-navigation ul li a {
  font-size: 16px;
  font-weight: 400;
  line-height: 22.56px;
  letter-spacing: 0.03em;
  text-align: left;
  width: 100%;
  text-transform: capitalize;
}

.woocommerce-MyAccount-navigation ul li.is-active a {
  color: #fff;
  font-weight: 500;
}

.woocommerce-MyAccount-content {
  width: 70%;
  padding-top: 20px;
}

.woocommerce-MyAccount-content > p {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.woocommerce-MyAccount-content > p a {
  color: #d8031d;
  margin-left: 4px;
}

.woocommerce-Address-title h2 {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 10px;
}

.woocommerce-Address-title .edit {
  font-size: 14px;
  font-weight: 600;
  color: #d8031d;
}

.woocommerce-Address address {
  font-size: 16px;
  font-style: normal;
  margin-top: 10px;
  color: #787878;
}

.woocommerce-MyAccount-content form h2 {
  font-size: 30px;
  font-weight: 500;
}

.woocommerce-address-fields .form-row label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
  display: block;
}

.woocommerce-MyAccount-content .form-row input,
.woocommerce-MyAccount-content .form-row select,
.woocommerce-MyAccount-content .form-row .select2-selection {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #c2c2c2;
  font-size: 14px;
  outline: none;
  border-radius: 2px;
  height: auto;
}

.woocommerce-MyAccount-content button.button {
  margin-top: 30px;
  padding: 14px 30px;
  display: block;
  background-color: #111;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
  transition: 0.2s ease all;
  outline: none;
  border: none;
  float: none;
  margin-top: 20px;
}

.woocommerce-form-register .woocommerce-privacy-policy-text {
  padding: 10px 0 10px 4px;
}

.woocommerce-MyAccount-content fieldset {
  margin: 20px 0;
  padding: 10px 20px;
  background-color: #fff;
}

.woocommerce .woocommerce-order {
  position: relative;
}

.woocommerce-order p.woocommerce-thankyou-order-received {
  margin-bottom: 20px;
}

ul.woocommerce-order-overview {
  border: 1px solid #e2e1e1;
  padding: 20px;
  margin-bottom: 20px;
  background-color: #fff;
}

.woocommerce-order .woocommerce-order-details {
  margin-top: 40px;
  width: 50%;
}

.woocommerce-order-details .woocommerce-order-details__title {
  font-size: 40px;
  line-height: 130%;
  color: inherit;
  text-align: left;
}

.woocommerce-order-details .shop_table {
  background-color: #fff;
  border-radius: 18px !important;
  -webkit-box-shadow: 0 0 12px 2px rgb(0 0 0 / 0.18);
  -moz-box-shadow: 0 0 12px 2px rgb(0 0 0 / 0.18);
  box-shadow: 0 0 12px 2px rgb(0 0 0 / 0.18);
  padding: 30px 30px !important;
  position: static !important;
  border: none !important;
  width: 100%;
  margin: 2em auto !important;
  box-sizing: border-box;
}

.woocommerce-order-details .shop_table tr td:nth-child(1) {
  width: 70%;
}

.woocommerce-order-details .shop_table tr td:nth-child(1) a {
  max-width: 32ch;
}

.woocommerce-order .woocommerce-customer-details {
  position: absolute;
  top: 234px;
  right: 0;
  width: 42%;
}

.woocommerce-customer-details .woocommerce-column__title {
  font-size: 40px;
  line-height: 130%;
  color: inherit;
  text-align: left;
}

.woocommerce-customer-details address {
  background-color: #fff;
  border-radius: 18px !important;
  -webkit-box-shadow: 0 0 12px 2px rgb(0 0 0 / 0.18);
  -moz-box-shadow: 0 0 12px 2px rgb(0 0 0 / 0.18);
  box-shadow: 0 0 12px 2px rgb(0 0 0 / 0.18);
  padding: 30px 30px !important;
  position: static !important;
  border: none !important;
  width: 100%;
  margin: 2em auto !important;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 150%;
}

.woocommerce table.my_account_orders .button {
  background: #000;
  color: #fff;
}

.button.single_add_to_cart_button.button.alt.added {
  display: none;
}

.added_to_cart.wc-forward {
  padding: 14px 30px;
  display: block;
  background-color: #111;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
  transition: 0.2s ease all;
  outline: none;
  border: none;
  width: 50%;
}

.added_to_cart.wc-forward:hover {
  background-color: #a00;
  color: #fff;
}

.woocommerce-form-login label {
  font-weight: 500;
  font-size: 16px;
  display: block;
  text-align: left;
  margin-top: 20px;
  margin-bottom: 8px;
}

.woocommerce-form-login input,
.woocommerce-form-login textarea {
  display: block;
  width: calc(100% - 12px);
  border: none;
  padding: 9px 6px;
  border-bottom: 1px solid #3a3a3a;
  outline: none;
}

.woocommerce-form-login label.woocommerce-form__label {
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.woocommerce-form-login label.woocommerce-form__label input {
  width: auto;
}
.pdpbanright-in .product-name h1 {
  max-width: 100%;
}
.cross-sell-cart-collaterals {
  display: flex;
  gap: 50px;
  margin-top: 50px;
}
.cross-sell-cart-collaterals .cross-sells {
  width: 60%;
  background-color: #fff;
  border-radius: 18px;
  -webkit-box-shadow: 0 0 12px 2px rgb(0 0 0 / 0.18);
  -moz-box-shadow: 0 0 12px 2px rgb(0 0 0 / 0.18);
  box-shadow: 0 0 12px 2px rgb(0 0 0 / 0.18);
  padding: 30px 30px;
  position: static !important;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cross-sells h2 {
  font-size: 24px;
  font-weight: 500;
}
.cross-sells .products.columns-2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}
.cross-sells .products.columns-2::before,
.cross-sells .products.columns-2::after {
  content: none;
}
.cross-sells .products.columns-2 li.product {
  width: 100% !important;
  margin: 0 !important;
}
.cross-sells .products.columns-2 li.product .button {
  padding: 14px 20px;
  display: block;
  background-color: #111;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
  transition: 0.2s ease all;
  outline: none;
  border: none;
}
.cross-sells .products.columns-2 li.product .button:hover {
  background-color: var(--SP-RED, #d8031d);
}

@media (max-width: 1300px) {
  .ticker-wrap .sp-ticker {
    transform-origin: 90%;
  }

  .ticker-wrap .sp-ticker.spticker {
    transform-origin: 60%;
  }

  .bs-tag {
    font-size: 12px;
  }

  .also-like {
    padding: 120px 0;
  }

  .form-cart-button .custom-button {
    width: 60%;
  }
  .cross-sells .products.columns-2 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 1200px) {
  .bsr-data .bsrdata-head h4 {
    font-size: 42px;
  }

  .whybuy-in .wbi-bottom h4 {
    font-size: 36px;
  }

  .benefitsbox-wrap {
    width: 80%;
  }

  .heading h4 {
    font-size: 38px;
  }

  .plp-banner {
    height: auto;
    position: relative;
    padding: 160px 0 100px 0;
  }

  .plp-banner-text {
    position: relative;
    height: auto;
    margin-bottom: 100px;
  }

  .plp-banner-content {
    position: relative;
    top: auto;
  }

  .bc-left,
  .bc-right {
    height: auto;
  }

  .pdpban-in {
    gap: 60px;
  }

  .form-cart-button .custom-button {
    width: 70%;
  }

  .whatpeoplesay {
    padding: 40px 0 120px 0;
  }

  .also-like {
    padding: 100px 0;
  }

  .pdpbanright-in .product-name h4 {
    font-size: 32px;
  }

  .pdpbanright-in .pprice,
  .pdpbanright-in .price {
    font-size: 28px;
  }

  .also-like .pltab-grid {
    overflow: hidden;
    overflow-x: auto;
    padding-bottom: 10px;
    display: flex;
  }

  .also-like .pltgrid-item {
    flex-shrink: 0;
    width: 35%;
  }

  .also-like .heading {
    margin-bottom: 60px;
  }

  .woocommerce-order .woocommerce-customer-details {
    top: 256px;
  }
}

@media (max-width: 991px) {
  .plpbc-in {
    width: 90%;
  }

  .bcright-image {
    width: 70%;
  }

  .ticker-wrap .sp-ticker.spticker {
    transform-origin: -30%;
  }

  .ticker-wrap .sp-ticker {
    transform-origin: 110%;
  }

  .new-testimonials {
    padding: 80px 0;
  }

  .bestsel-in {
    flex-direction: column;
    gap: 40px;
  }

  .bestsel-in .bs-left {
    width: 80%;
  }

  .bestsel-in .bs-right {
    width: 80%;
  }

  .bs-right .bsright-in {
    width: 100%;
  }

  .pltabs-data .pltab-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefitsbox-wrap {
    width: 100%;
  }

  .sp-faqsec {
    flex-direction: column;
  }

  .sp-faqsec .spfaq-left {
    position: relative;
    top: 0;
    padding-bottom: 0;
    width: 60%;
  }

  .spfaq-left .heading {
    margin-bottom: 0;
  }

  .sp-faqsec .spfaq-right {
    width: 100%;
    padding-top: 50px;
  }

  .faq-section {
    padding-bottom: 0;
  }

  .benefit-item .bi-in {
    gap: 50px;
  }

  .bii-top .biit-icon {
    width: 45px;
    height: 45px;
  }

  .pdp-container {
    padding: 0 30px;
  }

  .pdpban-in {
    gap: 40px;
  }

  .product-faq .faq-accordian ul .inner p {
    padding: 0 55px 20px 10px;
  }

  .product-faq .faq-accordian ul li a.toggle .sign {
    width: 22px;
    height: 22px;
    top: 2px;
  }

  .also-like .alsolike-grid-wrap {
    padding: 0 30px;
  }

  .woocommerce-variation-add-to-cart .single_add_to_cart_button {
    width: 100%;
  }

  .product-faq .faq-accordian ul li a.toggle {
    font-size: ;
  }

  .comment-form {
    width: 70%;
  }

  .wocom-start .woocommerce .woocommerce-cart-form {
    width: 100%;
  }

  .woocommerce-cart-form table.shop_table tbody tr:last-child {
    position: relative;
    width: calc(100% - 60px);
    margin-top: 30px;
  }

  .product-name a {
    max-width: 100%;
  }

  .woocommerce-cart-form table.shop_table tbody tr:last-child td:nth-child(1) {
    background-color: #fff;
  }

  .wocom-start .woocommerce-cart-form .coupon .input-text {
    width: 100% !important;
  }

  .wocom-start
    .woocommerce-cart-form
    table.shop_table
    tbody
    tr:last-child
    button.button {
    width: 100% !important;
  }

  .wocom-start .woocommerce .cart-collaterals {
    width: calc(100% - 60px);
    margin-top: 30px;
    position: relative;
  }

  .woocommerce .checkout_coupon.woocommerce-form-coupon > p button.button {
    width: max-content;
  }

  .woocommerce .checkout.woocommerce-checkout {
    gap: 30px;
  }

  .woocommerce-order .woocommerce-order-details {
    width: 100%;
  }

  .woocommerce-order .woocommerce-customer-details {
    position: relative;
    top: inherit;
    width: 100%;
  }

  .woocommerce ul.order_details li {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .say-ticker .redbox {
    width: 250px;
  }

  .ticker-box .tb-data p {
    max-width: 55ch;
  }

  .whatpeoplesay {
    padding: 40px 0 40px 0;
  }

  .button.single_add_to_cart_button.button.alt {
    width: 100%;
  }
  .cross-sell-cart-collaterals {
    flex-direction: column;
  }
  .cross-sell-cart-collaterals .cross-sells {
    width: 100%;
    box-sizing: border-box;
  }
  .wocom-start .woocommerce .woocommerce-notices-wrapper {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .plp-banner-text {
    margin-bottom: 60px;
  }

  .plpbc-in {
    flex-direction: column;
  }

  .bc-left,
  .bc-right {
    flex: auto;
    padding: 0;
  }

  .bc-left .bcl-bottom {
    width: auto;
  }

  .bcright-image {
    width: 100%;
    margin-top: 30px;
  }

  .smt-sec {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .smt-sec .smt-item {
    gap: 22px;
  }

  .scroller__inner {
    gap: 30px;
  }

  .bestsel-in .bs-left {
    width: 100%;
  }

  .bestsel-in .bs-right {
    width: 100%;
  }

  .pltabwrap-in .pl-tabs {
    width: 100%;
    overflow: hidden;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 10px;
  }

  .pl-tabs .pltablinks {
    white-space: nowrap;
  }

  .bestseller {
    padding-top: 110px;
  }

  .productlist.padding {
    padding-top: 80px;
  }

  .pltabs-data .pltab-grid {
    grid-template-columns: 1fr;
  }

  .whybuy {
    padding: 80px 0;
  }

  .benefitsbox-wrap .benefitBoxes {
    grid-template-columns: 1fr;
  }

  .faq-wrap .faq-accordian ul li a.toggle {
    padding-left: 0;
    padding-right: 50px;
  }

  .faq-wrap .faq-accordian ul .inner p {
    padding-right: 20px;
  }

  .tools-heading h4 {
    font-size: 32px;
    line-height: 40px;
  }

  .whybuy-in .wbi-bottom h4 {
    font-size: 34px;
  }

  .benefitsbox-wrap .benefitBoxes {
    padding: 0 20px;
    gap: 12px;
  }

  .pdpban-in {
    display: block;
  }

  .pdpban-left .pdpbanleft-images {
    display: none;
  }

  .pdpban-in .pdpban-left {
    width: 100%;
  }

  .pdpban-left .pdpbanleft.slider {
    display: block;
  }

  .pdpbanleft.slider .owl-nav {
    display: none;
  }

  .pdpbanleft.slider .owl-dots {
    margin: 20px 0;
  }

  .form-cart-button {
    margin-top: 30px;
  }

  .form-cart-button .custom-button {
    width: 100%;
  }

  .pdpbanright-in .product-name h4 {
    max-width: 100%;
  }

  .pdpbanright-in .pprice,
  .pdpbanright-in .price {
    position: relative;
    margin-top: 10px;
  }

  .whatpeoplesay {
    padding: 0 0 20px 0;
  }

  .ticker-box .tb-data p {
    max-width: 25ch;
  }

  .forsingle .bestsel-in .bs-left {
    width: 100%;
  }

  .also-like .heading {
    margin-bottom: 50px;
  }

  .pdp-banner {
    padding-top: 95px;
    padding-bottom: 80px;
  }

  .also-like .pltgrid-item {
    width: 80%;
  }

  .pdpban-in .woocommerce-notices-wrapper {
    top: 50px;
  }

  .woocommerce-message {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    gap: 6px;
  }

  .comment-form {
    width: 100%;
  }

  .woocommerce .checkout_coupon.woocommerce-form-coupon {
    flex-direction: column;
    padding: 20px 25px;
  }

  .woocommerce #customer_details .col-1 {
    width: 100%;
    padding: 20px 25px;
  }

  .woocommerce .checkout_coupon.woocommerce-form-coupon > p.form-row {
    width: 100%;
  }

  .woocommerce .checkout.woocommerce-checkout {
    flex-direction: column;
  }

  .woocommerce .checkout.woocommerce-checkout #customer_details {
    width: 100%;
  }

  .woocommerce #order_review_heading {
    position: relative;
    width: 100%;
    top: 0;
  }

  .woocommerce #order_review {
    width: 100%;
    padding-top: 30px;
    padding: 20px 25px;
  }

  .woocommerce-form.woocommerce-form-login,
  .woocommerce-form.woocommerce-form-register {
    width: 100%;
  }

  .wocom-start .woocommerce.user-login {
    flex-direction: column;
    gap: 20px;
  }

  .woocommerce-MyAccount-navigation {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    overflow-x: auto;
  }

  .woocommerce-MyAccount-navigation ul {
    flex-direction: row;
  }

  .woocommerce-MyAccount-navigation ul li {
    white-space: nowrap;
  }

  .woocommerce-MyAccount-content {
    width: 100%;
  }

  .woocommerce-order-details .shop_table {
    padding: 20px 10px !important;
  }

  .pdpban-right .woocommerce-notices-wrapper {
    display: none !important;
  }

  .say-ticker .redbox {
    display: none;
  }

  .woocommerce-form-login.login p.form-row.form-row-first,
  .woocommerce-form-login.login p.form-row.form-row-last {
    width: 100%;
  }

  .woocommerce-info a.showlogin {
    margin-top: 10px;
  }
  .cross-sells .products.columns-2 {
    grid-template-columns: 1fr;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.sp-shop-container-left {
  padding-left: 120px;
}
.sp-shop-container {
  padding: 0px 80px;
}
.simple-shop-banner {
  background-color: #d8031d;
  overflow: hidden;
  padding-top: 160px;
}
.simple-shop-banner-in {
  display: flex;
  width: 100%;
}
.simple-shop-banner-in .left {
  width: 35%;
  position: relative;
  z-index: 3;
  padding-right: 20px;
}
.simple-shop-banner-in .right {
  width: 65%;
  display: flex;
  justify-content: end;
  position: relative;
  align-items: end;
}
.simple-shop-banner-in .banner-circle {
  width: 810px;
  height: 810px;
  background-color: #c30018;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  bottom: -100px;
  right: -75px;
}
.simple-shop-banner-in .banner-image {
  position: relative;
  z-index: 2;
  width: 100%;
}
.simple-shop-banner-in .banner-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.simple-shop-banner-in .banner-shop-icon {
  background-color: #fff;
  height: 85px;
  width: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  right: -65px;
  bottom: 32%;
  z-index: 3;
}

.simple-shop-banner-in .left h1 {
  font-size: clamp(52px, 7vw, 90px);
  color: #fff;
  font-weight: 300;
  line-height: 95%;
  text-align: left;
}
.simple-shop-banner-in .left h1 span {
  font-family: var(--pp);
  font-weight: 200;
  font-style: italic;
}
.simple-shop-banner-in .left p {
  font-size: 16px;
  color: #f5f3ee;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 1px;
  max-width: 44ch;
}
.simple-shop-banner-in a.shop-temp-link {
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  letter-spacing: 1px;
  line-height: 150%;
  text-decoration: underline;
  display: inline-block;
  margin-top: 50px;
  transition: 0.4s ease all;
}
.simple-shop-banner-in a.shop-temp-link:hover {
  cursor: pointer;
  opacity: 0.8;
}
.simple-shop-banner-in .left .para-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px;
}
.sp-shop-choose-option {
  position: relative;
}
.sp-shop-choose-option-in {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
}
.sp-shop-choose-option-in .right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sp-shop-btn {
  font-family: "Aspekta";
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 100%;
  padding: 14px 40px;
  border: none;
  background: none;
  outline: none;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}
.sp-shop-btn.black {
  background-color: #000;
  color: #fff;
  transition: 0.4s ease all;
}
.sp-shop-btn.black:hover {
  background-color: transparent;
  color: #000;
  border: 1px solid #000;
}
.sp-shop-choose-option-in .right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.kit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sp-shop-choose-option-in .right h2 {
  font-size: 48px;
  line-height: 110%;
  font-weight: 350;
  letter-spacing: 0px;
  color: #111111;
  max-width: 16ch;
}
.sp-shop-choose-option-in .right p {
  color: #525252;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 150%;
  max-width: 46ch;
}
.sp-shop-choose-option-in .right ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-left: 10px;
}
.sp-shop-choose-option-in .right p.pricing {
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
  color: #111111;
}
.sp-shop-choose-option-in .right ul li {
  position: relative;
  color: #525252;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 150%;
}
.sp-shop-choose-option-in .right ul li:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #c30018;
  position: absolute;
  left: -5px;
  top: 35%;
}
.sp-shop-choose-option-in .right .sp-shop-btn {
  width: 70%;
}
.sp-shop-spacer {
  height: 100px;
}
.best-seller-tag {
  background: #000;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 25px 0px 0px 25px;
  position: absolute;
  right: 0;
  top: -50px;
}
.best-seller-tag p {
  text-transform: uppercase;
  font-size: 14px;
  font-family: var(--aspekta);
  letter-spacing: 2px;
  color: #fff;
}
.sp-shop-choose-option-in {
  padding-top: 40px;
}
.sp-shop-redbg-sec {
  background-color: #d8031d;
}
.sp-shop-redbg-sec .smti-text h5,
.sp-shop-redbg-sec .smti-text p {
  color: #fff;
}
.sp-shop-redbg-sec .smti-icon svg path {
  fill: #fff !important;
}
.sp-shop-redbg-sec .heading h4 {
  color: #fff;
}
.sp-shop-ticker-scroll {
  background-color: #d8031d;
}
.sp-shop-ticker-scroll-in {
  display: flex;
  gap: 24px;
  padding: 150px 0px;
  overflow: hidden;
  overflow-x: auto;
}
.sp-shop-ticker-scroll-in .item {
  background-color: #fff;
  padding: 56px 40px;
  min-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.sp-shop-ticker-scroll-in .item p {
  font-size: 20px;
  font-weight: 400;
  color: #111111;
  line-height: 118%;
}
.sp-shop-ticker-scroll-in .item p.author {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: #111111;
  line-height: 130%;
  letter-spacing: 2px;
}
.sp-shop-ticker-scroll-in .item:first-child {
  margin-left: 80px;
}
.sp-shop-ticker-scroll-in .item:last-child {
  margin-right: 80px;
}
.simple-shop-banner-in .banner-image img {
  display: flex;
}
.faq-section .faq-wrap {
  padding-left: 20px;
}
.productlist.padding {
  padding-bottom: 0px;
}
.whygetit.product-main p.whyget-head{
font-weight: 500;
}
@media screen and (max-width: 1400px) {
  .simple-shop-banner-in .left {
    width: 45%;
  }
  .simple-shop-banner-in .right {
    width: 55%;
  }
  .simple-shop-banner-in .banner-circle {
    width: 100%;
    height: 130%;
  }
  .simple-shop-banner-in .banner-shop-icon {
    bottom: 150px;
  }
}
@media screen and (max-width: 1300px) {
  .sp-shop-container-left {
    padding-left: 80px;
  }
}
@media screen and (max-width: 1200px) {
  .sp-shop-container-left {
    padding-left: 60px;
  }
  .simple-shop-banner-in {
    flex-direction: column;
  }
  .simple-shop-banner-in .left {
    width: 100%;
  }
  .simple-shop-banner-in .right {
    width: 100%;
  }
  .simple-shop-banner-in .banner-shop-icon {
    right: unset;
    left: 180px;
    bottom: -40px;
  }
  .sp-shop-container {
    padding: 0px 60px;
  }
  .simple-shop-banner {
    padding-top: 90px;
  }
  .sp-shop-ticker-scroll-in .item:first-child {
    margin-left: 60px;
  }
  .sp-shop-ticker-scroll-in .item:last-child {
    margin-right: 60px;
  }
}
@media screen and (max-width: 991px) {
  .sp-shop-container {
    padding: 0px 20px;
  }
  .sp-shop-choose-option-in {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .sp-shop-ticker-scroll-in .item:first-child {
    margin-left: 20px;
  }
  .sp-shop-ticker-scroll-in .item:last-child {
    margin-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .sp-shop-container-left {
    padding-left: 20px;
  }
  .simple-shop-banner-in .banner-shop-icon {
    height: 60px;
    width: 60px;
    bottom: -20px;
  }
  .best-seller-tag {
    padding: 4px 15px;
    top: -10px;
  }
  .best-seller-tag {
    font-size: 10px;
  }
  .sp-shop-choose-option-in .right .sp-shop-btn {
    width: 100%;
  }
  .sp-shop-ticker-scroll-in .item {
    min-width: 320px;
  }
  .sp-faqsec .spfaq-left {
    max-width: 100%;
  }

  .sp-shop-ticker-scroll-in {
    padding: 60px 0px;
  }
}
.sp-shop-choose-option-in .kit-image{
    height: 500px;
}
@media screen and (max-width: 991px){
  .sp-shop-choose-option-in .kit-image{
    height: 100%;
}
}