@import url(../css/account.min.css);

:root {
  --white: #fff;
  --black: #000;
  --primary: #f4de69;
  --theme-color: #f4de69;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #000000;
  cursor: url("../images/cursor.png"), auto;
  /* cursor: none; */
  overflow-x: hidden;
  height: 100%;
  font-family: "Poppins", sans-serif;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: rgb(255 255 255 / 0%);
}

::-webkit-scrollbar-thumb {
  background: rgb(255 255 255 / 0.5);
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(255 255 255 / 0.8);
}

@media (min-width: 1700px) {
  .container {
    max-width: 1380px;
  }
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #828288;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "Poppins", sans-serif;
}

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

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

figure {
  margin: 0;
}

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

.df {
  display: flex;
}

.aic {
  align-items: center;
}

.aie {
  align-items: flex-end;
}

.jcc {
  justify-content: center;
}

.jcsb {
  justify-content: space-between;
}

.frr {
  flex-direction: row-reverse;
}

.fw {
  flex-wrap: wrap;
}

.fnw {
  flex-wrap: nowrap;
}

.gap1 {
  gap: 1rem;
}

.gap2 {
  gap: 2rem;
}

.navbar-brand img {
  /* max-height: 150px; */
  transition: 0.3s ease-in-out;
}

header {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 99999;
  top: 0;
  width: 100%;
  padding: 1rem 0;
  transition: 0.3s ease-in-out;
}

header.sticky {
  position: fixed;
}

header.sticky .navbar-brand img {
  max-width: 100px;
}

.navbar-nav {
  gap: 1rem 2rem;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  text-transform: capitalize;
  line-height: 1;
  padding: 0;
  position: relative;
}

.navbar-nav .nav-item .nav-link::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  transition: transform 0.3s ease-in-out;
  background-color: var(--theme-color);
  transform-origin: center;
  transform: scaleX(0);
}

.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-item .nav-link:hover {
  color: var(--theme-color);
}

.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-item .nav-link:hover::after {
  transform: scaleX(1);
}

header .form-inline {
  margin-left: 2rem;
  gap: 2rem;
}

header .form-inline a {
  color: var(--white);
  font-size: 1.75rem;
}

header .form-inline a:hover {
  color: var(--theme-color);
  transform: scale(1.125);
}

/* Search Box */

.searchBox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1111;
  height: 100%;
  width: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px);
  background-color: rgb(0 0 0 / 50%);
}

.searchBox .form-group {
  width: 100%;
  max-width: 50%;
  margin: 0 auto;
  display: flex;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.searchBox input {
  min-height: 3.75rem;
  width: 100%;
  border: none;
  border-radius: 50px;
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--white);
  background: var(--theme-color);
}

.searchBox input::placeholder {
  color: var(--white);
  text-transform: uppercase;
}

.searchBox button {
  background: var(--white);
  color: var(--theme-color);
  width: 3.75rem;
  margin-left: -3.75rem;
  min-height: 3.75rem;
  border: 2px solid var(--theme-color);
  border: none;
  border-radius: 50px;
}

.searchBox button:hover {
  background-color: var(--black);
  color: var(--theme-color);
}

.searchBox .searchClose {
  position: absolute;
  display: block;
  right: 2rem;
  top: 2rem;
  color: #fff;
  font-size: 2.15rem;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.searchBox .searchClose:hover {
  color: var(--theme-color);
  transform: scale(1.25);
}

.main-slider {
  position: relative;
  height: 100%;
  background: url(../images/mainBan.png) center/cover no-repeat;
  display: flex;
  align-items: center;
}

.main-slider canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: difference;
}

.main-slider h2 {
  font-size: 6.5625rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -14px;
}

.main-slider h2 > strong {
  font-size: 1.875rem;
  font-weight: 400;
  letter-spacing: 0.9rem;
  display: block;
  text-transform: capitalize;
}

.main-slider h3 {
  font-size: 3.125rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: var(--white);
  position: relative;
}

.main-slider h3::before {
  content: "";
  position: absolute;
  left: -0.75rem;
  bottom: 2px;
  height: 5px;
  width: 13rem;
  transition: 0.5s ease-in-out;
  background-color: var(--theme-color);
}

.main-slider .leaf01 {
  position: absolute;
  left: -10rem;
  bottom: -6rem;
  z-index: 1;
  animation: tada infinite 10s;
}

.themeBtn {
  display: inline-block;
  font-size: 1.125rem;
  color: var(--white);
  font-weight: 400;
  margin: 0.5rem 0;
  letter-spacing: 6.3px;
  position: relative;
  z-index: 2;
  text-decoration: underline !important;
}

.themeBtn span {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background: var(--theme-color);
}

.themeBtn:hover {
  letter-spacing: 0.5rem;
  transform: scale(1.125);
  color: var(--theme-color);
}

.secHeading {
  font-size: 1.875rem;
  font-weight: 400;
  letter-spacing: 15px;
  color: var(--white);
  line-height: 1;
  position: relative;
  display: inline-block;
  text-transform: capitalize;
}

.secHeading span {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background: var(--theme-color);
}

.secHeading::before {
  content: "";
  position: absolute;
  left: -0.75rem;
  bottom: -3px;
  height: 5px;
  width: 13rem;
  transition: 0.5s ease-in-out;
  background-color: var(--theme-color);
}

.secHeading:hover::before {
  width: 100%;
}

/* moreAboutUs */

.moreAboutUs {
  background-color: #202020;
  padding: 2rem 0;
}

.infoBox {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.infoBox h3 {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 400;
}

.infoBox p {
  font-size: 1rem;
  font-weight: 300;
  color: #828282;
  margin: 0;
}

/* shopSection */

.shopSection .leaf02 {
  position: absolute;
  right: -6rem;
  top: -5rem;
  z-index: -1;
  animation: tada infinite 6s;
}

.shopCard {
  padding: 1rem 2rem;
  border: 1px solid rgb(244 222 105/53%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 18.75rem;
  margin-bottom: 1.75rem;
  transition: 0.3s ease-in-out;
}

.shopCard:hover img {
  animation: bounceInUp 0.6s infinite alternate;
  -webkit-animation: bounceInUp 0.6s infinite alternate;
}

@keyframes bounceInUp {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-15px);
  }
}

@-webkit-keyframes bounceInUp {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-15px);
  }
}

.shopCard h3 {
  color: var(--white);
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.5;
}

.shopCard ul.scrollable {
  height: 130px;
}

.shopCard ul li a {
  color: #828282;
  font-size: 1.125rem;
  font-weight: 400;
}

.shopCard ul li a:hover {
  color: var(--theme-color);
}

.shopCard:hover {
  border-color: var(--theme-color);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: var(--theme-color) !important;
}

/* productSection */

.productSection .leaf03 {
  position: absolute;
  left: -16rem;
  bottom: -5rem;
  transform: rotate(20deg);
  z-index: -1;
  animation: infinite 4s pulse;
}

.productSection .leaf04 {
  position: absolute;
  right: -18rem;
  bottom: -10rem;
  transform: rotate(30deg);
  z-index: -1;
  animation: infinite 10s tada;
}

.prodCard {
  transition: 0.3s ease-in-out;
  position: relative;
  display: block;
  background: #171717;
  border: 1px solid #171717;
  border-radius: 20px;
  margin-bottom: 2rem;
}

.prodCard .imgBox {
  transition: 0.3s ease-in-out;
  overflow: hidden;
  min-height: 230px;
  padding: 0.5rem;
  display: grid;
  place-items: center;
}

.prodCard .imgBox img {
  transition: 0.3s ease-in-out;
  max-width: 100%;
}

.prodCard .content {
  padding: 1rem 1.5rem;
  min-height: 180px;
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.prodCard .content .flex-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.prodCard .content h3 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--white);
  text-align: left;
  max-width: calc(100% - 3rem);
}

.prodCard .content .rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.prodCard .content .rating i {
  color: #ffbb00;
  font-size: 14px;
}

.prodCard a {
  color: var(--white);
  font-size: 1.25rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  position: relative;
}

.prodCard a:hover {
  color: var(--theme-color);
  background: var(--black);
}

.prodCard a span {
  display: inline-block;
  color: var(--black);
  font-size: 12px;
  z-index: 1;
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
  background-color: var(--theme-color);
  text-align: center;
  position: absolute;
  top: -0.75rem;
  left: 0.35rem;
}

.prodCard h4 {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin: 0;
}

.prodCard h4 del {
  color: #828282;
  font-size: 14px;
  margin-right: 0.5rem;
}

.prodCard a.btn {
  display: block;
  border-radius: 0;
  border: 1px solid var(--white);
  font-size: 12px;
}

.prodCard .title {
  position: absolute;
  left: 0.75rem;
  top: 2rem;
  color: var(--white);
  font-weight: 400;
  font-size: 14px;
  z-index: 1;
}

.prodCard .saleTag {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 3rem;
  background-color: #ff0000;
  color: var(--white);
  font-size: 14px;
  z-index: 1;
  font-weight: 400;
  padding: 0.125rem 0.5rem;
}

.prodCard:hover .imgBox img {
  transform: scale(1.1) rotate3d(1, 1, 1, -3deg);
}

.prodCard:hover {
  border-color: var(--theme-color);
}

/* supplyBoxSec */

.supplyBoxSec {
  background: url(../images/bgImg.jpg) center/cover no-repeat;
  padding: 3rem 0;
}

.supplyBoxSec h2 {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
}

.supplyBoxSec p {
  color: #d2d2d2;
  font-size: 1.875rem;
}

.supplyBoxSec .themeBtn {
  letter-spacing: 2px;
}

/* templateSec */

.tempCard {
  padding-top: 0;
}

.templateSec .tempCard {
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.templateSec .tempCard img {
  transition: 0.3s ease-in-out;
}

.templateSec .tempCard:hover img {
  transform: scale(1.125);
}

/* testimonialSec */

.testimonialSec {
  padding: 10rem 0;
}

.testimonialSec figure {
  border: 1rem solid var(--theme-color);
  height: 485px;
  width: 530px;
  margin: 0 auto;
}

.testimonialSec figure img:nth-child(1) {
  margin-top: -10rem;
  margin-left: -12rem;
  position: relative;
  z-index: 1;
}

.testimonialSec figure img:nth-child(2) {
  margin-top: -10rem;
  margin-left: 10rem;
}

.templateSec .leaf05 {
  position: absolute;
  right: 0;
  top: -15rem;
  animation: tada 10s infinite;
  z-index: -1;
}

.testimonialCard {
  padding: 0 2rem;
}

.testimonialCard p {
  font-size: 1.125rem;
  line-height: 2;
  margin: 1rem 0 0.5rem;
}

.testimonialCard h3 {
  color: var(--theme-color);
  font-size: 1.875rem;
  font-weight: 600;
  text-align: center;
}

.testimonialCard h3 span {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.5;
}

.testimonialSec .leaf06 {
  position: absolute;
  left: 0;
  bottom: 0;
  animation: pulse 5s infinite;
}

footer {
  padding-top: 5rem;
  background-color: rgb(255 255 255/10%);
}

footer .links li a {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2;
  color: var(--white);
}

footer .links li a:hover {
  color: var(--theme-color);
}

footer h4 {
  font-size: 1.375rem;
  color: var(--white);
  font-weight: 400;
  line-height: 1;
}

footer p {
  color: #afafaf;
  font-size: 1.125rem;
  line-height: 1.8;
}

footer .form-group input.form-control {
  height: 70px;
  border: 0;
  border-radius: 0;
  margin-bottom: 1rem;
  background-color: rgb(255 255 255/6%);
}

footer .form-group button {
  height: 70px;
  font-size: 1.125rem;
  font-weight: 400;
  width: 100%;
  text-align: center;
  border: 1px solid var(--white);
  background-color: var(--white);
}

footer .form-group button:hover {
  background-color: var(--theme-color);
  color: var(--black);
  border-color: var(--theme-color);
}

.copyRight {
  padding: 1rem 0;
  margin-top: 3rem;
  border-top: 1px solid #707070;
}

.copyRight p {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
}

/* Inner Pages CSS */
.main-slider.innerBnnr {
  max-height: 800px;
}
.main-slider.innerBnnr h2 {
  text-transform: initial !important;
}

.innerHeading {
  font-size: 3.15rem;
  text-transform: capitalize;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}

.testimonialSec.aboutSec {
  padding: 15rem 0;
}

.productSection.productInner .leaf03 {
  left: 0;
  top: 45%;
}

.productSection.productInner .leaf04 {
  bottom: 10rem;
  right: 0;
}

.custom-pagination ul.pagination {
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 3rem;
}
.custom-pagination ul.pagination .page-item .page-link {
  padding: 0.5em 0.75em;
  background-color: transparent;
  font-size: 1rem;
  color: #fff;
  border: 0;
  display: inline-block;
}
.custom-pagination ul.pagination .page-item.active .page-link,
.custom-pagination ul.pagination .page-item:hover .page-link {
  background-color: var(--theme-color);
  color: var(--black);
}

/* contactSec */
.contactSec {
  padding: 10rem 0;
}
.contactList {
  background: var(--theme-color);
  padding: 3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contactList h2 {
  font-size: 2.25rem;
  font-family: "Montserrat";
  color: var(--black);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}
.contactList p {
  color: var(--black);
  font-size: 1.125rem;
  font-weight: 500;
  font-family: "Montserrat";
  line-height: 1.5;
}

.contactList .infoList {
  display: flex;
  flex-direction: column;
  margin: 2rem 0 3rem;
  gap: 1.5rem;
}
.contactList .infoList li a {
  display: flex;
  align-items: center;
  color: var(--black);
  gap: 1rem;
  line-height: 1.4;
}
.contactList .infoList li a span {
  font-weight: 500;
  font-size: 14px;
}
.contactList .infoList li a span strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
}
.contactList .socialIo {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contactList .socialIo li a {
  width: 3.75rem;
  height: 3.75rem;
  display: grid;
  place-items: center;
  color: var(--black);
  font-size: 1.5rem;
  border-radius: 50%;
}
.contactList .socialIo li a:hover {
  background-color: var(--black);
  color: var(--theme-color);
}

.formWrap {
  background: #202020;
  padding: 3rem;
}
.formWrap .form-group {
  margin-bottom: 2rem;
}
.formWrap .form-group label {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}
.formWrap .form-group .form-control {
  border: 0;
  height: 50px;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid #c7c7c7;
}
.formWrap .form-group textarea.form-control {
  height: 160px;
}
.formWrap .themeBtn {
  background: var(--theme-color);
  color: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 1em 2em;
  text-align: center;
  color: var(--black);
  letter-spacing: 3px;
  text-decoration: none !important;
}
.formWrap .themeBtn:hover {
  transform: none;
  color: var(--theme-color);
  background-color: var(--black);
}

#loader {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  background-color: #000;
  position: fixed;
  z-index: 1111111;
}

/* Begin: Product Details */
.proShowcase {
  background: #f5f5f5;
  border: 1px solid #e4e4e4;
}

.proShowcase .slick-prev,
.proShowcase .slick-next {
  right: auto;
  top: 50%;
  z-index: 1;
  background: #d7d7d7;
  color: #000;
  height: 50px;
  width: 50px;
  border-radius: 0;
  box-shadow: none;
}
.proShowcase .slick-prev {
  left: 0;
  right: auto;
}
.proShowcase .slick-next {
  left: auto;
  right: 0;
}

.productDetail .detail .rateNprice {
  padding: 0 0 10px;
  justify-content: flex-start;
  border: 0;
}

.productDetail .detail .rateNprice a {
  font-size: 12px;
  font-weight: 500;
  padding-left: 10px;
  margin-left: 10px;
  border-left: 1px solid #4c4c4c;
  line-height: 1;
}

.productDetail .detail h3 {
  font-size: 30px;
}

.productDetail .detail h3 del {
  color: #acacac;
  font-size: 26px;
  font-weight: 400;
  margin-right: 5px;
}

.productDetail .detail .availability {
  text-transform: capitalize;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: inline-block;
  color: var(--white);
}
.productDetail .innerHeading {
  font-size: 2.5rem;
}
.productDetail .detail .availability span {
  text-transform: capitalize;
}

.productDetail .detail .red-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.productDetail .detail .red-list li p {
  margin: 0 0 8px;
  padding-left: 20px;
  position: relative;
}

.productDetail .detail .red-list li p:before {
  content: "";
  width: 6px;
  height: 6px;
  background: #e31837;
  position: absolute;
  top: 9px;
  left: 0;
  border-radius: 10px;
}

.productDetail .detail .rateNprice {
  padding: 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border: 0;
}
.productDetail .detail .rateNprice a {
  font-size: 14px;
  font-weight: 500;
  padding-left: 10px;
  margin-left: 10px;
  border-left: 1px solid #4c4c4c;
  line-height: 1;
  color: var(--theme-color);
}
.productDetail .detail .star {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: center;
}
.productDetail .detail .star li .far {
  font-size: 1rem;
  color: #ffcb00;
}
.productDetail .detail .star li span {
  margin-left: 3px;
  font-size: 0.85rem;
  color: var(--white);
}
.productDetail .detail h3 {
  font-size: 30px;
  color: var(--theme-color);
}
.productDetail .detail h3 del {
  color: #828282;
  font-size: 26px;
  font-weight: 400;
  margin-right: 5px;
}
.productDetail .detail p {
  color: var(--white);
  font-size: 1rem;
  line-height: 2;
  font-weight: 400;
}
/* END: Product Details */

/*   Review css start    */
.descBox {
}

.adtnlTab .nav-tabs .nav-item .nav-link {
  all: unset;
  color: var(--black);
  background-color: #ededee;
  font-size: 0.8em;
  font-weight: 700;
  padding: 1.8em 2em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-block;
  cursor: pointer;
}
.adtnlTab .nav-tabs {
  border-bottom: none;
  gap: 20px;
}
.adtnlTab .nav-tabs .nav-item .nav-link.active {
  -webkit-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: 1px 1px 16px 0px rgb(0 0 0 / 19%);
  -moz-box-shadow: 1px 1px 16px 0px rgb(0 0 0 / 19%);
  box-shadow: 1px 1px 16px 0px rgb(0 0 0 / 19%);
  border: none;
  background-color: var(--theme-color);
  color: var(--black);
}

.descText p {
  color: var(--white);
  margin: 40px 0 0;
  font-weight: 400;
  font-size: 1.125rem;
}

.adtnlInfo h2 {
  margin: 2em 0 0.5em;
  font-size: 1.6em;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
}

.adtnlInfo ul {
  display: flex;
  align-items: center;
  gap: 50px;
  border-bottom: 2px solid #747474;
  padding-bottom: 20px;
  margin: 30px 0 0;
}

.adtnlInfo ul li {
  color: var(--white);
}

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

.reviewContent {
  padding-left: 15px;
}

.reviewContent h5 {
  color: var(--white);
  margin-bottom: 0;
  font-size: 0.9333em;
  font-weight: 600;
}

.reviewContent p {
  color: var(--white);
  margin: 0;
}
.userMain h2 {
  margin: 0 0 1rem;
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--white);
}
.userMain {
  margin: 3em 0 0.5em;
}
.userMain p {
  color: var(--white);
  font-size: 1rem;
}
.reviewForm {
  padding: 30px 0 0;
}
.reviewForm label {
  color: var(--white);
}
.reviewForm .formsetrvew input {
  height: 70px;
  border: 0;
  width: 100%;
  border: 1px solid var(--theme-color);
  border-radius: 0;
  margin-bottom: 1rem;
  padding-left: 1rem;
  background-color: rgb(255 255 255/25%);
}
.reviewForm .agreCheck {
  text-align: left;
  display: flex;
}
.reviewForm .agreCheck input {
  height: auto;
  width: auto;
  position: relative;
  top: 6px;
}
.reviewForm .agreCheck label {
  padding-left: 10px;
  color: var(--white);
}
.reviewForm h6 {
  color: var(--white);
  font-weight: 400;
  margin-bottom: 13px;
  font-size: 1.25rem;
}
.reviewForm textarea {
  height: 160px;
  border: 0;
  padding-top: 1rem;
  padding-left: 1rem;
  width: 100%;
  border: 1px solid var(--theme-color);
  border-radius: 0;
  margin-bottom: 1rem;
  background-color: rgb(255 255 255/25%);
}
.reviewForm button.submitBtn {
  border: 1px solid var(--theme-color);
  background-color: var(--theme-color);
  color: var(--black);
  font-size: 1rem;
  text-transform: uppercase;
  padding: 0.75em 1.5em;
  min-width: 175px;
  text-align: center;
}
.reviewForm button.submitBtn:hover {
  background-color: var(--black);
  color: var(--theme-color);
}
/* Rating Star Widgets Style */
.rating-stars ul {
  list-style-type: none;
  padding: 0;
  -moz-user-select: none;
  -webkit-user-select: none;
  padding-bottom: 20px;
}
.rating-stars ul > li.star {
  display: inline-block;
}

/* Idle State of the stars */
.rating-stars ul > li.star > i.fa {
  font-size: 1em; /* Change the size of the stars */
  color: #ccc; /* Color on idle state */
}

/* Hover state of the stars */
.rating-stars ul > li.star.hover > i.fa {
  color: #ffcc36;
}

/* Selected state of the stars */
.rating-stars ul > li.star.selected > i.fa {
  color: #ff912c;
}
.userReview img {
  width: 50px;
}
/*   Review css end   */

/* steps css start */
.checkOutStyle {
  padding: 6rem 0;
}
.checkOutStyle .titleWrap p {
  color: var(--white);
  font-size: 1.125rem;
  text-transform: capitalize;
  line-height: 1;
  margin: 1rem 0;
}
.checkOutStyle .titleWrap p a {
  color: var(--theme-color);
}
.checkOutStyle.formWrap label {
  text-transform: uppercase;
}
.checkbox {
  margin-bottom: 20px;
}
.checkbox input[type="checkbox"] {
  display: none;
}
.checkbox input[type="checkbox"] + label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  color: var(--white);
  cursor: pointer;
}

.checkbox input[type="checkbox"] + label:last-child {
  margin-bottom: 0;
}

.checkbox input[type="checkbox"] + label:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--theme-color);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.6;
  -webkit-transition: all 0.12s, border-color 0.08s;
  transition: all 0.12s, border-color 0.08s;
}

.checkbox input[type="checkbox"]:checked + label:before {
  width: 10px;
  top: -5px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.order-summery hr {
  border-top: 1px solid var(--theme-color);
  margin: 20px 0;
}

.order-summery .applyCoupon {
  display: flex;
}

.order-summery .applyCoupon .form-control {
  width: calc(100% - 150px);
  margin: 0;
  border-radius: 5px 0 0 5px;
  height: 70px;
  border: 0;
  border-radius: 0;
  margin-bottom: 1rem;
  background-color: rgb(255 255 255/6%);
}
.saveBtn,
.checkOutStyle .btnStyle {
  width: 150px;
  border-radius: 0;
  height: 70px;
  font-size: 1.125rem;
  font-weight: 400;
  /* width: 100%; */
  text-align: center;
  text-transform: uppercase;
  color: var(--black);
  border: 1px solid var(--white);
  background-color: var(--white);
}

.checkOutStyle a.btnStyle {
  display: inline-flex;
  text-align: center;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.saveBtn:hover,
.checkOutStyle .btnStyle:hover {
  background-color: var(--theme-color);
  color: var(--black);
  border-color: var(--theme-color);
}
.order-summery strong,
.order-summery span {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--white);
  text-transform: capitalize;
}

.order-summery strong {
  color: var(--theme-color);
}

.cartItemCard {
  border-radius: 5px;
  padding-top: 20px;
  padding-bottom: 20px;
  align-items: center;
  margin-bottom: 20px;
  border: 1px solid var(--theme-color);
  text-align: center;
}

.cartItemCard img {
  width: 100%;
}

.cartItemCard .price {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 400;
}
.cartItemCard h4 {
  color: var(--white);
  font-size: 1.375rem;
  text-transform: capitalize;
  font-weight: 500;
  line-height: 1.2;
}

.cartItemCard .proCounter {
  margin: 0;
}
.proCounter {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.proCounter .minus,
.proCounter .plus {
  width: 3.125rem;
  height: 3.125rem;
  background: var(--theme-color);
  border: none;
  color: var(--black);
  font-size: 1.5rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proCounter input {
  height: 3.125rem;
  width: 6.25rem;
  text-align: center;
  font-size: 1rem;
  border: 0;
  background: var(--white);
  border: 0;
  color: var(--black);
  font-weight: 500;
}

.cartItemCard .delete i {
  color: var(--white);
  font-size: 1.5rem;
}

.shipping-billing-col {
  list-style: none;
  border-top: 1px solid #ccc;
  margin-top: 22px;
  padding: 0;
}

.shipping-billing-col p,
.shipping-billing-col a {
  position: relative;
  color: var(--white);
  font-size: 16px;
  line-height: 26px;
}

.shipping-billing-col p {
  margin: 0px;
  padding: 20px 0 20px 40px;
  overflow: hidden;
  clear: both;
  border-bottom: 1px solid #ccc;
}

.shipping-billing-col p i {
  position: absolute;
  top: 24px;
  left: 0;
  font-size: 1.125rem;
  color: var(--theme-color);
}

.shipping-billing-col .edit {
  color: var(--theme-color);
  text-transform: capitalize;
  font-size: 1rem;
  padding: 0;
  float: right;
}
/* END: 3 Steps Cart CSS */
