/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/* https://emart.wpthemedemos.com/soap/product/lavender-aroma-soap/ */

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");

html {
  font-family: "Roboto", sans-serif;
}
body {
  /* height: 55555px; */
  /* background-color: brown; */
  direction: ltr;
  text-align: left;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
  position: relative;
}
a {
  text-decoration: none;
}
:root {
  /* --mainColor: #4d7388; */
  /* --subColor: #fff; */
  /* --mainColor: #4d7388; */
}

select {
  cursor: pointer;
}
input:focus,
input:active,
button:focus,
button:active,
select:focus,
select:active,
textarea:focus,
textarea:active {
  outline: none;
  border-color: var(--mainColor);
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
/* img {
  width: 100%;
} */

* {
  scroll-behavior: smooth;
}
p {
  margin: 0;
  padding: 0;
}

hr {
  margin: 0.4rem 0;
  color: var(--mainColor);
}
/* ============================================================================================================================= */
/* Scrollbar  */
::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--mainColor);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--mainColor);
}

/* =========================================================================================================== */
/* spinners */

#loading {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sk-chase {
  width: 40px;
  height: 40px;
  position: relative;
  -webkit-animation: sk-chase 2.5s infinite linear both;
  animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: sk-chase-dot 2s infinite ease-in-out both;
  animation: sk-chase-dot 2s infinite ease-in-out both;
}

.sk-chase-dot:before {
  content: "";
  display: block;
  width: 25%;
  height: 25%;
  background-color: var(--mainColor);
  border-radius: 100%;
  -webkit-animation: sk-chase-dot-before 2s infinite ease-in-out both;
  animation: sk-chase-dot-before 2s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.sk-chase-dot:nth-child(2) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.sk-chase-dot:nth-child(3) {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.sk-chase-dot:nth-child(4) {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
.sk-chase-dot:nth-child(5) {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}
.sk-chase-dot:nth-child(6) {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
.sk-chase-dot:nth-child(1):before {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.sk-chase-dot:nth-child(2):before {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.sk-chase-dot:nth-child(3):before {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.sk-chase-dot:nth-child(4):before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
.sk-chase-dot:nth-child(5):before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}
.sk-chase-dot:nth-child(6):before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

@-webkit-keyframes sk-chase {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes sk-chase {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes sk-chase-dot {
  80%,
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes sk-chase-dot {
  80%,
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes sk-chase-dot-before {
  50% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  100%,
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes sk-chase-dot-before {
  50% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  100%,
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/* ===================================================================================================== */

/* ===================================================================================================== */
/* Navbar */
.logo-nav {
    height: 50px;
    width: 100px;
}

.box-icon-nav-pc .name-nav {
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.box-icon-nav-mobile {
  display: none;
}
.box-icon-nav-mobile .name-nav {
  /* font-size: 0.0rem; */
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 50%;
  padding-left: 0.5rem;
}
.box-cart {
  position: relative;
  color: #b1b1b1;
  background-color: transparent;
  border: none;
  padding: 0;
  font-size: 1.4rem;
}
.box-cart .number-cart {
  position: absolute;
  top: -7px;
  left: 16px;
  background-color: var(--mainColor);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-search {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  color: #b1b1b1;
}
.btn-search:focus {
  border: none;
}
.logo-nav img {
  width: 100%;
  height: 100%;
}

.box-nav-all {
  background-color: rgb(255, 255, 255);
  padding: 0.5rem 0 0.5rem;
  border-bottom: 1px solid #ececec;
}
.Link-nav {
  color: #000;
}

/* #box-nav-fixed {
  background-color: rgb(255, 255, 255);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
} */

.box-nav-all.sticky .active-nav {
  color: var(--mainColor);
}
@-webkit-keyframes animationFadeInDown {
  0% {
    top: -100%;
  }

  100% {
    top: 0;
  }
}
@keyframes animationFadeInDown {
  0% {
    top: -100%;
  }

  100% {
    top: 0;
  }
}

.box-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* ------------------------------------------- */
.box-cilsh-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.box-cilsh-nav.active {
  /* position: absolute; */
  left: 0;
  top: 0;
  height: 100%;
  /* -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s; */
}

.box-icon-nav-pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  gap: 20px;
}

/* ------------------------------------------- */

.box-cilsh-nav .item-nav {
  /* color: var(--subColor); */
  /* font-weight: bold; */
  padding: 8px 10px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border-bottom: 3px solid transparent;
}
.box-cilsh-nav .item-nav:hover {
  color: var(--mainColor);
}

.Link-nav {
  position: relative;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  font-size: 1rem;
}
.span-bored {
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  width: 0;
  /* background-color: transparent; */
}
.Link-nav:hover .span-bored {
  position: absolute;
  background-color: var(--mainColor);
  height: 2px;
  bottom: 0;

  left: 12px;
  /* transform: translate(-50%); */
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  width: 60%;
}
.Link-nav::after {
  color: var(--mainColor);
  /* border-bottom: 3px solid var(--mainColor); */
  content: "";
  position: absolute;
  background-color: transparent;
  height: 3px;
  width: 3px;
  bottom: -0.5rem;

  /* border-radius: 50%; */
  right: -100%;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
/*
.Link-nav:hover::after {
  color: var(--mainColor);
  border-bottom: 3px solid var(--mainColor);
  content: "";
  position: absolute;
  background-color: var(--mainColor);
  height: 3px;
  width: 3px;
  bottom: -0.5rem;
  border-radius: 50%;
  right: 1%;
}*/
.Link-nav.active-nav {
  color: var(--mainColor);
}
.Link-nav.active-nav .span-bored {
  position: absolute;
  background-color: var(--mainColor);
  height: 2px;
  bottom: 0;
  left: 10%;
  /* transform: translate(-50%); */
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  width: 75%;
}
/* ------------------------------------------- */
.mun-align {
  display: none;
}

.maunn {
  display: block;
  position: relative;
  z-index: 22;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}

.maunn span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background-color: var(--mainColor);
  /* border-radius: 6px; */
  z-index: 22;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.maunn:hover span:nth-child(2) {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
  /* background-color: #f4f4f4; */
  -webkit-animation-name: animation-maunn;
  animation-name: animation-maunn;
  /* background-color: #fff; */
}

.maunn.is-active span:nth-child(1) {
  -webkit-transform: translate(0px, -2px) rotate(45deg);
  -ms-transform: translate(0px, -2px) rotate(45deg);
  transform: translate(0px, -2px) rotate(45deg);
}

.maunn.is-active span:nth-child(3) {
  -webkit-transform: translate(-3px, 3px) rotate(-45deg);
  -ms-transform: translate(-3px, 3px) rotate(-45deg);
  transform: translate(-3px, 3px) rotate(-45deg);
}

.maunn.is-active span:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateX(80px);
  -ms-transform: translateX(80px);
  transform: translateX(80px);
}
/* ------------------------------------------ */
/* search Navbar */
.form-control::-webkit-input-placeholder {
  color: #000;
}
.form-control::-moz-placeholder {
  color: #000;
}
.form-control:-ms-input-placeholder {
  color: #000;
}
.form-control::-ms-input-placeholder {
  color: #000;
}
.form-control::placeholder {
  color: #000;
}

.btn-search-submit {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50px;
  height: 50px;

  border: none;
  /* border-radius: 0 5px 5px 0; */
  color: #fff;
  font-size: 1.4rem;
  background-color: var(--mainColor);
}
.box-search-nav .dropdown-menu.show {
  min-width: 400px;
  /* background-color: #009e0de7; */
  padding: 0;
}
.box-search-nav .input-nav-search {
  height: 49px;
}
.box-search-nav .btn.show {
  background-color: transparent;
  border: none;
}
/* --------------------------------------------------- */
/* Profile */
.box-nav-icon-img {
  padding: 8px 10px;
  color: var(--mainColor);
}

.icon-nav-bars {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 1.2rem;
  cursor: pointer;
  /* padding: .5rem; */
  background-color: #fff;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* border-radius: 50%; */
}

.box-Personal-all {
  position: relative;
}

.box-img-dropdown {
  width: 70px;
  height: 70px;
  background-color: #bbbbbb;
  /* border-radius: 50%; */
}

.box-img-dropdown img {
  width: 70px;
  height: 70px;
  background-color: #bbbbbb;
  /* border-radius: 50%; */
}
.css-vzir9k {
  height: 100%;
  padding-left: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
}
.css-1y58f1y {
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  text-decoration: none;
  display: inline-block;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0px;
  line-height: 21px;
}

.css-l3h8k2 {
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  text-decoration: none;
  font-size: 12px;
  color: #ad8e6d;

  font-weight: 600;
  letter-spacing: -0.37px;
  line-height: 19px;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.css-yjoqwv {
  display: inline-block;
  color: rgb(0, 60, 255);
  font-size: 12px;
  letter-spacing: -0.3px;
  line-height: 20px;
  text-decoration: none;
}

.bordr-li {
  border: solid 1px #ccc;
  width: 100%;

  padding: 0;
}
.box-Personal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  font-size: 0.9rem;
}
.box-Personal-all .btn-dropdown-name {
  background-color: transparent;
  color: var(--mainColor);
  border: none;
  padding: 0;
  margin: 0;
}

.box-Personal-all .btn-dropdown-name.show {
  background-color: transparent;
  color: var(--mainColor);
  border: none;
  padding: 0;
  margin: 0;
}

.box-Personal-all .btn-dropdown-name:focus {
  background-color: transparent;
  color: var(--mainColor);
  border: none;
  padding: 0;
  margin: 0;
}
.box-icon-nav-mobile .dropdown-menu.show {
  top: 12px !important;
}
.box-icon-nav-pc .dropdown-menu.show {
  top: 5px !important;
}
.box-Personal-all .dropdown-item {
  background-color: rgb(245, 247, 254, 0.8);
  font-size: 0.9rem;
  padding: 0.7rem 0.5rem;
  color: var(--mainColor);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.box-Personal-all .dropdown-item:hover {
  color: #fff;
  background-color: var(--mainColor);
}

.box-Personal-all .dropdown-item:hover i {
  color: #fff;
}

.box-Personal-all .dropdown-item span {
  margin-right: 0.6rem;
}
.box-Personal-all .dropdown-menu li {
  margin: 0.8rem;
}
.dropdown-menu li {
  margin: 0.8rem;
}

.box-search-nav .btn-search-nav {
  background-color: transparent;
  color: #b1b1b1;
  border: none;
  font-size: 1.2rem;
}
.box-search-nav .btn-search-nav:focus {
  background-color: transparent;
  color: #b1b1b1;
  border: none;
}

/* ---------------------------------------- */
/* language Navbar */
.language-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  gap: 5px;
  cursor: pointer;
  /* margin-left: 1rem; */
}

.language-nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

.language-nav ul li a div {
  width: 25px;
}

.language-nav ul li a div img {
  width: 100%;
}

.Arrow-language {
  /* transform: rotate(180deg); */
}

/* =========================================================================================================== */
/* header */
.box-Slider {
  margin-top: 3.84rem;
  height: 100%;
}
.box-Slider .carousel-item h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--headerTitle);
  text-shadow: 3px 4px 7px rgb(72 67 51 / 80%);
}
.box-Slider .carousel-item p {
  width: 80%;
  color: var(--headerParagraph);
  text-shadow: 3px 4px 7px rgb(72 67 51 / 80%);
}
.box-d-flex-heafer-img {
  margin-top: 0.2rem;
}

.box-Slider .carousel-indicators {
  bottom: -4rem;
}

.box-Slider .carousel-indicators [data-bs-target] {
  width: 20px;
  height: 15px;
  border-radius: 12px !important;
  background-color: var(--mainColor);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.box-Slider .carousel-indicators .active {
  opacity: 1;
  background-color: var(--mainColor);
  width: 80px;
  height: 15px;
  border-radius: 10px !important;
}

.box-Slider .btn-carousel-control-next {
  height: 60px;
  top: 12rem;
  font-size: 2rem;
  color: var(--mainColor);
  position: absolute;
  right: 2%;
  background-color: transparent;
  border: none;
  opacity: 0.5;
  -webkit-transition: all 0.5rem;
  -o-transition: all 0.5rem;
  transition: all 0.5rem;
  z-index: 4;
}
.box-Slider .btn-carousel-control-prev {
  top: 8rem;

  height: 60px;

  font-size: 2rem;
  color: var(--mainColor);
  position: absolute;
  right: 2%;
  background-color: transparent;
  border: none;
  opacity: 0.5;
  -webkit-transition: all 0.5rem;
  -o-transition: all 0.5rem;
  transition: all 0.5rem;
  z-index: 4;
}
.box-Slider .btn-carousel-control-prev:hover,
.box-Slider .btn-carousel-control-next:hover {
  color: var(--mainColor);
  opacity: 1;
}

/* =================================================================================== */
/* About Us */

.headline {
  font-weight: 700;
  font-size: 1.6rem;
  position: relative;
  color: #212529;
}
.headline::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 2px;
  background-color: #212529;
}
.box-About p {
  font-size: 1rem;
  /* --max-lines: 3;
  display: -webkit-box;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--max-lines); */
  color: #9d9b9b;
}

/* ==================================================================================================== */
.sell-offers {
  color: #ccc;
  margin-right: 0.6rem;
  position: relative;
  text-decoration: line-through;
}
/* 
.sell-offers::after {
  content: "";
  position: absolute;
  top: 10px;
  left: -4px;
  width: 35px;
  height: 2px;
  background-color: red;
  -webkit-transform: rotate(16deg);
  -ms-transform: rotate(16deg);
  transform: rotate(16deg);
} */
.box-offers h3 {
  font-size: 0.9rem;
  margin-top: .5rem;

  /* white-space: nowrap; */
  /* overflow: hidden; */
  /* -o-text-overflow: ellipsis; */
  /* text-overflow: ellipsis; */

  max-width: 100%;
  font-weight: 700;
}
.box-offers {
  position: relative;
  overflow: hidden;
}

.label-block .product-badget:last-child {
  border-bottom: none;
}

/* -------------------------------- */
.label-block {
  position: absolute;
  right: 0;
  top: 0;

  /* width: 40px; */
}

.product-badget {
  background-color: var(--mainColor);
  color: #fff;
  font-size: 0.9rem;
  padding: 0.2rem 0.5rem;
  margin-bottom: 0.3rem;
  font-weight: 100;

  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  opacity: .7;
  /* max-width: 80px; */
  /* border-radius: 8px 0px 0px 8px; */
}

/* ------------------------------------- */

.btn-cart , .btn-add-cart {
  background-color: #fff;
  color: var(--mainColor);
  font-size: 1rem;
  width: 100%;
  border: var(--mainColor) solid 1px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.btn-cart:hover, .btn-add-cart:hover {
  background-color: var(--mainColor);
  border: var(--mainColor) solid 2px;
}
.btn-cart.active-cart {
  background-color: var(--mainColor);
  color: var(--mainColor);
  border: var(--mainColor) solid 1px;
}
/* ------------------------------ */
/* icon cart */
/* .btn-cart::after {
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-light);

  content: "\f07a";
  transition: all 0.5s;
}
.btn-cart.active-cart::after {
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);

  content: "\f217";
  color: #fff;
}

.btn-cart.hovereffect:hover::after {
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  color: #fff;
  content: "\f217";
} */
/* -------------------------------------- */

.box-Add-to-cart div a {
  color: #000000;
}

.box-offers-slick .slick-prev {
  top: -35px;
  right: 50px;
  left: auto;
}
.box-offers-slick .slick-next {
  top: -35px;
  right: 0;
}

.box-offers-slick .slick-prev:before,
.box-offers-slick .slick-next:before {
  font-family: "";
  font-size: 2rem;
  line-height: 1;
  opacity: 0.75;
  color: var(--mainColor);
  -webkit-font-smoothing: antialiased;
}
.box-offers-slick .box-offers .box-Add-to-cart {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  top: 150px;
}

.box-heart a i {
  color: var(--mainColor);
  border: var(--mainColor) solid 1px;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /* border-radius: 50%; */
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

/* ------------------------------ */
/* icon heart */
.btn-heart {
  position: absolute;
  left: 5px;
  top: 5px;

  color: var(--mainColor);
  border: var(--mainColor) solid 1px;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.btn-heart:hover {
  background-color: var(--mainColor);
}
.btn-heart.active-heart {
  background-color: var(--mainColor);
}

.btn-heart::after {
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-light);
  content: "\f004";
  /* transition: all 0.5s; */
}

.btn-heart:hover::after {
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  color: #fff;
  content: "\f004";
}

.btn-heart.active-heart::after {
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  color: #fff;
  content: "\f004";
}

/* -------------------------------------- */

.box-all {
  text-align: center;
}

.box-all a {
  text-align: center;
  border: var(--mainColor) solid 1px;
  color: #ffffff;
  padding: 0.5rem 2rem;
  background-color: var(--mainColor);
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  border-radius: var(--borderRadius);
}
.box-all a:hover {
  text-align: center;
  color: var(--mainColor);
  background-color: transparent;
}

.box-star i {
  color: #f5d504;
}
.box-star span {
  color: #9d9b9b;
  font-weight: 600;
}

.box-offers .sell-offers {
  color: #929191;
  position: relative;
  font-weight: 700;
}
.box-offers {
  font-weight: 700;
}

.box-img-Offer {
  position: relative;
  border: 1px solid var(--mainColor);
}
.box-img-Offer img {
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  width: 100%;
  -o-object-fit: fill;
  object-fit: fill;
}
.box-img-Offer-Slider {
  position: relative;
  border: 1px solid var(--mainColor);
}

.box-img-Offer-Slider img {
  border-radius: 10px;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.box-Best-Sellers {
  overflow: hidden;
  position: relative;
}
.box-Best-Sellers img {
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}

.box-Best-Sellers:hover img {
  /* transform: scale(1.2); */
}

.box-Best-Sellers h3 {
  font-size: 0.9rem;
  font-weight: 700;

  /* white-space: nowrap; */
  overflow: hidden;
  /* -o-text-overflow: ellipsis; */
  /* text-overflow: ellipsis; */

  max-width: 100%;
  color: #000000;
}
.box-Best-Sellers .product__description__fixer {
  font-size: 0.8rem;
  height: 1rem;
  --max-lines: 2;
  display: -webkit-box;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;

  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--max-lines);
  color: #9d9b9b;
}
.slick-dots {
}
.box-Offers-slick-btn .box-all a {
  margin-top: 2rem;
  border-radius: var(--borderRadius);
}
.slick-dots {
  bottom: 0;
}
.slick-dots li button:before {
  color: var(--mainColor);
  font-size: 1rem;
}
.slick-dots li.slick-active button:before {
  color: var(--mainColor);
}

.box-Offers-slick-btn .btn-cart {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--borderRadius);
}

/* ============================================================================================ */
/* Feedback */

.box-Feedback .box-img-user-Feedback {
  width: 70px;
  height: 70px;
  /* background-color: var(--mainColor); */
  /* border-radius: 100%; */

  margin: auto;
}
.box-Feedback .box-img-user-Feedback img {
  width: 100%;
  height: 100%;
  border-radius: 50% !important;
}
.box-Feedback p {
  font-size: 0.8rem;
  --max-lines: 3;
  display: -webkit-box;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--max-lines);
  color: #9d9b9b;
  width: 70%;
  margin: auto;
}

.box-Feedback h3 {
  font-size: 1.2rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.box-Feedback-slick .slick-prev {
  /* top: -35px; */
  /* left: auto; */
  /* right: 50px; */
}

.box-Feedback-slick .slick-prev:before,
.box-Feedback-slick .slick-next:before {
  font-family: "";
  font-size: 2rem;
  line-height: 1;
  opacity: 0.75;
  color: var(--mainColor);
  -webkit-font-smoothing: antialiased;
}

/* -------------------------------------------- */

/* ============================================================================================ */
/* Shop Now */
.box-Shop-Now {
  /* background-image: url("../images/test/demo9-lookbook-bnr.jpg"); */
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  height: 70vh;
}
.layer {
  background-color: rgba(0, 0, 0, 0.6);
  height: 100%;
}
.bpx-Shop-Now-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.bpx-Shop-Now-text h2 {
  color: var(--mainColor);
  font-size: 1.6rem;
}

.bpx-Shop-Now-text p {
  color: #9d9b9b;
  margin-top: 1rem;
  margin-bottom: 2rem;
  width: 50%;
  font-size: 0.9rem;
}

.Link-btn {
  background-color: var(--mainColor);
  color: #fff;
  padding: 1rem 2rem;
  /* border-radius: 10px; */
  border: var(--mainColor) solid 1px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.Link-btn:hover {
  background-color: transparent;
  color: var(--mainColor);
  border: var(--mainColor) solid 1px;
}

/* ============================================================================================ */
/* Services */
.box-Services .box-img-user-Feedback {
  width: 70px;
  height: 70px;
  background-color: var(--mainColor);
  /* border-radius: 100%; */
  margin: auto;
}
.box-Services-text {
  background-color: var(--mainColor2);
  color: #fff;
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: auto;
  font-size: 2.1rem;
  border-radius: 100%;
}
.box-Services-text i{
    color: var(--mainColor);
}

.box-Services p {
  font-size: 0.8rem;
  --max-lines: 3;
  display: -webkit-box;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--max-lines);
  color: #9d9b9b;
  /* width: 70%; */
  margin: auto;
}

.box-Services h3 {
  font-size: 1.2rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.box-Services-slick .slick-prev:before,
.box-Services-slick .slick-next:before {
  font-family: "";
  font-size: 2rem;
  line-height: 1;
  opacity: 0.75;
  color: var(--mainColor);
  -webkit-font-smoothing: antialiased;
}

.box-Services-slick .slick-dots {
  bottom: -25px;
}
/* ============================================================================================ */
/* footer */
.box-footer {
  /* background-image: url("../images/Footer/bg-footer.jpg"); */
  background-size: cover;
  background-size: 100% 100%;
  background-attachment: fixed;
  /* height: 60vh; */
}
.box-footer .layer {
  background-color: rgba(0, 0, 0, 0.8);
  height: 100%;
}

.box-footer p {
  color: var(--subTitleFooter);
  /* margin-top: 1rem; */
  padding: 0 !important;
  margin: 0;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  /* width: 80%; */
}
.box-text-tax {
  /* margin-top: 1rem; */
  text-align: left;
}
.box-text-tax p {
  color: var(--subTitleFooter);
  /* margin-top: 1rem; */
  padding: 0 !important;
  margin: 0;
  margin-bottom: 0.2rem;
  font-size: 0.8rem;
}

.logo-footer {
  width: 100px;
  height: 50px;
}

.logo-footer img {
  width: 100%;
}
.box-tax {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.box-tax-img {
  width: 60px;
  height: 80px;
  /* padding: 1rem; */
}

.box-tax-img img {
  width: 100%;
  height: 100%;
}
.box-icon-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  gap: 10px;
}

.box-icon-footer .icon a {
  /* margin-right: 0.8rem; */
  font-size: 1rem;
  color: var(--subTitleFooter);
  background-color: var(--mainColor);
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100%;
  border: solid 1px var(--mainColor);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  fill: var(--subTitleFooter); /* تعيين لون الأيقونة */
}

.box-icon-footer .icon a:hover {
  border: solid 1px var(--mainColor);
  background-color: transparent;
  color: var(--mainColor);
  fill: var(--mainColor); /* تعيين لون الأيقونة */
}

.headline-footer {
  font-weight: 600;
  font-size: 1.2rem;
  position: relative;
  color: var(--mainColor);
  margin-bottom: 1.8rem;
}

.headline-footer::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 150px;
  height: 3px;
  background-color: var(--mainColor);
}

/* .headline-footer::before {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 170px;
  width: 10px;
  height: 3px;
  background-color: var(--mainColor);
} */

.box-Informations ul li {
  margin-bottom: 0.6rem;
}

.box-Informations ul li a {
  color: var(--mainColor);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  font-size: 0.9rem;
}

.box-Informations ul li a:hover {
  color: var(--mainColor);
}

.box-Payment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.box-img-Payment {
  width: 45px;
  height: 30px;
  /* border-radius: 5px; */
  background-color: #fff;
  padding: 1px;
}

.box-img-Payment img {
  width: 100%;
  height: 100%;
  /* border-radius: 5px; */
  -o-object-fit: contain;
  object-fit: contain;
}

.Rights-Reserved {
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 0.5rem 0;
}

.box-img-business {
  width: 200px;
  height: 65px;
}

.box-img-business img {
  width: 100%;
  height: 100%;
}
.d-flex-start-justify {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* ----------------------------------------------- */
/* logo-wazin */
.box-logo-wazin-img-text a {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  color: #fff;
}

.box-logo-wazin-img-text a div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* ============================================================================================ */
/* progress */

/* Btn or smth like that */
#progress {
  position: fixed;
  bottom: 4px;
  right: 25px;

  height: 50px;
  width: 50px;
  border-radius: 50%;

  display: none;
  place-items: center;

  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);

  cursor: pointer;
  z-index: 200;
}

/* Element inside button */
#progress-value {
  display: block;
  height: calc(100% - 15px);
  width: calc(100% - 15px);
  border-radius: 50%;

  background-color: #fff;

  display: -ms-grid;

  display: grid;
  place-items: center;

  font-size: 0.9rem;
  color:#212529;;
}

/* =================================================================== */
.box-slider-sponsors {
  height: 250px;
  /* width: 80%; */
  position: relative;

  display: -ms-grid;

  display: grid;
  place-items: center;
  overflow: hidden;
}
.box-slido-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 25px * 14;
  -webkit-animation: scrollSlidoTrack 10s linear infinite;
  animation: scrollSlidoTrack 10s linear infinite; /* على سبيل المثال */
}
.box-slido-track:hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
@-webkit-keyframes scrollSlidoTrack {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  100% {
    -webkit-transform: translateX(calc(-250px * 7));
    transform: translateX(calc(-250px * 7));
  }
}
@keyframes scrollSlidoTrack {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  100% {
    -webkit-transform: translateX(calc(-250px * 7));
    transform: translateX(calc(-250px * 7));
  }
}

.box-slido-track .slide {
  height: 250px;
  width: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px;
  -webkit-perspective: 100px;
  perspective: 100px;
}
.slide img {
  width: 100%;
}

.box-slider-sponsors::before,
.box-slider-sponsors::after {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(255, 255, 255, 2)),
    color-stop(0%, rgba(0, 0, 0, 0))
  );
  background: -o-linear-gradient(
    left,
    rgba(255, 255, 255, 2) 0%,
    rgba(0, 0, 0, 0) 0%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 2) 0%,
    rgba(0, 0, 0, 0) 0%
  );
  content: "";
  height: 100px;
  position: absolute;
  width: 15%;
  z-index: 2;
}

.box-slider-sponsors::before {
  left: 0;
  top: 0;
}
.box-slider-sponsors::after {
  right: 0;
  top: 0;
  -webkit-transform: rotateZ(180deg);
  -ms-transform: rotate(180deg);
  transform: rotateZ(180deg);
}
/* ======================================================================== */
/* Shop Now 2 */
.boxShopNow2 {
    background-color: #f7f4f4;
}
.boxShopNow2 p {
  width: 80%;
  /* margin-bottom: 5rem; */
  margin-top: 1rem;
}
.boxShopNow2 .LinkShopNow {
  color: #fff;
  background-color: var(--mainColor);
  border: var(--mainColor) solid 1px;
  padding: 1rem 2rem;
  /* border-radius: 10px; */
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: var(--borderRadius);
}
.boxShopNow2 .LinkShopNow:hover {
  color: var(--mainColor);
  background-color: transparent;
  border: var(--mainColor) solid 1px;
}
.boxShopNow2 img {
  border: solid 6px var(--mainColor);
  width: 450px;
}
.width100 {
  width: 100%;
}
/* =============================================================================== */
/* mobil */
@media (max-width: 1115px) {
  .box-cilsh-nav .Link-nav {
    font-size: 0.7rem !important;
  }
}
@media (max-width: 991px) {
  .box-nav-all {
    /* box-shadow: #ececec -0px 1px 20px; */
    border-bottom: 1px solid #ececec;

    padding: 0.5rem 0;
  }
  .box-cilsh-nav {
    position: fixed;
    width: 240px;
    height: calc(100vh -50px);
    /* top: 6.3rem; */
    right: -200%;
    /* background: rgba(0, 0, 0, 0.8); */
    background-color: rgb(255, 255, 255);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 82vh;
    /* -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s; */
    padding: 10px;
    /* overflow-y: auto; */
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    /* overflow-x: hidden; */
  }

  .box-cilsh-nav .item-nav {
    /* margin: 10px 5px; */
    color: #000000;
    padding: 4px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    /* border-radius: 5px; */
  }

  .mun-align {
    display: block;
    margin-left: 30px;
  }

  .Services-head-nav {
    margin: 1rem 0;
  }

  .Services-head-nav .Services-nav {
    /* display: none; */
    top: 10rem;
    /* position: relative; */
    left: 0;
  }

  .Services-head-nav .Services-nav ul {
    /* display: none; */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .Services-nav ul li {
    width: 100%;
    padding: 1.5rem 0;
  }

  .Services-nav {
    width: 100%;
    display: none;
    left: 0;
  }

  .box-cilsh-nav-icon {
    display: none;
  }
  .box-icon-nav-pc .item-icon-nav {
    display: none;
  }
  .box-icon-nav-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;

    width: 100%;

    background-color: #fff;

    /* box-shadow: 2px 2px 20px #b1b1b1; */
    border-bottom: 1px solid #ececec;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
  }

  .box-dropdown {
    position: absolute;
    top: 9.8rem;
    right: 20%;
  }
  .carousel-item {
    /* height: 100%; */
  }
  .box-Slider {
    height: 100%;
  }
  .box-text-header {
    margin-top: 3rem;
    margin-bottom: 1rem;
  }
  .bpx-Shop-Now-text p {
    width: 100%;
  }
  .box-img-Offer {
    width: 100%;
    /* height: 215px; */
  }
  .box-Feedback p {
    width: 100%;
  }
  .d-flex-start-justify {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }

  .language-nav {
    border: none;
  }

  .box-footer {
    text-align: center;
  }
  .logo-footer {
    margin: auto;
  }

  .box-img-business {
    margin: auto;
  }
  .headline-footer::after {
    left: auto;
    right: 0;
    width: 140px;
  }
  .headline-footer::before {
    left: 8rem;
  }
  .box-tax-img {
    /* margin: auto; */
  }
  .box-icon-footer {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5px;
  }
  .box-Payment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .box-Slider .carousel-item p {
    width: 100%;
  }
  .box-Slider .carousel-item h2 {
    font-size: 1.4rem;
  }

  .box-Shop-Now {
    /* background-image: url("../images/test/demo9-lookbook-bnr.jpg"); */
    background-size: 100% 90%;
    background-position: center 70%;
    background-attachment: fixed;
    height: 70vh;
  }
  .box-tax {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
  .box-text-tax {
    text-align: center;
  }
  .box-tax-img {
    margin: none;
  }
  .box-icon-footer .icon a {
    /* margin-right: 0.8rem; */
    font-size: 0.9rem;
    width: 27px;
    height: 27px;
  }

  .box-Payment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
  }

  .box-img-Payment {
    width: 35px;
    height: 30px;
    /* border-radius: 5px; */
    background-color: #fff;
    padding: 1px;
  }
  .marquee a {
    padding-right: 1rem;
  }

  .box-nav-icon-img {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    color: var(--mainColor);
  }
  .box-Slider .carousel-indicators {
    bottom: -3.5rem;
  }

  .box-Rights-Reserved-logo-wazin {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
  }
  .box-d-flex-heafer-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 1rem;
  }
  .box-icon-nav-pc .name-nav {
    width: 30px;
  }
  .box-Personal-all {
    border-left: none;
  }
  .box-search-nav .dropdown-menu.show {
    min-width: 330px;
  }
  .box-icon-nav-mobile .dropdown-menu.show {
    left: -30%px !important;
    top: 10px !important;
  }
}
@media (max-width: 990px) {
  .col-sm-12-Mo {
    width: 50% !important;
  }
  .col-sm-12-Mo {
    /* background-color: #fc3a2c; */
  }
  .box-img-Offer {
    width: 100%;
    /* height: 215px; */
  }
  .headline-footer::after {
    width: 80%;
    right: 25px;
    height: 3px;
  }
  .headline-footer::before {
    left: 5.8rem;
    height: 3px;
  }

  .btn-carousel-control-next {
    top: 16rem;
    right: 0;
  }
  .btn-carousel-control-prev {
    top: 13rem;
    right: 0;
  }
  .box-Slider .carousel-indicators {
    bottom: -3rem;
  }
  .box-text-header {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .box-carousel-img {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .box-Slider {
    margin-top: 7.2rem;
    background: -o-linear-gradient(250deg, #ffffff 50%, var(--mainColor) 10%);
    background: linear-gradient(200deg, #ffffff 50%, var(--mainColor) 10%);
  }
  .box-Services-slick,
  .box-Feedback-slick {
    width: 80%;
    margin: auto;
  }
}
@media (max-width: 700px) {
  .box-Slider .carousel-indicators {
    /* bottom: -3rem; */
  }
  .box-icon-nav-mobile {
    /* display: flex; */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;

    width: 100%;

    background-color: #fff;

    /* box-shadow: 2px 2px 20px #b1b1b1; */
    border-bottom: 1px solid #ececec;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-top: 0.8rem;
  }
  .sell-offers {
    margin: 0;
  }
  .box-cart .number-cart {
    left: 12px;
  }

  .count-heart {
    left: 12px;
  }
  .btn-add-to-cart-single {
    padding-left: 0.2rem;
    padding-right: 0.2rem;
    width: 90% !important;
}
.increaseButtonItem, .decreaseButtonItem {
    width: 60px !important;
}
.increaseButtonItem i, .decreaseButtonItem i {
    font-size: 17px;
}
}


.btn-add-to-cart-single::after{
  margin-inline-start: 2px;
}
/* =================================================================================================================================== */
/* Login  Code*/
.modal-body {
  padding: 0;
  overflow: hidden;
}

.modal-content {
  -webkit-box-shadow: -1px -2px 42px -19px rgba(0, 0, 0, 0.74);
  box-shadow: -1px -2px 42px -19px rgba(0, 0, 0, 0.74);
  height: 100%;
}

.modal-content h2 {
  font-size: 1.1em;
}

#secondary {
  background-color: var(--mainColor);
  /* border-radius: 0 2rem 2rem 0; */
  text-align: center;
  width: 100%;
  height: 100%;
}

.box-Modal {
  /* height: 635px; */
}

.box-Modal-SignUp {
  max-width: 500px;
  /* height: 20vh; */
}

.box-Login-mo-pc {
  height: auto;
}

.box-svg svg {
  height: 500px;
}
.box-svg-width {
  display: none;
}

.box-Submit-reset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media(max-width: 575px) {
    .box-Submit-reset {
        display: block !important;
    }
}
.btnEmail,
.btnPhone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.box-Submit-reset button {
  /* width: 100%; */
}
.sec-content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: var(--mainColor) solid 5px;
  padding: 3rem;
}
.box-text-SignUp {
  text-align: center;
}
.box-SignUp {
  width: 100%;
}
.box-SignUp h2 {
  color: var(--mainColor) !important;
  text-align: center;
  font-size: 2rem !important;
}

.icon-login-bracket {
  color: var(--mainColor) !important;
  text-align: center;
  font-size: 2rem;
}

.box-SignUp .box-form-SignUp {
  margin-left: 2rem;
  margin-right: 2rem;
}

.box-SignUp .box-form-SignUp label {
  color: var(--mainColor);
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  /* text-align: center; */
}
.box-SignUp .box-form-SignUp .Phone-Or-Email {
  text-align: center;
}

.modal-content .box-text-SignUp h2 {
  color: var(--mainColor);
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.sec-content h2 {
  color: #fff;
  font-size: 1.3rem;
}
.sec-content h3 {
  color: #fff;
  font-size: 1.1rem;
}

.sec-content p {
  color: #fff;
  font-size: 0.8rem;
  width: 80%;
  text-align: center;
  margin: auto;
}

.box-SignUp .box-form-SignUp .form-control {
  color: var(--mainColor);
  font-size: 0.9rem;
  min-width: 300px;
}

.box-SignUp .box-form-SignUp .form-control::-webkit-input-placeholder {
  color: var(--mainColor);
  font-size: 0.9rem;
}

.box-SignUp .box-form-SignUp .form-control::-moz-placeholder {
  color: var(--mainColor);
  font-size: 0.9rem;
}

.box-SignUp .box-form-SignUp .form-control:-ms-input-placeholder {
  color: var(--mainColor);
  font-size: 0.9rem;
}

.box-SignUp .box-form-SignUp .form-control::-ms-input-placeholder {
  color: var(--mainColor);
  font-size: 0.9rem;
}

.box-SignUp .box-form-SignUp .form-control::placeholder {
  color: var(--mainColor);
  font-size: 0.9rem;
}

.box-SignUp .box-form-SignUp .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid var(--mainColor);
}

.box-SignUp .box-form-SignUp .btn-Submit {
  background-color: var(--mainColor);
  color: #fff;
  border: 1px solid var(--mainColor);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  padding: 0.5rem 3rem;
}

.box-SignUp .box-form-SignUp .btn-Submit:hover {
  background-color: #fff;
  color: var(--mainColor);
  border: 1px solid var(--mainColor);
}

.box-btn-Close-Login .btn-Submit-code {
  background-color: #fff;
  color: var(--mainColor);
  border: 1px solid #fff;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.box-btn-Close-Login .btn-Submit-code:hover {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.box-SignUp .box-form-SignUp .btn-Reset {
  background-color: #fff;
  color: var(--mainColor);
  border: 1px solid var(--mainColor);
}

.box-SignUp .box-form-SignUp .btn-Reset:hover {
  background-color: var(--mainColor);
  color: #fff;
  border: 1px solid var(--mainColor);
}

.btn-Close-Login {
  /* background-color: #fff; */
  /* color: var(--mainColor); */
  /* margin-top: 1rem; */
  /* width: 80%; */
  position: absolute;
  top: 15px;
  right: 40px;
  color: #000;
}
.btn-Login-page-code {
  color: #000;
  text-decoration: underline;
}

.btn-Close-Login {
  background-color: transparent;
  border: none;

  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.6px;
  /* line-height: 35px; */
  position: absolute;
  cursor: pointer;
  padding-right: 21px;
  font-size: 0.9rem;
  color: #000;
  top: 15px;
  right: 35px;
}

.btn-Close-Login::before {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  content: " ";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -1px;
  width: 15px;
  height: 2px;
  display: inline-block;
  background-color: #000;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.btn-Close-Login::after {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  content: " ";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -1px;
  width: 15px;
  height: 2px;
  display: inline-block;
  background-color: #000;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.btn-Close-Login:hover::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.btn-Close-Login:hover::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.box-code {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.box-code input {
  width: 10%;
}
.btn-login {
  background-color: var(--mainColor);
  color: #ffffff;
  border: solid 1px var(--mainColor);
}
@media(min-width: 576px) {
  .btn-login {
      min-width: 125px;
  }
}
.btn-login:hover {
  background-color: #fff;
  color: var(--mainColor);
  border: solid 1px var(--mainColor);
}

/* #Phone ,#email{
  display: none;
} */
.Login-by {
  border: var(--mainColor) solid 1px;
  color: var(--mainColor);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.Login-by:hover {
  border: var(--mainColor) solid 1px;
  background-color: var(--mainColor);
  color: #fff;
}
@media (max-width: 990px) {
  .sec-content p {
    width: 100%;
  }

  .btn-login {
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
  }
}
@media (max-width: 767px) {
  .box-Submit-reset {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .box-SignUp .box-form-SignUp .btn-Submit {
    padding: 0.5rem;
  }
  .box-SignUp .box-form-SignUp {
    margin: 0;
  }
  .sec-content {
    padding: 1rem;
  }
  .box-svg {
    display: none;
  }
  .box-svg-width {
    display: block;
  }
  .box-svg-width svg {
    fill: var(--mainColor);
  }
  q .box-btn-Close-Login .btn-Close {
    width: 100%;
  }
  .sec-content .item-sec-content {
    width: 80%;
    margin: auto;
  }

  .box-Submit-reset .btn-Reset {
    height: 38px;
    /* margin: 0; */
    /* padding: 0; */
  }
}

/* =================================================================================================================================== */
/* Product details */
/* // slider img */

.imgBox {
  width: 40%;
  margin: 50px auto 20px;
  -webkit-transition: all 2s;
  -o-transition: all 2s;
  transition: all 2s;
}

.imgBox img {
  width: 100%;
  border: 4px solid rgb(224, 8, 8);
  -webkit-box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 2s;
  -o-transition: all 2s;
  transition: all 2s;
}

.box-slider-product-Details .carousel-indicators {
  /* background-color: var(--mainColor); */
  position: static;
  margin: 0;
  /* margin-top: 1rem; */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.box-slider-product-Details .carousel-indicators [data-bs-target] {
  width: 70px !important;
  height: 70px !important;
  text-indent: 0;
}

.carousel-control-next,
.carousel-control-prev {
  background-color: var(--mainColor);
  color: var(--mainColor);
  height: 40px;
  width: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* ---------------------------------------- */

.box-product-details {
  margin-top: 3rem;
}

.box-details {
  margin-top: 0rem;
}

.box-details h1 {
  font-size: 1.4rem;
  color: var(--mainColor);

  /* max-width: 30rem; */
  /* white-space: nowrap; */
  /* overflow: hidden; */
  /* text-overflow: ellipsis; */
}

.box-details p {
  color: #b1b1b1;
  margin-top: 1rem;
  margin-bottom: 1rem;

  font-size: 0.8rem;
  max-height: 2.8rem;
  --max-lines: 2;
  display: -webkit-box;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--max-lines);
  color: #9d9b9b;
}

.box-details h2 span {
  color: rgb(0, 0, 0);
  font-size: 1rem;
}

.box-details h2 {
  color: var(--mainColor);

  font-size: 1.4rem;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
}

.box-icon-star i {
  color: gold;
}

.box-Offers-days {
  padding: 0.5rem;
  background-color: rgb(245, 247, 254);
  /* border-radius: 5px; */
}

.message {
  background-color: #fff;
  padding: 0.5rem;
  font-size: 1rem;
  color: #b1b1b1;
  /* border-radius: 5px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.message span {
  color: #000;
}
.message .iconLightning {
  color: gold;
  font-size: 2rem;
}
.estimator_first {
  font-size: 1rem;
  color: #b1b1b1;
}
.estimator_first span {
  font-size: 1rem;
  color: #000000;
}
.type-product {
  color: var(--mainColor);
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.type-product span {
  color: #000;
}
.box-Quantity h2 {
}
.box-btn-heart-product {
  width: 50%;
}
.btn-add-to-cart {
  background-color: var(--mainColor);
  border: solid 1px var(--mainColor);
  color: #fff;
  width: 100%;
}

.btn-add-to-cart:hover {
  color: #fff;
}

.box-product-details .box-heart .btn-heart-product {
  background-color: #efefef;
  color: var(--mainColor);
  width: 40px;
  height: 40px;
  /* border-radius: 100%; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.4rem;
}
.box-Quantity-increase-decrease {
  border: var(--mainColor) solid 1px;
  /* border-radius: 5px; */
  width: 130px;
  height: 37px;
}
.box-Quantity-increase-decrease .btn-increase-decrease {
  border: var(--mainColor) solid 1px;
  /* border-radius: 0 5px 5px 0; */
  border-top: none;
  border-bottom: none;
  border-right: none;
  color: var(--mainColor);
}
.box-Quantity-increase-decrease .btn-increase-increase {
  border: var(--mainColor) solid 1px;
  /* border-radius: 5px 0 0 5px; */
  border-top: none;
  border-bottom: none;
  border-left: none;
  color: var(--mainColor);
}
.box-Quantity-increase-decrease span {
}

.box-Quantity-increase-decrease .Quantity {
  color: var(--mainColor);
  padding: 1rem;
}

.box-payment-product {
  /* border: solid 1px var(--mainColor); */
  /* margin-top: 1rem; */
  /* margin-bottom: 1rem; */
  /* border-radius: 5px; */
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.box-payment-product h2 {
  font-size: 1.1rem;
}
.box-payment-product .box-Payment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.box-payment-product .box-img-Payment {
  width: 60px;
  height: 40px;
  /* border-radius: 5px; */
  background-color: #fff;
  padding: 1px;
}

.box-payment-product.box-img-Payment img {
  width: 100%;
  height: 100%;
  /* border-radius: 5px; */
  -o-object-fit: contain;
  object-fit: contain;
}
.box-icon-text-Other-details {
  text-align: center;
  color: var(--mainColor);
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.box-icon-text-Other-details .icon-Other-details {
  width: 40px;
  height: 40px;
  background-color: var(--mainColor);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /* border-radius: 100%; */
  margin: auto;
}
.box-Other-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* justify-content: space-between; */
  /* align-items: center; */
}
.box-text-details-return-Continuous {
  padding: 1rem;
}

.box-form-Add-increase-decrease {
  /* width: 100%; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* --------------------------------------------------------------------- */
.box-Other-details-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.icon-Other-details-1 {
  color: var(--mainColor);
  font-size: 1.4rem;
}
.text-details-More {
  color: var(--mainColor);
}
.text-details-More a {
  color: #000;
  text-decoration: underline;
}
/* --------------------------------- */
.box-Product-overview p {
  font-size: 0.8rem;
  color: #b1b1b1;
  padding-left: 1rem;
  padding-top: 1rem;
  padding-bottom: 1.4rem;
  /* width: 80%; */
}

.box-Product-overview .tab-Product-details ul {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}

.box-Product-overview .tab-Product-details ul li {
  /* margin-top: .8rem; */
  margin-bottom: 0.5rem;
  color: #b1b1b1;
  position: relative;
  font-size: 0.8rem;
  padding-left: 1.2rem;
}

.box-Product-overview .tab-Product-details ul li::after {
  position: absolute;
  top: 5px;
  left: 0;

  font: var(--fa-font-solid);

  content: "\f05a";
  color: var(--mainColor);
}

.box-we-always {
  padding-top: 1rem;
  padding-bottom: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}
.box-we-always h2 {
  color: var(--mainColor);
  font-size: 1.2rem;
}

.box-we-always p {
  color: var(--mainColor);
  font-size: 0.9rem;
}
.Link-Mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: var(--mainColor);
}

.Link-Mail .icon-mail {
  width: 30px;
  height: 30px;
  background-color: var(--mainColor);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /* border-radius: 50%; */
}
.box-item-tab {
  margin: 2rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: var(--mainColor);
  border-radius: var(--borderRadius);
}
.nav-link {
  color: #b1b1b1;
}

.nav-link:hover {
  color: var(--mainColor);
}

.box-all-tab .nav-pills {
  padding: 1rem;
  border-bottom: solid var(--mainColor);
}

/* ----------------------------------------------------- */
/* rating */
.box-rating .headline {
  font-size: 1.2rem;
}
.box-rating-text-titel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  /* text-align: center; */
}
.box-Rate-this-product {
  font-size: 1rem;
}
.star {
  color: gold;
}
.box-Your-Rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-top: 2rem;
  /* margin-bottom: 1rem; */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.box-Your-Rating h3 {
  color: #b1b1b1;
  font-size: 1rem;
}
.box-Your-Rating-icon ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
}
.box-Your-Rating-icon ul li {
  color: gold;
  cursor: pointer;
  font-size: 1.4rem;
  position: relative;
}
.box-Your-Rating-icon ul li::after {
  font: var(--fa-font-regular);
  content: "\f005";
}

.box-Your-Rating-icon ul li:hover::after {
  font: var(--fa-font-solid);
  content: "\f005";
}

.box-Your-Rating-icon ul li.active-star::after {
  font: var(--fa-font-solid);
  content: "\f005";
}

select,
textarea,
input {
  color: var(--mainColor) !important;
  font-size: 0.9rem !important;
  border: var(--mainColor) solid 1px;
}

textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: var(--mainColor) !important;
  font-size: 0.9rem !important;
}

textarea::-moz-placeholder,
input::-moz-placeholder {
  color: var(--mainColor) !important;
  font-size: 0.9rem !important;
}

textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
  color: var(--mainColor) !important;
  font-size: 0.9rem !important;
}

textarea::-ms-input-placeholder,
input::-ms-input-placeholder {
  color: var(--mainColor) !important;
  font-size: 0.9rem !important;
}

textarea::placeholder,
input::placeholder {
  color: var(--mainColor) !important;
  font-size: 0.9rem !important;
}

select:focus,
textarea:focus,
input:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: solid 1px var(--mainColor) !important;
}

/* ----------------------------------------------------- */
.box-aside-Cart {
  padding: 1.6rem;
  max-width: 100%;
}
.box-aside-Cart h2 {
  color: #b1b1b1;
  font-size: 0.9rem;
  text-transform: uppercase;
}
.btn-close-cart {
  background-color: transparent;
  border: none;

  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.6px;
  /* line-height: 35px; */
  position: relative;
  cursor: pointer;
  padding-right: 21px;
  font-size: 0.9rem;
  color: #b1b1b1;
}

.btn-close-cart::before {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  content: " ";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -1px;
  width: 15px;
  height: 2px;
  display: inline-block;
  background-color: #b1b1b1;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.btn-close-cart::after {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  content: " ";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -1px;
  width: 15px;
  height: 2px;
  display: inline-block;
  background-color: #b1b1b1;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.btn-close-cart:hover::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.btn-close-cart:hover::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.box-aside-Cart .offcanvas-header {
  padding: 0;
  overflow: hidden;
}
.box-aside-Cart .offcanvas-body {
  padding: 0;
  overflow-x: hidden;
}
.box-aside-Cart .offcanvas-body h3 {
  font-size: 1rem;
  color: var(--mainColor);
  margin: 0;
  width: 220px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.box-aside-Cart .offcanvas-body .box-Quantity-increase-decrease-aside {
  font-size: 0.8rem;
  color: var(--mainColor);
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.box-Quantity-increase-decrease-aside {
  border: var(--mainColor) solid 1px;
  /* border-radius: 5px; */
  width: 116px;
  height: 30px;
}
.box-Quantity-increase-decrease-aside .btn-increase-decrease {
  border: var(--mainColor) solid 1px;
  /* border-radius: 0 5px 5px 0; */
  border-top: none;
  border-bottom: none;
  border-right: none;
  color: var(--mainColor);
  font-size: 0.7rem;
}
.box-Quantity-increase-decrease-aside .btn-increase-increase {
  border: var(--mainColor) solid 1px;
  /* border-radius: 5px 0 0 5px; */
  border-top: none;
  border-bottom: none;
  border-left: none;
  color: var(--mainColor);
  font-size: 0.7rem;
}

.box-Quantity-increase-decrease-aside .Quantity {
  padding: 0.6rem;
}
.box-trash {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.box-trash .btn-cart {
  background-color: transparent;
  color: #b1b1b1;
  border: none;
  padding: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.box-trash .btn-cart:hover {
  color: #fff;
}

.box-trash .btn-cart:hover::after {
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  color: var(--mainColor);
  content: "\f218";
}

.box-trash .btn-cart.active-cart::after {
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  content: "\f218";
  color: var(--mainColor);
}

.box-aside-Cart-link-cart-link-CheckOut .link-Cart,
.box-aside-Cart-link-cart-link-CheckOut .link-Cart-Danger {
  color: #fff;
  width: 100%;
  padding: 0.6rem;
  text-align: center;
  border: var(--mainColor) solid 1px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  margin: 0 5px;
  border-radius: var(--borderRadius);
}
.box-aside-Cart-link-cart-link-CheckOut .link-Cart {
  background-color: var(--mainColor);
}
.box-aside-Cart-link-cart-link-CheckOut .link-Cart-Danger {
  background-color: rgb(173, 0, 0);
  border-color: rgb(173, 0, 0);
}

.box-aside-Cart-link-cart-link-CheckOut .link-Cart:hover {
  background-color: transparent;
  color: var(--mainColor);
  border: var(--mainColor) solid 1px;
}
.box-aside-Cart-link-cart-link-CheckOut .link-Cart-Danger:hover {
  background-color: transparent;
  color: rgb(173, 0, 0);
  border: rgb(173, 0, 0) solid 1px;
}
.box-img-aside-cart {
  background-color: var(--mainColor);
  /* border-radius: 10px; */
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
}
.box-img-aside-cart img {
  height: 60px;
}
.box-aside-cart-img-Quantity-trash {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* text-align: center; */
}
.border-aside-cart {
  /* border-bottom: var(--mainColor) solid 0.1rem; */
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  opacity: 0.25;
}
.box-aside-cart-img-Quantity-trash-border .border-aside-cart:last-child {
  /* display: none; */
  /* border: none; */
}
.box-all-tab h3 {
  color: #b1b1b1;
  font-size: 1rem;
  /* margin-top: 2rem; */
}
.box-aside-Cart .box-TOTAL-aside-Cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1rem;
  color: #333333;
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}
.box-aside-Cart .box-TOTAL-aside-Cart h3 {
  font-size: 1rem;
}
.box-aside-Cart-link-cart-link-CheckOut {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.box-aside-Cart-link-cart-link-CheckOut .link-Cart {
  background-color: var(--mainColor);
  color: #fff;
  padding: 0.6rem;
  text-align: center;
  border: var(--mainColor) solid 1px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.box-aside-Cart-link-cart-link-CheckOut .link-Cart:hover {
  background-color: transparent;
  color: var(--mainColor);
  border: var(--mainColor) solid 1px;
}

.box-aside-Cart-link-cart-link-CheckOut .link-CheckOut {
  background-color: #000;
  color: #fff;
  width: 100%;
  padding: 0.6rem;
  text-align: center;
  border: #000 solid 1px;
  /* border-radius: 5px; */
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.box-aside-Cart-link-cart-link-CheckOut .link-CheckOut:hover {
  background-color: transparent;
  color: #000;
  border: #000 solid 1px;
}
.aside-cart-price {
  font-size: 0.8rem;
  color: var(--mainColor);
  margin-right: 1rem;
}
.box-Only-Free-Shipping .progress-bar {
  background-color: var(--mainColor);
}
.box-Only-Free-Shipping .progress {
  height: 4rem;
}
.box-aside-cart-icon-truck {
  text-align: left;
}
.box-aside-cart-icon-truck i {
  color: #fff;
  /* text-align: left; */
  font-size: 1.2rem;
  -webkit-animation-name: box-aside-cart;
  animation-name: box-aside-cart;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  /* animation-direction: alternate; */
  /* transform: translate(0); */
  position: relative;
  /* transform: rotateY(deg); */
  left: -100%;
}

/* @keyframes box-aside-cart {
  0% {
    left: 0;
    top: 0;
    transform: rotateY(0deg);
  }
  50% {
    left: 320px;
    top: 0;
    transform: rotateY(0deg);
  }
  51% {

    left: 320px;

    top: 0;
    transform: rotateY(180deg);
  }
  100% {
    left: 0;
    top: 0;
    transform: rotateY(180deg);
  }
} */

@-webkit-keyframes box-aside-cart {
  0% {
    left: -100%;
    top: 0;
  }

  100% {
    left: 100%;
    top: 0;
  }
}

@keyframes box-aside-cart {
  0% {
    left: -100%;
    top: 0;
  }

  100% {
    left: 100%;
    top: 0;
  }
}

.box-aside-Cart .offcanvas-body::-webkit-scrollbar {
  width: 5px;
  /* display: none; */
}

.box-aside-Cart .offcanvas-body::-webkit-scrollbar-track {
  background-color: transparent;
}

.box-aside-Cart .offcanvas-body::-webkit-scrollbar-thumb {
  background: var(--mainColor);
}

.box-aside-Cart .offcanvas-body::-webkit-scrollbar-thumb:hover {
  background: var(--mainColor);
}

.btn-Rating-comment {
  background-color: var(--mainColor);
  color: #fff;
  border: 1px solid var(--mainColor);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: var(--borderRadius);
}
.btn-Rating-comment:hover {
  background-color: transparent;
  color: var(--mainColor);
  border: 1px solid var(--mainColor);
}

.box-Product-evaluation {
}
.box-Product-evaluation h2 {
  font-size: 1.2rem;
}

.Letter-evaluation {
  font-size: 1rem;
  color: #fff;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100%;
  min-width: 30px;
}
.Letter-evaluation,
.btn.show {
  background-color: var(--mainColor);
}

.box-Letter-name-deta-evaluation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.box-Letter-name-deta-evaluation h4 {
  font-size: 0.8rem;
  color: var(--mainColor);

  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.box-Letter-name-deta-evaluation h5 {
  font-size: 0.8rem;
  color: #b1b1b1;
}
.box-Product-evaluation p {
  font-size: 0.7rem;
  color: #b1b1b1;
  /* width: 80%; */
  padding: 0;

  max-height: 2.8rem;
  --max-lines: 2;
  display: -webkit-box;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--max-lines);
  /* margin-left:2.6rem ; */
}
.btn-Reply {
  font-size: 0.8rem;
  color: #fff;
  padding: 0;
  background-color: var(--mainColor);
  border-radius: 4px;
  padding: 0.1rem 1rem;
  margin: 1rem 0;
}

.btn-Reply:hover {
  color: #fff;
  background-color: var(--mainColor);
}

.box-after-Reply {
  margin-left: 3rem;

  padding-top: 1rem;
}
.box-textarea-Reply {
  margin-left: 3rem;
  position: relative;
}

.btn-send-textarea-Reply {
  color: var(--mainColor);
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 1.4rem;
  padding: 0.2rem;
}

.btn-send-textarea-Reply:hover {
  color: var(--mainColor);
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 1.4rem;
}

.box-Product-evaluation {
  border-bottom: 1px solid var(--mainColor);
}

.box-Highest-rated-5 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  color: #38ac04;
}

.box-Highest-rated-5 ul li::after {
  font: var(--fa-font-solid);
  content: "\f005";
}

.dropdown-menu.show {
  width: 100%;
}
.btn.show {
  background-color: var(--mainColor);
  border: none;
}
.box-Product-evaluation .dropdown-item {
  /* border-bottom: 1px solid var(--mainColor); */
  color: var(--mainColor);
}

.box-item-Product-evaluation {
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 416px;
  margin-top: 1rem;
  padding: 1rem;
}
.Letter-evaluation-Reply {
  position: relative;
}

.item-product-evaluation {
  border-bottom: 1px solid var(--mainColor);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.item-product-evaluation:last-child {
  border: none;
}
.btn-Choose-product-rating {
  border: 1px solid var(--mainColor);
  color: var(--mainColor);
  background-color: transparent;
}

.btn-Choose-product-rating.show {
  border: 1px solid var(--mainColor);
  color: var(--mainColor);
  background-color: transparent;
}

.btn-Choose-product-rating:hover {
  border: 1px solid var(--mainColor);
  color: var(--mainColor);
  background-color: transparent;
}

.box-item-Product-evaluation::-webkit-scrollbar {
  width: 5px;
  /* display: none; */
}

.box-item-Product-evaluation::-webkit-scrollbar-track {
  background-color: transparent;
}

.box-item-Product-evaluation::-webkit-scrollbar-thumb {
  background: var(--mainColor);
}

.box-item-Product-evaluation::-webkit-scrollbar-thumb:hover {
  background: var(--mainColor);
}
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */

@media (max-width: 1270px) {
}

@media (max-width: 990px) {
  .box-Services-slick,
  .box-Feedback-slick {
    width: 85%;
    margin: auto;
  }
}

@media (max-width: 790px) {
  .box-form-Add-increase-decrease {
    position: fixed;
    bottom: 0;
    left: 0;
    /* transform: translate(-50%); */
    width: 100%;
    background-color: #fff;
    padding:1rem 0.4rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 200;
    -webkit-box-shadow: 10px 10px 10px #000;
    box-shadow: 10px 10px 10px #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #progress {
    position: fixed;
    /* bottom: 66px; */
    /* right: 25px; */

    /* height: 50px;
    width: 50px; */
    border-radius: 50%;

    display: none;
    place-items: center;

    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);

    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);

    cursor: pointer;
    z-index: 200;
  }
  .box-rating-text-titel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .box-Rate-this-product {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .box-all-tab .nav-pills {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .box-all-tab .nav-pills li {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .box-Product-evaluation p {
    margin: auto;
  }
}

/* ------------------------------------ */

/* =================================================================================================================================== */
/* Cart page */
.box-YOUR-SHOPPING-CART {
  margin-top: 3rem;
}
.link-page-home-Present {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.link-page-home-Present h1 {
  color: var(--mainColor);
  font-size: 1.2rem;
  text-transform: uppercase;
}

.link-page-home-Present h2 {
  font-size: 0.9rem;
  color: var(--mainColor);
  margin: 0;
  text-transform: uppercase;
}

.link-page-home-Present a {
  color: #b1b1b1;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.link-page-home-Present a:hover {
  color: var(--mainColor);
}

.link-page-home-Present span {
  color: #000;
  font-size: 0.8rem;
}
.box-head-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* justify-content: space-between; */
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  border-top: solid var(--mainColor) 1px;
  border-bottom: solid var(--mainColor) 1px;
  padding: 1rem;
  padding-bottom: 1rem;
  padding-left: 0;
  background-color: rgb(245, 247, 254, 0.3);
}
.box-head-cart h3 {
  font-size: 1rem;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  color: #000;
  margin: 0;
}

.box-body-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  /* border-bottom: solid var(--mainColor) 1px; */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* margin-bottom: 1rem; */
  padding: 1rem;
  padding-bottom: 1rem;
  padding-left: 0;
  background-color: #fff;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.box-all-body-cart {
  /* background-color: rgb(245, 247, 254, 0.5); */
  /* margin: 1rem; */
  /* background-color: #ad0000; */
  /* padding: 1rem; */
}

.PRODUCT-img {
  width: 90px;
  /* height: 60px; */
  background-color: var(--mainColor);
  overflow: hidden;
}
.box-body-cart img {
  width: 100%;
  height: 100%;
}
.box-body-cart .box-PRODUCT-img-titel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* width: 100%; */
}

.box-body-cart .box-PRODUCT-img-titel h4 {
  font-size: 0.8rem;
  color: var(--mainColor);
  /* white-space: nowrap; */
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  font-weight: 700;
}

.box-body-cart .box-PRODUCT-img-titel p {
  font-size: 0.7rem;
  color: #b1b1b1;
  max-width: 7rem;

  max-height: 2.8rem;
  --max-lines: 2;
  display: -webkit-box;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--max-lines);
}
.box-body-cart .price {
  font-size: 0.8rem;
  color: #000;
  /* display: block; */
}
.pc-Quantity-cart,
.pc-trash-cart {
  display: block;
}

.mo-box-trash-Quantity {
  display: none;
}
.box-body-cart .mo-price {
  display: none;
}

.mo-trash-cart {
  display: none;
}

.box-trash .btn-trash span {
  color: #000;
  text-decoration: underline;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.box-trash .btn-trash span:hover {
  color: #ad0000;
  text-decoration: underline;
}

/* --------------------------------------------- */
.form-cart {
  /* min-width: 125px; */
  max-width: 110px;
  height: 40px;
  border: 1px solid var(--mainColor);
  border-radius: 4px;
  position: relative;
  /* height: 48px; */
  /* margin-right: 8px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.btn-increase-increase,
.btn-increase-decrease {
  /* background-color: #38ac04; */
  border-radius: 0;
  border: none;
  padding: 0;
  font-size: 0.8rem;

  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 38px;
}

.increaseButtonItem,
.decreaseButtonItem{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height:38px;
}
.quantityInput{
  width: 40px;
  padding: 0;
  height: 34px;
}

.btn-increase-increase:hover,
.btn-increase-decrease:hover {
  background-color: transparent;
  border-radius: 0;
  border: none;
  color: #fff;
}

.btn-increase-increase:focus,
.btn-increase-decrease:focus {
  /* background-color: #38ac04; */
  border-radius: 0;
  border: none;
}

.form-cart input[type="text"] {
  border: 0px;
  height: 100%;
  width: 100%;
  text-align: center;

  /* height: 48px; */
  /* border-radius: 4px; */
  color: #555555;
  border-left: 1px solid var(--mainColor);
  border-right: 1px solid var(--mainColor);
  /* padding: 10px 20px; */
  border-radius: 0;
}
.form-cart input[type="text"]:focus {
  border-top: none !important;
  border-bottom: none !important;
}
.box-Calculate-shipping-cart {
  /* margin-left: 1rem; */
  /* border: solid 1px var(--mainColor); */
  padding: 1rem;
  border-radius: 5px;
  background-color: #fff;
  margin: 1rem;
}
.box-Calculate-shipping-cart .box-item-Calculate-shipping-car {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid var(--mainColor);
  padding: 0.7rem 0 1rem 0;
}

.box-Calculate-shipping-cart .box-item-Calculate-shipping-car:last-child {
  border-bottom: none;
}
.box-Calculate-shipping-cart .box-item-Calculate-shipping-car h3 {
  font-size: 0.8rem;

  font-weight: 700;
  color: #323232;
  margin: 0;
}
.box-Calculate-shipping-cart .box-item-Calculate-shipping-car span {
  font-size: 0.8rem;

  color: var();
  color: var(--mainColor);
}
.customCheckbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /* margin: 0; */
  line-height: 18px;
  gap: 10px;
  margin: 1.4rem 0;
}

.customCheckbox #cart-tearm {
  width: 20px;
}
.customCheckbox label {
  cursor: pointer;
  font-size: 0.8rem;
  color: #b1b1b1;
}
.box-Check-Out a {
  background-color: var(--mainColor);
  text-align: center;
  color: #fff;
  border: 1px solid var(--mainColor);
  padding: 1rem;
  width: 100%;
  display: block;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  font-size: 1rem;
  border-radius: var(--borderRadius);
}
.box-Check-Out a:hover {
  background-color: transparent;
  color: var(--mainColor);
  border: 1px solid var(--mainColor);
}

.box-Calculate-shipping-cart h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--mainColor);
}
.box-Calculate-shipping-cart p {
  font-size: 0.8rem;
  color: #b1b1b1;
}
.box-Calculate-shipping-cart .box-icon-star-Replace {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.box-Calculate-shipping-cart .box-icon-star-Replace .btn-Replace {
  background-color: var(--mainColor);
  color: #fff;
  border: var(--mainColor) 1px solid;
  font-size: 0.8rem;
  border-radius: 0;
}

.box-Calculate-shipping-cart .box-icon-star-Replace .btn-Replace:hover {
  background-color: transparent;
  color: var(--mainColor);
  border: var(--mainColor) 1px solid;
}

.box-Calculate-shipping-cart .box-icon-star-Replace p {
  color: var(--mainColor);
  margin-bottom: 1rem;
}

.box-Calculate-shipping-cart
  .box-icon-star-Replace
  .box-icon-star-Congratulations {
  background-color: var(--mainColor);
  color: #fff;
  min-width: 40px;
  height: 40px;
  font-size: 1.4rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.box-Calculate-shipping-cart-first {
  /* margin-top: 1rem; */
  margin-bottom: 1rem;
}
.box-item-prduct-all {
  background-color: rgb(245, 247, 254, 0.5);
  padding: 0.5rem;
}
.box-item-prduct-all .box-item-prduct {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.5rem;
  /* border-bottom: 1px solid var(--mainColor); */
  background-color: #fff;
  margin: 0.5rem;
}
.box-item-prduct-all .box-item-prduct:last-child {
  /* border-bottom: none; */
}
.box-img-prduct-Check {
  width: 80px;
  height: 80px;
}
.box-img-prduct-Check img {
  width: 100%;
  height: 100%;
}

.box-item-prduct-all .box-item-prduct h4 {
  font-size: 1rem;
  max-width: 9rem;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  color: var(--mainColor);
}
.box-head-Check {
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  margin-bottom: 1rem;
}

.box-head-Check h3 {
  font-size: 1rem;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  color: var(--mainColor);
  margin: 0;
  text-transform: uppercase;
}
.box-item-prduct-all .box-item-prduct .price-Check {
  font-size: 0.9rem;
  font-weight: 600;
  color: #b1b1b1;
}
.box-alert {
  font-size: 0.8rem;
}
.box-alert span i {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  /* background-color: #ad0000; */
  margin-right: 0.5rem;
  /* font-size: 1.2rem; */
}
.box-item-Calculate-Check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid var(--mainColor);
  padding: 0.7rem 0 1rem 0;
}

.box-item-prduct-all .box-item-prduct h5 {
  font-size: 1rem;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  color: #333333;
}
.box-item-prduct-all .box-item-prduct h5 {
  font-size: 1rem;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  color: #333333;
}

.box-item-prduct-all .box-item-prduct .price-Check-2 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mainColor);
}
.btn-Discount-verb {
  background-color: var(--mainColor);
  color: #fff;
  font-size: 0.8rem;
  border: solid 1px var(--mainColor);
}
.btn-Discount-verb:hover {
  background-color: transparent;
  color: var(--mainColor);
  border: solid 1px var(--mainColor);
}
.box-item-prduct-all-2 {
  background-color: rgb(245, 247, 254, 0.5);
  padding: 0.5rem;
  margin-top: 2.2rem;
}
.box-item-prduct-all-2 .box-item-prduct {
  padding: 0.5rem;
  background-color: #fff;
  margin: 0.5rem;
}
.box-alert-discount {
  font-size: 0.7rem;
  border: none;
  padding: 0;
  border-radius: 0;
  color: var(--mainColor);
  padding: 0.5rem;
}
.box-alert-Expected {
  color: #000;
  font-size: 0.7rem;
  border: none;
  padding: 0;
  border-radius: 0;
  padding: 0.5rem;
  display: inline-block;
}
.box-alert-Expected span {
  color: var(--mainColor);
}
.box-label-Default-address {
  font-size: 0.9rem;
  color: var(--mainColor);
}
.form-check-input {
  font-size: inherit !important;
}
.form-check-input:checked {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}
.btn-Change-Address {
  background-color: transparent;
  font-size: 0.9rem;
  color: var(--mainColor);
  text-decoration: underline;
}
.box-item-prduct-all-2 .box-item-prduct h3 {
  font-size: 1.4rem;
}

.box-Store-Choose-Address .ul-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.headlineSub {
  position: relative;
  color: var(--mainColor);
}
.headlineSub::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 2px;
  background-color: var(--mainColor);
}

.headlineSub::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 120px;
  width: 10px;
  height: 2px;
  background-color: var(--mainColor);
}
.box-Choose-Payment-Method .nav-pills {
  /* box-shadow: -10px 10px 15px #eeeeee; */
  padding-top: 0.8rem;
  padding-bottom: 0.5rem;
  margin-top: 1rem;
  /* margin-bottom: 1rem; */
}
.box-Choose-Payment-Method .tab-content {
  /* padding-left: 2rem; */
}
.box-modal-address {
  background-color: rgb(245, 247, 254, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.8rem;
  margin: 0.8rem;
  border-radius: 0.5rem;
}
.box-modal-address .item-address h3 {
  font-size: 0.9rem;
  color: var(--mainColor);
  font-weight: 400;
}
.box-modal-address .item-address h4 {
  font-size: 0.9rem;
  color: #000;
}
.box-modal-address .item-address p {
  font-size: 0.8rem;
  color: #b1b1b1;
}
.box-modal-address .item-address span {
  font-size: 0.9rem;
  color: #555555;
}
.border-right-address {
  width: 8px;
  height: 80px;
  background-color: var(--mainColor);
  border-radius: 5px;
  margin-right: 1rem;
}

.btn-Save-changes {
  background-color: var(--mainColor);
  color: #fff;
  /* padding: .6rem .8rem; */
  border: var(--mainColor) solid 1px;
}
.btn-Save-changes:hover {
  background-color: transparent;
  color: var(--mainColor);
  /* padding: .6rem .8rem; */
  border: var(--mainColor) solid 1px;
}

.item-address .form-check-label {
  font-size: 0.8rem;
  color: var(--mainColor);
  cursor: pointer !important;
}
.form-check-label {
  cursor: pointer !important;
}
.box-modal-addres .modal-dialog {
  max-width: 800px;
}
.box-add-Address a {
  background-color: var(--mainColor);
  color: #fff;
  padding: 0.6rem 0.8rem;
  border: var(--mainColor) solid 1px;
  font-size: 0.8rem;
  border-radius: 5px;
}

.box-add-Address a:hover {
  background-color: transparent;
  color: var(--mainColor);
  padding: 0.6rem 0.8rem;
  border: var(--mainColor) solid 1px;
}
.modal-footer {
  display: block;
}

.bg-success-4 {
  background-color: rgb(245, 247, 254, 0.5);
}

.btn-Close-ship-address {
  background-color: var(--mainColor);
  color: #fff;
  padding: 0.6rem 0.8rem;
  border: var(--mainColor) solid 1px;
  font-size: 0.8rem;
  padding-left: 3rem;
  padding-right: 3rem;
  margin-top: 0.8rem;
  border-radius: var(--borderRadius);
}
.btn {
  border-radius: var(--borderRadius);
}
.btn-Close-ship-address:hover {
  background-color: transparent;
  color: var(--mainColor);
  /* padding: 0.6rem 0.8rem; */
  border: var(--mainColor) solid 1px;
}
.box-Credit-Cards {
  /* margin-left: 2rem; */
}
.box-Credit-Cards h3 {
  color: var(--mainColor);
  font-size: 1rem;
}
.box-Credit-Cards label {
  font-size: 0.9rem;
  color: #b1b1b1;
}
.btn-send {
  background-color: var(--mainColor);
  color: #fff;
  padding: 0.6rem 1.8rem;
  border: var(--mainColor) solid 1px;
  font-size: 0.8rem;
}
.btn-send:hover {
  background-color: transparent;
  color: var(--mainColor);
  /* padding: 0.6rem 0.8rem; */
  border: var(--mainColor) solid 1px;
}
.logo-Bank {
  width: 120px;
  height: 100px;
  -o-object-fit: cover;
  object-fit: cover;
}
.logo-Bank img {
  width: 100%;
  height: 100%;
}
.box-show-Choose-Bank h4 {
  font-size: 0.9rem;
  color: var(--mainColor);
}
.bg-Choose-Bank {
  background-color: rgb(245, 247, 254, 0.5);
  /* background-color: #ad0000; */
  padding: 1.4rem 0.8rem;
}
#flexRadioDefault1 {
  cursor: pointer;
}
.box-item-prduct-all-2 .nav-link {
  color: #b1b1b1;
  border: solid 1px #b1b1b1;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  height: 45px;
  border-radius: var(--borderRadius);

}
.box-item-prduct-all-2 .nav-pills .nav-link {
  font-size: 0.8rem;
}
.box-item-prduct-all-2 .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: transparent;
  color: var(--mainColor);
  border: var(--mainColor) solid 2px;
}
.box-item-prduct-all-2 .nav-link:hover {
  color: var(--mainColor);
}
.box-Store h4 {
  font-size: 0.9rem;
  color: #b1b1b1;
}
.box-Store h5 {
  font-size: 0.9rem;
  color: #000;
}

.box-Times-Work {
  /* margin-left: 1rem; */
}
.box-Times-Work h6 {
  margin-bottom: 0.9rem;
}
.box-Times-Work span {
  color: var(--mainColor);
}
.box-Times-Work h6 {
  color: var(--mainColor);
  font-size: 0.8rem;
}

.item-Times-Work {
  background-color: rgb(245, 247, 254, 0.8);

  /* padding: 0.6rem; */
  border-radius: 5px;
  /* width: 30%; */
  /* margin: 0.5rem; */
  padding-left: 0.3rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.box-all-address {
  background-color: rgb(245, 247, 254, 0.8);
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-top: 1rem;
}
.box-img-tab-Payment-Methods {
  width: 28px;
  /* height: 30px; */
}

.box-img-tab-Payment-Methods img {
  width: 94%;
  height: 100%;
  -o-object-fit: fill;
  object-fit: fill;
}
.box-map iframe {
  width: 100%;
  height: 30vh;
  border-radius: 10px;
  /* filter: invert(90%); */
}
.box-Closed {
  background-color: rgb(245, 247, 254, 0.8);
  padding: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.box-Closed h4 {
  color: #b1b1b1;
  font-size: 0.9rem;
}
.box-Closed h4 span {
  font-size: 1rem;
  color: #ad0000;
}
.box-Closed h4 span i {
  font-size: 1.4rem;
  color: #ad0000;
  margin-right: 0.5rem;
}
.box-Open {
  background-color: rgb(245, 247, 254, 0.8);
  padding: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.box-Open h4 {
  color: #b1b1b1;
  font-size: 0.9rem;
}
.box-Open h4 span {
  color: #00b00f;
  font-size: 1rem;
}
.box-Open h4 span i {
  color: #00b00f;
  font-size: 1.4rem;
  margin-right: 0.5rem;
}
.box-all-phone-wha {
}
.box-col-phone-wha {
  margin: 0rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  /* background-color: var(--mainColor); */
  padding: 0.5rem;
  border: #b1b1b1 1px solid;
  color: var(--mainColor);
  border-radius: 10px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  font-size: 0.9rem;
}
.box-col-phone-wha:hover {
  background-color: var(--mainColor);
  border: #b1b1b1 1px solid;
  color: #fff;
}
.box-col-phone-wha:hover .icon {
  background-color: #fff;
  border: #b1b1b1 1px solid;
  color: var(--mainColor);
}
.box-col-phone-wha .icon {
  font-size: 0.9rem;
  width: 30px;
  height: 30px;
  background-color: var(--mainColor);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
}

/* ------------------------------------------------------------ */
.userphoto__cta {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* justify-content: center; */
  /* margin-bottom: 12px; */
}
.userphoto__upload-btn .icon-down {
  margin-right: 1rem;
  font-size: 1.4rem;
}
.position-r {
  position: relative;
  z-index: 2;
}

.css-khsv9a {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.userphoto__upload-btn {
  display: block;
}
.box-Credit-Cards .userphoto__cta .css-1tmeftp {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0px 12px;
  border: 1px solid transparent;
  border-radius: var(--borderRadius);
  text-decoration: none;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  /* min-width: 80px; */
  min-height: 40px;
  line-height: 32px;
  background-color: var(--mainColor);
  color: #fff;
}

.box-modal-form {
  padding: 1rem;
}
.box-modal-form label {
  font-size: 0.8rem;
  color: var(--mainColor);
}
.box-square {
  color: #000;
  font-size: 1.2rem;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.box-trash-address {
  color: #000;
  font-size: 1.2rem;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.box-square:hover {
  color: #009e0de7;
  font-size: 1.2rem;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
.box-trash-address:hover {
  color: #ad0000;
  font-size: 1.2rem;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.box-items-Profile-2 {
  background-color: #fff;
  padding: 1rem;
}
/* ========================================================================================= */
/* Profile */
.box-Profile {
}
.box-Profile .box-item-Profile {
  background-color: rgb(245, 247, 254, 0.8);
  padding: 2rem;
  border-radius: 5px;
}
.box-item-Profile h3 {
  color: var(--mainColor);
  font-size: 1rem;
}
.box-item-Profile h4 {
  color: #000;
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  /* max-width: 70%; */
  font-weight: 700;
}
.box-Hello-name {
  /* padding-right: 1rem; */
  padding-bottom: 0.1rem;
}

.box-item-Profile .nav-link {
  /* color: var(--mainColor); */
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: #fff;
  text-align: left;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.box-item-Profile .btn-Logout {
  font-size: 1rem;
  font-weight: 400;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  /* background-color: #fff; */
  width: 100%;
  text-align: left;
}
.box-item-Profile .btn-Logout:focus {
  border: none;
}
.box-item-Profile .btn-Logout h5 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--mainColor);
}

.box-item-Profile .nav-link:hover {
  color: #fff;
  background-color: var(--mainColor);
}
.box-item-Profile span {
  margin-right: 1rem;
}

.box-item-Profile h5 .active-Link-Profile {
  background-color: var(--mainColor);
  width: 100%;
  color: #fff;
}
.box-item-data {
  padding-top: 0.5rem;
}
.box-item-data h2 {
  font-size: 1.4rem;
  color: var(--mainColor);
  padding-bottom: 1rem;
}
.box-item-data label {
  font-size: 0.8rem;
  color: var(--mainColor);
}
.box-item-data .input-item-profil {
  background-color: transparent;
}

.btn-Updating {
  background-color: var(--mainColor);
  border: var(--mainColor) 1px solid;
  color: #fff;
  font-size: 0.9rem;
  padding: 0.5rem 3rem;
  border-radius: var(--borderRadius);
}
.btn-Updating:hover {
  background-color: transparent;
  border: var(--mainColor) 1px solid;
  color: var(--mainColor);
  font-size: 0.9rem;
}
.box-item-data .userphoto__cta {
  cursor: pointer;
  /* margin-top: 1.6rem; */
  margin: 0;
  border-bottom: #dee2e6 solid 1px;
}
.box-item-data .userphoto__upload-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.box-item-data .box-Credit-Cards .box-modal-address {
  padding: 0.8rem;
  margin: 0.8rem;
  padding-left: 0;
  margin-left: 0;
  padding-right: 0;
  margin-right: 0;
  border-bottom: 1px solid var(--mainColor);
  border-radius: 0;
  padding: 0.5rem;
}
.box-Orders-details {
  padding: 1rem;
  background-color: #fff;
  margin-top: 2rem;
  border-radius: 5px;
}
.box-Orders-details h5 {
  font-size: 0.8rem;
  color: #b1b1b1;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  padding-left: 0.9rem;
  background-color: rgb(245, 247, 254, 0.8);
}
.box-Orders-details h5 span {
  color: #000;
  font-size: 0.9rem;
  margin-right: 0.5rem;
}
.box-item-Profile p {
  font-size: 0.9rem;
  color: #b1b1b1;
}
.box-item-Profile p span {
  color: #ffffff;
  background-color: #38ac04;
  padding: 0.3rem;
  font-size: 0.7rem;
}
.box-Hello-name h6 {
  font-size: 1.2rem;
  color: #333333;
  font-weight: 700;
}
.box-table th {
  font-size: 0.7rem;
  font-weight: 600;
}
.box-table td,
.box-table td a {
  font-size: 0.7rem;
  /* font-weight: 600; */
  color: #b1b1b1;
}
.box-item-data h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #373737;
}

.box-item-data h6 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1.4rem;
  color: #373737;
}
.box-item-data h6 span {
  color: #e60000;
}
.box-common-questions .accordion-item {
  margin: 1.4rem 0;
  /* padding: .5rem; */
}
.box-common-questions #accordionExample {
  background-color: #fff;
  padding: 0;
}
.box-common-questions .accordion-item {
  border: #dee2e6 solid 0.5px;
  border-radius: 5px;
}
.box-common-questions .accordion-item .accordion-button {
  padding: 1.2rem;
  background-color: rgb(245, 247, 254, 0.8);
  -webkit-box-shadow: none;
  box-shadow: none;
  /* color: #fff; */
}

.box-common-questions .accordion-item .accordion-button:not(.collapsed) {
  background-color: rgb(245, 247, 254, 0.8);
}

.box-common-questions .btn-FAQ {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  font-size: 1rem;
  padding: 1rem;
  background-color: rgb(245, 247, 254, 0.8);
  -webkit-box-shadow: none;
  box-shadow: none;
  color: var(--mainColor);
}
.box-common-questions .btn-FAQ:focus {
  border: none;
}
.accordion-body p {
  font-size: 0.9rem;
  color: #b1b1b1;
}

.btn-FAQ .icon-Arrow-FAQ {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.btn-FAQ:not(.collapsed) .icon-Arrow-FAQ {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
/* ------------------------------------------- */

/* ------------------------------------------- */

/* ================================================================================================ */
.box-common-questions {
  background-color: rgb(245, 247, 254, 0.8);
  border-radius: 10px;
}

.box-text-bg {
  position: absolute;
  top: 0;
  /* left: 0; */
  /* right: 0; */
  bottom: 0;
}

.box-img-page {
  width: 100%;
  height: 60vh;
  position: relative;
  overflow: hidden;
}
.box-img-page img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;

  /* animation-name: bg-img-page; */
  -webkit-animation-duration: 8s;
  animation-duration: 8s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  /* transform: scale(1);	 */
}

@-webkit-keyframes bg-img-page {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@keyframes bg-img-page {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
.box-img-page .layer {
  background-color: rgba(0, 0, 0, 0.1);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.box-img-page .link-page-home-Present h1 {
  color: #000;
  font-size: 2rem;
}
.box-form-Connect-us {
  padding: 1rem;
  background-color: #fff;
}
.box-form-Connect-us label {
  font-size: 0.8rem;
  color: var(--mainColor);
}
.box-form-Connect-us h3 {
  font-size: 1rem;
  color: var(--mainColor);
}
.box-form-Connect-us h4 {
  font-size: 1rem;
  color: var(--mainColor);
}
.box-map-Connect-Us iframe {
  width: 100%;
  height: 80vh;

  /* filter: invert(90%); */
  border-radius: 10px;
}

.box-item-through a {
  color: var(--mainColor);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.box-item-through .Link {
  background-color: rgb(245, 247, 254, 0.8);
  border-radius: 5px;
  padding: 1rem;
}
.box-item-through h4 {
  font-size: 1rem;
}
.box-item-through .icon-Connect-us {
  background-color: var(--mainColor);
  color: #fff;
  min-width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 5px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border: var(--mainColor) 1px solid;
}
.titel-location {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  max-width: 100%;
  font-size: 1rem;
  color: var(--mainColor);
}
.box-form-Connect-us .box-icon-footer {
  gap: 20px;
  margin-top: 0;
}
.box-form-Connect-us .box-icon-footer .icon a {
  width: 40px;
  height: 40px;
  border-radius: 5px;
}
.box-item-through a:hover .icon-Connect-us {
  background-color: transparent;
  border: 1px solid var(--mainColor);
  color: var(--mainColor);
}
.box-Blog {
}
.box-Blog h3 {
  font-size: 1rem;
  margin-top: 1rem;
  max-width: 100%;
  font-weight: 700;
  color: var(--mainColor);
}

.box-Blog p {
  font-size: 0.8rem;
  margin-top: 1rem;
  color: #b1b1b1;

  /* max-height: 2.8rem; */
  --max-lines: 2;
  display: -webkit-box;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--max-lines);
  color: #9d9b9b;
}
.box-link-View-article a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* align-items: center; */
  color: var(--mainColor);
  font-size: 0.9rem;
  gap: 10px;
  text-decoration: underline;
}
.box-pagination {
  /* background-color: rgb(245, 247, 254, 0.8); */
  /* padding: 1.4rem; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 10px;
  margin-top: 3rem;
}
.box-search .form-search {
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
  border-bottom: 1px solid var(--mainColor);
}
.box-search .form-search:focus {
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-radius: 0;
  border-bottom: 1px solid var(--mainColor);
}
.box-days span {
  color: var(--mainColor);
  font-size: 1rem;
}
.box-days {
  color: #b1b1b1;
  margin-top: 1rem;
  font-size: 0.9rem;
}
.box-item-search {
  position: relative;
}
.icon-search {
  position: absolute;
  top: 5px;
  right: 1.4rem;
  font-size: 1.2rem;
  color: var(--mainColor);
}
.box-img-Blog img {
  width: 100%;
}
.box-Article-details h3 {
  color: var(--mainColor);
}
.box-Article-details p {
  color: #b1b1b1;
  margin-top: 1rem;
}

.box-item-Profile .nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.name-Profile {
  font-size: 0.9rem;
}
/* ------------------------------------------ */

@media (max-width: 1115px) {
  .box-slider-product-Details .carousel-indicators [data-bs-target] {
    width: 60px !important;
    height: 60px !important;
    text-indent: 0;
  }
}
@media (max-width: 991px) {
  .box-Calculate-shipping-cart-first {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  /* ------------------------------  */
  .name-Profile {
    display: none;
  }
  .box-Profile-mo {
  }

  .box-btn-Profile-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;

    position: fixed;
    bottom: 0;
    left: 0;
    /* right: 0; */
    background-color: #ffffff;
    z-index: 33;
    gap: 3%;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 4px 4px 10px #000;
    box-shadow: 4px 4px 10px #000;
    z-index: 303;
  }

  .box-item-Profile span {
    margin: 0 !important;
  }
  .box-item-Profile-1 hr {
    display: none;
  }
  .box-Profile .box-item-Profile {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .box-item-Profile .nav-link {
    padding: 0;
    font-size: 1rem;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  /* --------------------- */
  /* nav-mo  */

  .box-img-offers-Categories-mo {
    display: none !important;
  }

  .box-all-menu-dropdown {
    padding: 0;
  }
  .box-item-dropdown2 {
    height: 100% !important;
  }
  .box-item-dropdown2 .icon-item-Categories {
    font-size: 0.8rem !important;
    margin-right: 0 !important;
  }
  .Link-item-Categories {
    font-size: 0.7rem !important;
  }
  .box-Link-Categories {
    width: 100% !important;
  }
  .box-all-menu-dropdown {
    position: static !important;
    padding: 0 !important;
  }

  .box-Categories-Nav {
    text-align: center;
  }
  .Link-item-Categories {
    text-align: left;
  }
  .box-item-dropdown2 ul .menu-item {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0.2rem !important;
  }
  .menu-item .sho-arrow::before {
    right: 0.3rem !important;
  }

  .box-item-dropdown2 {
    padding: 0 !important;
  }
  .box-Categories-Nav {
    width: 100%;
  }

  .box-item-dropdown2 .ul-Categories .menu-item .sub-menu-dropdown {
    position: static !important;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }
  .box-sub-sub-dropdown-mo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: left;
  }
  .box-sub-sub-dropdown-mo .col-3 {
    width: 100% !important;
  }

  .box-item-dropdown2 .ul-Categories .menu-item .sub-menu-dropdown {
    display: none;
  }
  .box-item-dropdown2 .ul-Categories .menu-item:hover .sub-menu-dropdown {
    display: block;
  }
  .box-item-sub h3 a {
    font-size: 0.7rem !important;
  }
  .box-item-sub ul li a {
    font-size: 0.6rem;
  }

  /* --------------------- */
  .box-slider-product-Details .carousel-indicators [data-bs-target] {
    width: 50px !important;
    height: 40px !important;
    text-indent: 0;
  }
}

@media (max-width: 790px) {
  .pc-Quantity-cart {
  }
  .box-head-cart {
    display: none;
  }

  .box-body-cart {
    position: relative;
    padding-bottom: 1rem;
  }

  .box-body-cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
  }
  /* .pc-Quantity-cart,
  .pc-trash-cart {
    display: none;
  } */
  .Fixed-price {
    display: none;
  }
  .mo-box-trash-Quantity {
    display: block;
  }
  .box-body-cart .mo-price {
    display: block;
    font-size: 0.8rem;
  }
  .mo-trash-cart {
    display: block;
    /* margin-top: .5rem; */
  }

  .form-cart {
    /* min-width: 125px; */
    /* max-width: 77px; */
    height: 40px;
    border: 1px solid var(--mainColor);
    border-radius: 4px;
    position: relative;
    /* height: 48px; */
    /* margin-right: 8px; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* margin-top: 1rem; */

    display: flex;
    align-items: center;
    justify-content: center;
    /* gap: 6px; */
  }
  .btn-increase-increase,
  .btn-increase-decrease {
    padding: 0.4rem;
    font-size: 1.1rem;
  }
  .box-trash .btn-trash {
    padding: 0;
    font-size: 1rem;
  }
  .PRODUCT-img {
    min-width: 70px;
  }

  .box-home-SHOPPING {
    /* flex-direction: column; */
    /* margin-top: 1rem; */
  }
  .box-home-SHOPPING span {
    /* transform: rotate(90deg); */
  }
  .link-page-home-Present h2 {
    /* display: none; */
  }
  .box-search {
    width: 100%;
  }
  .box-form-Connect-us .box-icon-footer .icon a {
    width: 35px;
    height: 35px;
  }
  .box-item-through .icon-Connect-us {
    min-width: 35px;
    height: 35px;
  }
  .box-img-page {
    height: 20vh;
  }
  .link-page-home-Present {
    padding-bottom: 1rem;
  }
  .box-form-Connect-us h3 {
    font-size: 0.9rem;
  }
  .box-map-Connect-Us iframe {
    height: 35vh;
  }
  .link-page-home-Present h1 {
    font-size: 1rem;
  }
}
@media(max-width: 991) {
    .box-cilsh-nav {
        border-right: 2px solid var(--mainColor);
    }
}
.cartmob-only {
    display: none;
}
@media (max-width: 590px) {
  .form-cart {
    /* min-width: 125px; */
    /* max-width: 70px; */
    height: 34px;
    /* text-align: left; */
  }
  .box-aside-Cart h2 {
    font-size: 0.7rem;
  }
  .qty-val {
    padding: 0 !important;
  }
  .btn-increase-increase,
  .btn-increase-decrease {
    padding: 0.4rem;
    font-size: 1.1rem;
  }
  .PRODUCT-img {
    min-width: 70px;
    height: 70px;
    /* margin: 10px; */
  }
  .box-img-aside-cart {
    border: 1px solid var(--mainColor);
  }
    .pc-only {
    display: none !important;
  }
  .cartmob-only {
    display: flex;
  }
  .box-aside-Cart-link-cart-link-CheckOut .link-Cart-Danger {
    width: 95px !important;
  }
}

/* ================================================================================================= */
/* 404 */
.page-404 {
  /* overflow: hidden; */
}
.box-Go-back-home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 1rem;
}

.box-Go-back-home a {
  font-size: 1rem;
  color: #fff;
  background-color: var(--mainColor);
  text-align: center;
  padding: 1rem 2rem;
  border-radius: 5px;
}

#handboy {
  -webkit-animation: swing ease-in-out 1.3s infinite alternate;
  animation: swing ease-in-out 1.3s infinite alternate;
  -webkit-transform-origin: 98% 98%;
  -ms-transform-origin: 98% 98%;
  transform-origin: 98% 98%;
  transform-box: fill-box;
}

#girllight {
  -webkit-animation: swing ease-in-out 1.3s infinite alternate;
  animation: swing ease-in-out 1.3s infinite alternate;
  -webkit-transform-origin: 0% 97%;
  -ms-transform-origin: 0% 97%;
  transform-origin: 0% 97%;
  transform-box: fill-box;
}

#hairgirl {
  -webkit-animation: swinghair ease-in-out 1.3s infinite alternate;
  animation: swinghair ease-in-out 1.3s infinite alternate;
  -webkit-transform-origin: 60% 0%;
  -ms-transform-origin: 60% 0%;
  transform-origin: 60% 0%;
  transform-box: fill-box;
}

#zero {
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  transform-box: fill-box;
}
.page-404 .box-404 {
    display: flex;
    align-items: center;
    height: calc(100vh - 76px);
}
@media(max-width: 575px) {
    .box-svg-404 svg {
        height: 250px !important;
    }
    .page-404 .box-404 {
        height: calc(100vh - 250px);
    }
}
/*************swing************/
@-webkit-keyframes swing {
  0% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  100% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
}
@keyframes swing {
  0% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  100% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
}

/*************swing hair************/
@-webkit-keyframes swinghair {
  0% {
    -webkit-transform: rotate(6deg);
    transform: rotate(6deg);
  }
  100% {
    -webkit-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
}
@keyframes swinghair {
  0% {
    -webkit-transform: rotate(6deg);
    transform: rotate(6deg);
  }
  100% {
    -webkit-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
}

/* ================================================================= */
/* Thank-you */
.box-Thank-you-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.box-Thank-you-item h1 {
  color: var(--mainColor);
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-size: 4rem;
  font-family: "Caveat", cursive;
  font-family: "Dancing Script", cursive;
  font-family: "Montserrat", sans-serif;
  font-family: "Satisfy", cursive;
  font-weight: 800;
}
.box-Thank-you-item a {
  background-color: var(--mainColor);
  color: #fff;
  padding: 1rem 2rem;
}
.box-Thank-you {
  margin-top: 100px;
}
.box-Thank-you-item img {
  /* background-color: var(--mainColor); */
  width: 100px;
}
.box-logo-Thank-you {
  width: 100px;
  margin-top: 1rem;
}
.box-logo-Thank-you img {
  width: 100%;
}
.box-nav-Thank-you {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-Thank-you {
  overflow: hidden;
}
/* ============================================================= */
/* Maintenance */
.box-img-Maintenance {
  width: 50%;
  margin: auto;
  position: relative;
}
.box-text-Maintenance h1 {
  position: absolute;
  top: 65%;
  left: 50%;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  /* background-color: #ad0000; */
  text-align: center;
  font-size: 1.6rem;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .box-img-Maintenance {
    width: 80%;
  }
  .box-text-Maintenance h1 {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .box-Thank-you-item h1 {
    font-size: 1rem;
    letter-spacing: 8px;
  }
  .box-Thank-you-item img {
    /* background-color: var(--mainColor); */
    width: 80px;
  }
  .box-nav-Thank-you {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .box-Thank-you-item {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 5rem;
  }
  /* .box-img-Maintenance {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
  } */
  .box-text-Maintenance h1 {
    font-size: 0.9rem;
    top: 65%;
  }
  .box-item-prduct-all-2 .box-item-prduct {
    margin: 0;
    padding: 0;
  }
  .box-modal-address {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .form-check {
    margin-top: 0.5rem;
    margin-left: 1rem;
  }
  .box-common-questions {
    padding: 1rem;
  }
  .box-common-questions #accordionExample {
    padding: 0;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
  }
  .box-common-questions .accordion-item {
    margin: 0.5rem;
  }
  .box-form-Connect-us {
    padding: 1rem;
  }
}

/* ================================================================================================ */
.arrow-Categories i {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.box-Categories-Nav {
  cursor: pointer;
  position: static;
  color: #000;
  font-size: 0.9rem;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding: 8px 10px;
}
.box-Categories-Nav:hover {
  color: var(--mainColor);
}

.box-Categories-Nav:hover .arrow-Categories i {
  cursor: pointer;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.box-all-menu-dropdown {
  position: absolute;
  left: 0;
  top: 39px;
  background-color: transparent;
  width: 100%;
  padding: 1.4rem 2rem 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  display: none;
}
.Link-nav {
  /* position: static; */
}
.box-Categories-Nav:hover .box-all-menu-dropdown {
  opacity: 1;
  visibility: visible;
  display: block;
}

.box-item-dropdown2 {
  /* background-color: #ba1111; */
  /* background-color: rgb(245, 247, 254, 0.9); */

  background-color: #fff;
  /* background-color: var(--mainColor); */
  padding: 0.5rem;
  cursor: context-menu;

  height: 405px;
  overflow-y: auto;
  overflow-x: hidden;
  border-bottom: solid 1px var(--mainColor);

  direction: rtl;
}
.box-item-dropdown2 .box-2-dropdown {
  direction: ltr;
}

.box-item-dropdown2 ul {
  /* background-color: rgb(245, 247, 254, 0.8); */
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.ul-Categories {
  position: relative;
}

.box-item-dropdown2 ul .menu-item {
  background-color: rgb(245, 247, 254, 0.8);
  /* border-bottom: 1px solid var(--mainColor); */

  margin-bottom: 0.5rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  color: var(--mainColor);
  padding-left: 0.5rem;
  /* position: relative; */
}
.box-Thank-you .custom-btn {
  background-color: var(--mainColor);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: var(--borderRadius);
}
.Link-item-Categories {
  font-size: 0.8rem;
  color: var(--mainColor);
  cursor: pointer;
}
.box-item-dropdown2 .icon-item-Categories {
  font-size: 1rem;
  margin-right: 1rem;
}
.menu-item .sho-arrow {
  position: relative;
}

.menu-item .sho-arrow::before {
  position: absolute;
  top: 0.3rem;
  right: 1rem;
  font: var(--fa-font-solid);
  content: "\f054";
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.box-item-dropdown2 ul .menu-item:hover .sho-arrow::before {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.box-img-Categories-2 img {
  /* width: 400px; */
  /* background-color: #ad0000; */
  width: 460px;
  height: 170px;
  -o-object-fit: cover;
  object-fit: cover;
}
.box-img-Categories-1 img {
  /* width: 400px; */
  /* background-color: #ad0000; */
  width: 275px;
  height: 375px;
  -o-object-fit: cover;
  object-fit: cover;
  background-color: #00b00f;
}
.box-item-dropdown2 .ul-Categories .menu-item .sub-menu-dropdown {
  position: absolute;
  /* height: 100%; */
  left: 100%;
  width: 960px;
  background-color: var(--mainColor);
  top: 0.5rem;
  padding: 0.2rem 1rem;
  opacity: 0;
  visibility: hidden;
}
.box-item-dropdown2 .ul-Categories .menu-item:hover .sub-menu-dropdown {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.box-item-sub h3 a {
  font-size: 0.9rem;
  color: #fff;
  border-bottom: 2px solid #333;
    padding-bottom: 5px;
}
.box-item-sub ul li a {
  font-size: 0.7rem;
  color: #fff;
}
/* --------------------------------------------------- */

.box-all-menu-dropdown .box-item-dropdown2::-webkit-scrollbar {
  width: 5px;
}

.box-all-menu-dropdown .box-item-dropdown2::-webkit-scrollbar-track {
  background-color: transparent;
}

.box-all-menu-dropdown .box-item-dropdown2::-webkit-scrollbar-thumb {
  background: var(--mainColor);
}

.box-all-menu-dropdown .box-item-dropdown2::-webkit-scrollbar-thumb:hover {
  background: var(--mainColor);
}

/* ======================================================== */

.btn-outline {
  background-color: var(--headerTitle);
  color: var(--mainColor);
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--borderRadius);
}
@media only screen and (max-width: 700px) {
  .btn-outline {
    padding: 0.5rem 1rem;
  }
  .box-btn-heart-product {
    width: 100%;
  }
  .box-slider-product-details .swiper-wrapper-pat {
    height: 300px;
  }
  .box-slider-product-details .swiper-wrapper-item {
    height: 90px;
  }
}

@media (max-width: 990px) {
  .box-col-order {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }


  .box-Go-back-home h2 {
    font-size: 1rem;
  }
  .box-img-Maintenance {
    padding-top: 3rem;
  }
  .box-Go-back-home a {
    letter-spacing: 1px;
    font-size: 0.9rem;
    padding: 0.8rem 1.4rem;
  }
  .box-logo-Thank-you {
    width: 120px;
  }
  .box-flex-direction-mo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .box-col-phone-wha {
    margin-top: 0;
  }
}

/* ======================================= */

.thumbnail img {
  height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
}

.slider-nav div {
  /* margin-left: 1rem; */
  /* margin-right: 1rem; */
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: auto;
}

.slider-nav .item {
  margin: auto;
}

.slider-nav .item img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
  object-fit: cover;
  margin: auto;
}

.slick-track {
    margin-top: 25px;
    margin-left: 0;
    margin-right: 0;
}

.small-thumb-img {
  max-width: 100px;
  margin: auto;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.small-thumb-img img {
  width: 100%;
}

.small-thumb-wrapper .slick-prev {
  /* background-color: var(--mainColor); */
  width: auto;
  height: auto;
  z-index: 1;
  left: 0;
}
.small-thumb-wrapper .slick-next {
  /* background-color: var(--mainColor); */

  right: 0;
  width: auto;
  height: auto;
}

.small-thumb-wrapper .slick-next:before {
  color: var(--mainColor);
  font-size: 2rem;
}
.small-thumb-wrapper .slick-prev:before {
  color: var(--mainColor);
  font-size: 2rem;
}

/* ====================================================================== */
.box-Empty-cart,
.box-Empty-cart-page,
.box-Favorites-empty {
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  /* display: none; */
  text-align: center;
}
.box-Empty-cart img {
  width: 80%;
  margin: auto;
}

.box-Favorites-empty img {
  width: 80%;
  margin: auto;
}

.box-Empty-cart-page img {
  width: 60%;
  margin: auto;
}

.box-Empty-cart p,
.box-Empty-cart-page p,
.box-Favorites-empty p {
  font-size: 0.9rem;
  color: #b1b1b1;
  width: 60%;
  margin: auto;
  padding-bottom: 1rem;
  margin-top: 1rem;
}
.box-Empty-cart a,
.box-Empty-cart-page a,
.box-Favorites-empty a {
  font-size: 0.9rem;
  color: #fff;
  background-color: var(--mainColor);
  padding: 0.5rem;
}

.aside-cart-price-nav-Favorites {
  display: none;
}
/*  ----------------------------- */
.address-container {
  display: none;
  text-align: center;
}

.address-container img {
  width: 50%;
  margin: auto;
}
.aside-cart-price-nav-cart {
  display: none;
}
.box-total-item-nav-cart {
  color: #b1b1b1;
  font-size: 0.9rem;
}

.box-star-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}

.box-star-rating .star {
  color: #ccc; /* لون النجمة الغير محددة */
  cursor: pointer;
}
.box-star-rating .star:hover {
  color: #ffcc00; /* لون النجمة الغير محددة */
}

.box-star-rating .star.active {
  color: #ffcc00; /* لون النجمة عند النقر عليها */
}
.box-Description {
  margin-top: 1rem;
}
.box-Description h3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  max-width: 80%;
}
.box-Description .btn-Download {
  background-color: var(--mainColor);
  color: #fff;
  /* padding: .5rem 3rem; */
  margin-top: 1rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.box-Description .btn-Download:hover {
  background-color: var(--mainColor);
  color: #fff;
}
/* ================================================================ */

.axil-privacy-policy .title {
  margin-bottom: 20px;
  color: #27272e;
  font-weight: 500;
  font-size: 24px;
}

.axil-privacy-policy p {
  font-size: 16px;

  color: #777777;
  margin: 0 0 30px;
}

.axil-privacy-policy ul li {
  font-size: 16px;

  margin: 0 0 12px 0;
  color: #777777;
}

.axil-privacy-policy a {
  color: var(--mainColor);
  font-size: 16px;
  text-decoration: underline;
}
/* ================================================================ */
.box-input-icon-search {
  position: relative;
}
.box-input-icon-search .icon-search {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 14px;
}
.box-input-Price-products .box-input-icon-search input {
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-radius: 0 !important;
}

.box-Price-select select {
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-radius: 0 !important;
  width: 100%;
  border-bottom: 1px solid #dee2e6 !important;
  padding: 12px;
}
.box-Price-select select:hover {
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-radius: 0 !important;
  width: 100%;
  border-bottom: 1px solid #dee2e6 !important;
}
.box-Price-select select:focus {
  border: none !important;
}

/* ================================================================ */
.count-heart {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 0.8rem;
  background-color: var(--mainColor);
  color: #fff;
  /* right: -5px; */
  left: 16px;
  top: -7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.item-Price {
  display: none;
}

.box-trash .btn-trash,
.box-trash .btn-cart-wishlist {
  color: #b1b1b1;
  border: #b1b1b1;
  font-size: 1rem;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  margin-left: 1rem;
  margin: auto;
}

.box-trash .btn-trash:hover {
  color: rgb(173, 0, 0);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.box-trash .btn-cart-wishlist:hover {
  color: var(--mainColor);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.box-Best-Sellers .box-Add-to-cart {
  /* width: 263px; */
  max-width: 100%;
}

@media (max-width: 600px) {
  .btn-login {
    padding: 0.5rem;
    font-size: 12px;
  }
}

@media only screen and (max-width: 600px) {
  body::-webkit-scrollbar {
    width: 15px;
    display: none;
  }

  body::-webkit-scrollbar-track {
    background-color: transparent;
  }

  body::-webkit-scrollbar-thumb {
    background: var(--mainColor);
    border-radius: 2px;
  }

  body::-webkit-scrollbar-thumb:hover {
    background: var(--mainColor);
  }
}
.slider-sponsors {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.slider-sponsors .slider-sponsors-item a img {
  width: 100px;
}

.btn-cart-nav.animated, .btn-heart-nav.animated {
  -webkit-animation: pulse-animation .7s .1s;
  animation: pulse-animation .7s .1s;
}

@-webkit-keyframes pulse-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.box-Offers-slick-btn .swiper-button-next,
.swiper-button-prev {
  top: -30px;
  /* background-color: var(--mainColor); */
  color: var(--mainColor);
  /* position: relative; */
}
.box-Offers-slick-btn .swiper-button-prev {
  left: auto;
  right: 50px;
}
.box-Offers-slick-btn .swiper {
  overflow: inherit;
  overflow-x: clip;
}

.box-Offers-slick-btn .swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.4rem;
}

.box-text-nav {
  background-color: var(--mainColor);
  text-align: center;
  color: #fff;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.swiper-wrapper {
  /* justify-content: center; */
}
.mun-align button {
  color: var(--mainColor);
  font-size: 1.6rem;
}
.qty-val-nav-cart {
  padding: 0 !important;
}

.swiper {
  width: 100%;
  /* height: 300px; */
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.mySwiper2 {
  height: 80%;
  width: 100%;
}

.mySwiper {
  height: 20%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.box-slider-product-details .swiper-wrapper-pat {
  height: 500px;
}

.box-slider-product-details .swiper-wrapper-item {
  height: 140px;
}

.box-slider-product-details .swiper-button-next,
.box-slider-product-details .swiper-button-prev {
  background-color: var(--mainColor);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  /* transform: translateY(-50%); */
  top: 53%;
}

.box-slider-product-details .swiper-button-next:after,
.box-slider-product-details .swiper-button-prev:after {
  font-size: 1rem;
}
.mySwiperProductDetails {
  margin-top: 1rem;
}

.mySwiperProductDetails .swiper-button-next {
  right: 0;
}

.mySwiperProductDetails .swiper-button-prev {
  left: 0;
}

@media (max-width: 767px) {
  .box-slider-product-details .swiper-wrapper-pat {
    height: 300px;
  }

  .box-slider-product-details .swiper-wrapper-item {
    height: 90px;
  }
}


.btn-cart-blocked {
    background-color: #fff;
    color: var(--mainColor);
    font-size: 1rem;
    width: 100%;
    border: var(--mainColor) solid 1px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  .btn-cart-blocked:after{
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font: var(--fa-font-solid);
    content: "\e3f4";
    color: var(--mainColor);
}

.box-Check-Out button.btn-cart-login {
    background-color: var(--mainColor);
    text-align: center;
    color: #fff;
    border: 1px solid var(--mainColor);
    padding: 1rem;
    width: 100%;
    display: block;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 1rem;
  }
    .box-Check-Out button.btn-cart-login:hover {
    background-color: transparent;
    color: var(--mainColor);
    border: 1px solid var(--mainColor);
  }
  header .carousel-caption {
    position: absolute;
    left: 50%;
    color: #fff;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 79%;
    right: auto !important;
    bottom: auto !important;
}
header .owl-nav .owl-prev {
    left: 0;
    background: var(--mainColor) !important;
}
header .owl-nav .owl-next {
    right: 0;
    background: var(--mainColor) !important;
}
header .owl-nav button span {
    margin-top: -6px;
}
.btn-outline:hover,header .owl-nav .owl-prev:hover, header .owl-nav .owl-next:hover {
    color: var(--mainColor) !important;
    background-color: #FFF !important;
    border: solid 1px var(--mainColor);
}

.cart__heading{
    font-size: 1rem;
}
header .box-carousel-caption  h2, header .box-carousel-caption  p {
    text-shadow: 2px 7px 5px rgba(0,0,0,0.3), 0px -4px 10px rgba(255,255,255,0.3);
}
header .box-carousel-caption  h2 {
    font-size: 40px;
}
header .box-carousel-caption p {
    font-size: 20px;
}
#About-Us img{
  width: 450px !important;
  max-width: 100%;
  border: 6px solid var(--mainColor)
}
#footer #footer_show_saudi_industry {
    background: #EEE;
    padding: 10px;
}
aside {
    position: relative !important;
    z-index: 9999;
}

.owl-carousel .owl-item img{
    max-width: 100%;
}
.brand__container{
    width: 200px;
    height: 200px;
}
#brands .owl-item{
    display: flex;
    justify-content: center;
    align-items: center;
}

.countdown {
            display: flex;
            justify-content: space-around;
            width: 60%;
        }

        .countdown .days,
        .countdown .hours,
        .countdown .minutes,
        .countdown .seconds {
            display: flex;
            direction: ltr;
        }

        .countdown .first,
        .countdown .last {
            background-color: #d5d5d5;
            color: #000;
            display: inline-block;
            width: 25px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 2px;
            border-radius: 5px;
        }

        .countdown .time-unit {
            display: flex;
            justify-content: center;
            margin-top: 5px
        }
            @media(width <=575px) {
            .countdown {
                width: 85%;
            }
        }


.btn.box-trash-address:focus,
.btn.box-trash-address:active {
    border: 0 !important;
    outline: 0 !important;
}

.btn.disabled, .btn:disabled, fieldset:disabled .btn {
    border-color: transparent !important;
}

.box-common-questions .icon-Arrow-FAQ{
  background: var(--mainColor);
  border-radius: 50%;
  padding: 5px;
  color: #FFF;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

section .best-sellers-layout {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}
@media (min-width: 992px) {
  .box-menu-navbar .item-icon-nav{
      display: none !important;
  }
  .show__in__mobile__only{
      display: none !important;
  }
  .li_login_lang{
      display: none !important;
  }
}


@media(max-width: 575px) {
  .li_login_lang{
      border-bottom: solid 1px var(--mainColor);
      padding: 10px 0;
      border-top: solid 1px var(--mainColor);
  }
  .li_login_lang button{
      padding: 5px !important;
  }

  .box-search-nav .dropdown-menu{
    inset: 20px auto auto 0px !important;
    min-width: 432px !important;
  }
  .box-search-nav .dropdown-menu form input{
    border-radius: 0;
    box-shadow: none;
    border: 0;
  }

  section .best-sellers-layout {
    grid-template-columns: repeat(2, 1fr);
  }
  .offcanvas-body-cart .cart-title {
      width: 70%;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
  }
  .box-aside-cart-img-Quantity-trash-border.box-item-cart-nav .form-cart {
    max-width: 93px;
  }
}
.box-aside-cart-img-Quantity-trash-border.box-item-cart-nav {
  padding: 8px 0;
}