/* -------------+++++ PRELOADER */
#preloader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #161616;
  z-index: 99999;
  display: grid;
  place-items: center;
}

.main-loader {
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
}

.main-fader {
  position: absolute;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
}

.main-fader .loader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.main-fader .loader svg {
  display: block;
  height: 100px;
  margin: 0 auto;
}

.main-fader .loader svg path {
  color: #ffffff;
  animation: pulse 1s infinite;
}

/* Animation Delays */

.main-fader .loader svg path.path-7 {
  animation-delay: -1s;
}

.main-fader .loader svg path.path-6 {
  animation-delay: -0.875s;
}

.main-fader .loader svg path.path-5 {
  animation-delay: -0.75s;
}

.main-fader .loader svg path.path-4 {
  animation-delay: -0.625s;
}

.main-fader .loader svg path.path-3 {
  animation-delay: -0.5s;
}

.main-fader .loader svg path.path-2 {
  animation-delay: -0.375s;
}

.main-fader .loader svg path.path-1 {
  animation-delay: -0.25s;
}

.main-fader .loader svg path.path-0 {
  animation-delay: -0.125s;
}

/* White → Red → White */

@keyframes pulse {
  0% {
    opacity: 0.2;
    fill: #ffffff;
  }

  30% {
    opacity: 1;
    fill: #ff3b30;
  }

  60% {
    opacity: 1;
    fill: #e50914;
  }

  100% {
    opacity: 0.2;
    fill: #ffffff;
  }
}

/* **********************************
        POPUP MODULE (#POOP545)
*********************************** */
/* ==> Review Popup */
.popup-container {
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: +50;
  padding: 1.5rem;
  background: rgba(31, 31, 31, 0.692);
  backdrop-filter: blur(5px);
  display: none;
}
.popup-container.show {
  display: block;
  animation: showPop 0.5s ease;
}
@keyframes showPop {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.popup-container.hide {
  animation: hidePop 0.5s ease;
}
@keyframes hidePop {
  0% {
    opacity: 1;
    display: block;
  }
  95% {
    opacity: 0;
    display: block;
  }
  100% {
    opacity: 0;
    display: none;
  }
}

.popup-container .popup {
  width: 100%;
  margin: auto;
  padding: 0.94rem 1.1rem 1.6rem 1.56rem;
  border-radius: var(--radious-prim);
  border: var(--border-prim);
  background: rgb(248 248 248);
  /* overflow: hidden; */
}
.popup-container .popup.w-m {
  max-width: 55rem;
}
.popup-container .popup.w-s {
  max-width: 35rem;
}

.popup-container.show .popup {
  transform-origin: top center;
  animation: showPopForm 0.5s ease;
}
@keyframes showPopForm {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

.popup-container.hide .popup {
  animation: hidePopForm 0.5s ease;
}
@keyframes hidePopForm {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}

.popup-container .popup .module-body {
  padding-right: 0.5rem;
  max-height: calc(100dvh - 10rem);
  overflow-y: auto;
}
.popup-container .popup .module-body::-webkit-scrollbar {
  width: 0.2rem;
  border-radius: 50px;
}
.popup-container .popup .module-body::-webkit-scrollbar-thumb {
  background: var(--text-300);
}

.popup-container .close-box {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-bottom: 2rem;
  gap: var(--gap-card);
}
.popup-container .close-box .title-box {
  flex-grow: 1;
}
.popup-container .close-box .title-box > * {
  margin: 0;
}
.popup-container .close-box button {
  padding: 0;
  font-size: 1.12rem;
  color: red;
  flex-shrink: 0;
}
.popup-container .close-box button:hover {
  transform: scale(1.1);
}

.popup-container form {
  display: grid;
  width: 100%;
  gap: var(--gap-card);
  border: none;
  padding: 0;
  border-radius: 0;
}

/* **********************************
        OFFCANVAS (#001OFFCNV)
*********************************** */
.offcanvas-sec {
  --offcnv-w-plu: 25rem;
  --offcnv-w-min: -25rem;
  --offcnv-padding: 1.25rem 1.25rem 0;
}

.offcanvas-sec.lg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: +20;
  display: none;
}
.offcanvas-sec.lg.hide {
  animation: aniHideCSec 0.3s linear forwards;
}
@keyframes aniHideCSec {
  0% {
    background: rgba(0, 0, 0, 0.38);
    display: block;
  }
  100% {
    background: rgba(0, 0, 0, 0);
    display: none;
  }
}

.offcanvas-sec.lg.show {
  display: block;
  animation: aniShowCSec 0.3s linear forwards;
}
@keyframes aniShowCSec {
  0% {
    background: rgba(0, 0, 0, 0);
  }
  100% {
    background: rgba(0, 0, 0, 0.38);
  }
}

.offcanvas-sec.lg .offcanvas {
  position: absolute;
  top: 0;
  right: var(--offcnv-w-min);
  width: 100%;
  max-width: var(--offcnv-w-plu);
  height: 100dvh;
  flex-shrink: 0;
  background-color: white;
  padding: var(--offcnv-padding);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.offcanvas-sec.lg.hide .offcanvas {
  animation: hidecartbox 0.3s linear forwards;
}
@keyframes hidecartbox {
  0% {
    right: 0;
  }
  100% {
    right: var(--offcnv-w-min);
  }
}

.offcanvas-sec.lg.show .offcanvas {
  animation: showcartbox 0.3s linear forwards;
}
@keyframes showcartbox {
  0% {
    right: var(--offcnv-w-min);
  }
  100% {
    right: 0;
  }
}

/* ==> HEAD */
.offcanvas-sec.lg .offcanvas .offcanvas-head {
  border-bottom: var(--border-dark);
  padding: 0 0 1rem 0;
  display: flex;
  justify-content: space-between;
  flex-shrink: 0;
}
.offcanvas-sec.lg .offcanvas-head .offcanvas-title {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
  flex-shrink: 0;
}
.offcanvas-sec.lg .offcanvas-head .offcanvas-title .badge {
  font-size: 0.75rem;
  margin-left: 0.31rem;
  background: var(--primary);
  color: white;
  border-radius: 3.13rem;
  padding: 0.19rem 0.8rem;
}

/* ==> BODY */
.offcanvas-sec.lg .offcanvas .offcanvas-body {
  padding: 1.25rem 0;
  flex-grow: 1;
  overflow-y: auto;
}

/* For Mobile view Offcanvas */
.offcanvas-sec.sm .offcanvas .offcanvas-head {
  display: none;
}

.offcanvas-sec .offcanvas .offcanvas-body::-webkit-scrollbar {
  width: 0;
}

@media (max-width: 900px) {
  .offcanvas-sec.sm {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: +100;
    display: none;
  }
  .offcanvas-sec.sm.hide {
    animation: aniHideCSec 0.3s linear forwards;
  }

  .offcanvas-sec.sm.show {
    display: block;
    animation: aniShowCSec 0.3s linear forwards;
  }

  .offcanvas-sec.sm .offcanvas {
    position: absolute;
    top: 0;
    right: var(--offcnv-w-min);
    width: 100%;
    max-width: var(--offcnv-w-plu);
    height: 100dvh;
    flex-shrink: 0;
    background-color: var(--bg-200);
    padding: var(--offcnv-padding);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .offcanvas-sec.sm.hide .offcanvas {
    animation: hidecartbox 0.3s linear forwards;
  }

  .offcanvas-sec.sm.show .offcanvas {
    animation: showcartbox 0.3s linear forwards;
  }

  /* ==> HEAD */
  .offcanvas-sec.sm .offcanvas .offcanvas-head {
    display: block;
    border-bottom: var(--border-dark);
    padding: 0 0 1rem 0;
    display: flex;
    justify-content: space-between;
    flex-shrink: 0;
  }
  .offcanvas-sec.sm .offcanvas-head .offcanvas-title {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
    flex-shrink: 0;
  }
  .offcanvas-sec.sm .offcanvas-head .offcanvas-title .badge {
    font-size: 0.75rem;
    margin-left: 0.31rem;
    background: var(--primary);
    color: white;
    border-radius: 3.13rem;
    padding: 0.19 0.5rem;
  }

  .offcanvas-sec.sm .offcanvas .offcanvas-head .btn-close {
    color: red;
    font-size: 1.4rem;
  }

  /* ==> BODY */
  .offcanvas-sec.sm .offcanvas .offcanvas-body {
    padding: 1.25rem 0;
    flex-grow: 1;
    overflow-y: auto;
  }
}

@media (max-width: 450px) {
  .offcanvas-sec {
    --offcnv-w-plu: 20.63rem;
    --offcnv-w-min: -20.63rem;
  }
}
@media (max-width: 340px) {
  .offcanvas-sec {
    --offcnv-w-plu: 18.44rem;
    --offcnv-w-min: -18.44rem;
  }
}

/* ****************************
        DROPDOWN (#002DROP)
******************************* */
.DROPDOWN {
  position: relative;
  flex-shrink: 0;
}
.DROPDOWN .dropdown-menu {
  padding-top: 10px;
  position: absolute;
  top: 100%;
  z-index: +5;
  transform: translateY(30px);
  display: none;
  opacity: 0;
}
.DROPDOWN .dropdown-menu.float-r {
  right: 0;
}
.DROPDOWN .dropdown-menu.float-l {
  left: 0;
}
.DROPDOWN:hover .dropdown-menu {
  display: block;
  animation: showDropdown 0.3s linear forwards;
}
@keyframes showDropdown {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/*******************************
         HEADINGS (#hd005)
  ********************************/
/* Big Heading  */
.bigHD {
  font-size: 4rem;
  line-height: 3rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
  margin-top: -0.6rem;
}

/* Main Heading  */
.mainHD {
  font-size: 2.2rem;
  line-height: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: capitalize;
}

@media (max-width: 1200px) {
  .bigHD {
    font-size: 2.5rem;
  }
}

@media (max-width: 858px) {
  .mainHD {
    font-size: 1.7rem;
  }
}

@media (max-width: 800px) {
  .bigHD {
    font-size: 1.8rem;
  }
}

@media (max-width: 510px) {
  .mainHD {
    font-size: 1.6rem;
  }
}

.hd-box {
  margin: auto;
  max-width: 42rem;
  margin-bottom: 4rem;
}
.hd-box p {
  color: var(--text-300);
}
.hd-box.all-c > * {
  text-align: center;
}

/*******************************
          BUTTONS (#BTN004)
********************************/
/* ===> 🌟 Help classes of btns 🌟 +++++++++ */
.btn-w100 {
  width: 100%;
}
.btn-min-w {
  width: 100%;
  max-width: 12.5rem;
}

.special-btn {
  display: flex !important;
  text-align: start !important;
}
.special-btn span {
  display: flex;
  align-items: center;
  width: 1.6rem;
  margin-right: 0.9rem;
  flex-shrink: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.344);
  height: 100%;
}
.special-btn.v-dark span {
  border-color: rgba(64, 64, 64, 0.344);
}

/* ===> 🌟 Size Varients of btn 🌟 +++++++++ */
/* Medium Size Btn (btn-md) */
.btn-lg {
  font-weight: 400;
  padding: 0.7rem 1.25rem;
  font-size: 0.88rem;
  border-radius: var(--radious-prim);
  text-align: center;
  color: var(--text-100);
  display: inline-block;
  letter-spacing: 1px;
  text-transform: capitalize;
}

/* Medium Size Btn (btn-md) */
.btn-md {
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  font-size: 0.81rem;
  border-radius: var(--radious-sec);
  text-align: center;
  color: var(--text-100);
  display: inline-block;
  text-transform: capitalize;
}

/* Small Size btn (btn-sm)*/
.btn-sm {
  font-weight: 400;
  letter-spacing: 1px;
  padding: 0.25rem 0.85rem;
  font-size: 0.7.5rem;
  border-radius: var(--radious-sec);
  color: var(--text-100);
  text-align: center;
  text-transform: capitalize;
}

@media (max-width: 800px) {
  .btn-lg {
    padding: 0.63rem 0.88rem;
    font-size: 0.75rem;
  }
  .btn-md {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
  }
  .btn-sm {
    font-size: 0.75rem;
  }
}

/* ===> 🌟 Btn varient by color 🌟 +++++++++ */
/* Primary Btn  */
.btn-prim {
  background: var(--primary);
  color: white;
  border: 2px solid var(--primary);
  transition: var(--Etrns);
}
.btn-prim:is(:hover, :active) {
  background-color: var(--prim-300);
  border: 2px solid var(--prim-300);
  color: white;
  transform: translateY(-2px);
}

/* Outline Primary Btn  */
.btn-prim-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 500;
  transition: var(--Etrns);
}
.btn-prim-outline:is(:hover, :active) {
  background: var(--primary);
  font-weight: 500;
  border: 2px solid var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* ****************************
           Social Icons
******************************* */
.social-icons-div {
  display: flex;
  gap: 10px;
}
.social-icons-div a {
  text-decoration: none;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  background-color: var(--primary);
  font-size: 10px;
  color: white;
  transition: var(--Ltrns);
}
.social-icons-div a:hover {
  transform: translateY(-5px);
}
.social-icons-div a i {
  margin-bottom: -1px;
}

/* ****************************
        Add Card
  ******************************* */
.add-col {
  border-radius: var(--radious-prim);
  overflow: hidden;
}
.add-col image {
  border-radius: var(--radious-prim);
  overflow: hidden;
  max-height: 30vh;
}

/* ****************************
        Product Components
  ******************************* */
/* Star Rating  */
.starRating-div {
  display: flex;
  align-items: center;
  gap: 5px;
}
.starRating-div p {
  margin: 0;
  font-size: 12px;
  color: var(--text-200);
}
.starRating-div span {
  color: #ff9529;
  font-size: 12px;
  letter-spacing: 1px;
}

/* Product Type (category) */
.product-type {
  margin-bottom: 7px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-type span {
  font-weight: 400;
  flex-shrink: 0;
  font-size: 12px;
  color: var(--text-200);
  text-transform: capitalize;
  display: inline-block;
  position: relative;
}
.product-type span:not(:last-child)::after {
  content: ",";
  position: absolute;
  bottom: 0;
  right: -4px;
  font-size: 14px;
}

/* Product Title */
.product-title {
  font-size: 15px;
  color: var(--text-100);
  margin-bottom: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--Ltrns);
}
.product-title:hover {
  color: var(--primary);
}

/* Progress Bar */
.progress-box {
  width: 100%;
  height: 4px;
  background: var(--bg-100);
  border-radius: 50px;
  margin-top: 13px;
  overflow: hidden;
}
.progress-box .progress-bar {
  background: var(--primary);
  height: inherit;
}

/* Product stock-A */
.stock-A {
  display: inline-block;
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--text-200);
  margin-bottom: 10px;
  margin-top: 0;

  &.in span {
    color: rgb(3, 162, 88);
  }
  &.out {
    color: rgb(255, 111, 111);
  }
}

/* Stock B CSS  */
.stock-B .progress {
  margin-top: 15px;
  height: 4px;
}
.stock-B .progress-bar {
  background-color: var(--primary);
}

.stock-B .salestatus {
  font-size: 12px;
  color: var(--text-100);
  margin: 10px 0;
  font-weight: 500;
  text-transform: capitalize;
}

/* Product Price <div>*/
.price-div {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.price-div .btn {
  flex-shrink: 0;
}

/* Product Price*/
.product-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-100);
  margin-top: 6px;
  margin-bottom: 0px;
  font-family: var(--secoundry-font);

  & span s {
    font-size: 15px;
    color: var(--text-300);
    font-family: var(--secoundry-font);
  }
}

/*==> Timer CSS */
.timer-div {
  display: flex;
  justify-content: space-around;
  padding-top: 5px;
  padding-bottom: 1rem;

  & .Time-box {
    padding: 5px 7px;
    width: 100%;
    &:first-child {
      padding-left: 0;
    }
    &:last-child {
      padding-right: 0;
    }
    &:not(:last-child) {
      border-right: 2px solid rgba(158, 157, 157, 0.186);
    }
  }

  & .Time-box h6 {
    font-size: 16px;
    text-align: center;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--primary);
  }

  & .Time-box p {
    font-size: 10px;
    text-align: center;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--text-100);
    text-transform: capitalize;
  }
}

@media (max-width: 1400px) {
  .product-price {
    font-size: 1rem;
  }

  .product-price span {
    font-size: 0.8rem;
  }

  .price-div .btn i {
    padding: 0;
  }
}

@media (max-width: 1200px) {
  .product-title {
    font-size: 14px;
  }
}

@media (max-width: 450px) {
  .product-title {
    font-size: 13px;
  }

  .timer-div .Time-box h6 {
    font-size: 14px;
  }
}

/* ****************************
     QUANTITY + / - (#qty256)
******************************* */
.qty-box {
  display: flex;
  padding: 0.4rem 0;
  border: var(--border-input);
  border-radius: var(--radious-prim);
  width: fit-content;
  overflow: hidden;
}

.qty-box .num {
  padding: 0.2rem;
  border-left: 1px solid #dee2e6;
  border-right: 1px solid #dee2e6;
  width: 3.5rem;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--secoundry-font);
}

.qty-box button {
  padding: 0.4rem 0.6rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--secoundry);
  font-size: 0.7rem;
  transition: all 0.5s ease;
}

.qty-box button:hover {
  color: var(--primary);
}

/* ******************************
    PRODUCT CARDS (#PCARD586)
  ******************************* */
.productCard {
  padding: 20px;
  border-radius: var(--radious-prim);
  border: var(--border-dark);
  overflow: hidden;
  position: relative;
  transition: var(--Etrns);
}
.productCard:hover {
  /* background-color: var(--bg-200); */
  box-shadow: var(--shadow-200);
  transform: var(--hover-transform);
}

.productCard .sale-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-block;
  align-items: center;
  padding: 4px 10px;
  background-color: #fa4c4c;
  border-radius: var(--radious-sec);
  color: white;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 11px;
  z-index: +1;
  box-shadow: 0 8px 16px 0 #fb4a4a3c;
}

/* ==> POP BOX (contain wishlist & compair btn)*/
.productCard .pop-box {
  position: absolute;
  top: 15px;
  right: 10px;
  z-index: +1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.productCard .pop-box button {
  width: 30px;
  height: 30px;
  padding: 0;
  display: grid;
  place-items: center;
  background-color: white;
  border: 1px solid rgb(229, 229, 229);
  border-radius: 100%;
  color: var(--text-100);
  opacity: 0;
  font-size: 11px;
  transition: var(--Etrns);
}
.productCard .pop-box button:hover,
.productCard .pop-box button.active {
  border: 1px solid var(--primary);
  color: var(--primary);
  transform: scale(1.1);
}
.productCard:hover .pop-box button {
  animation: poopin 0.5s ease forwards;
}

.productCard .pop-box button.compair-btn {
  animation-delay: 0.2s;
}

.productCard .pop-box button.cart-btn {
  animation-delay: 0.4s;
}

.productCard .pop-box button:hover.wish-btn {
  color: var(--wish-color);
  border: 1px solid var(--wish-color);
}
.productCard .pop-box button.active.wish-btn {
  background-color: var(--wish-lite);
  color: var(--wish-color);
  border: 1px solid var(--wish-color);
}

@keyframes poopin {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Img box */
.productCard .img-box {
  display: flex;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 10px;
  width: 100%;
  aspect-ratio: 1/1;
}

.productCard .img-box img {
  object-fit: contain;
}

.productCard:hover .img-box .default-img {
  display: none;
}
.productCard .img-box .hover-img {
  display: none;
  transition: all 0.9s linear;
}
.productCard:hover .img-box .hover-img {
  display: block;
  animation: displayNow 1s normal forwards ease-in-out;
}

@keyframes displayNow {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

/***** Product card txt center *****/
.productCard.all-center {
  & .product-type {
    justify-content: center;
  }

  & .product-title {
    text-align: center;
  }

  & .starRating-div {
    justify-content: center;
  }

  & .product-price {
    text-align: center;
  }
}

@media (max-width: 768px) {
  /* ==> POP BOX (contain wishlist & compair btn)*/
  .productCard {
    padding: 12px;
  }

  .productCard .pop-box {
    top: 10px;
    right: 10px;
  }

  .productCard .pop-box button {
    opacity: 1;
    font-size: 9px;
    width: 20px;
    height: 20px;
  }
}

/* ****************************
        OWL </> Btns Styling
  ******************************* */
.owl-nav button {
  width: 40px;
  height: 40px;
  display: grid !important;
  place-items: center;
  background-color: var(--prim-200) !important;
  border-radius: 100% !important;
  color: var(--primary) !important;
  transition: var(--Ltrns);
}
.owl-nav button:hover {
  background-color: var(--primary) !important;
  color: white !important;
}

/* ****************************
               Call Box 
  ******************************* */
.callme-box {
  display: flex;
  gap: 10px;
  align-items: center;
  height: fit-content;
}
.callme-box .icon-box {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.callme-box .icon-box i {
  font-size: 40px;
  color: var(--text-200);
}

.callme-box .calltxt-box a {
  display: block;
  font-size: 23px;
  font-weight: 900;
  font-family: var(--secoundry-font);
  text-decoration: none;
  color: var(--primary);
}
.callme-box .calltxt-box span {
  color: var(--text-200);
}

/* ****************************
            STYLE LIST
  ******************************* */
.style-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.8rem;
}
.style-list li {
  display: flex;
  gap: 0.5rem;
}
.style-list li span {
  flex-shrink: 0;
  background: rgba(64, 1, 1, 0.704);
  display: grid;
  place-items: center;
  border-radius: 100%;
  padding: 0.2rem;
}
.style-list li span i {
  color: var(--primary);
}

/*========================================== 
==> STYLISH CHECK / RADIO BTN (#syrc5458)
===========================================*/
.Choose-Box {
  margin-bottom: 2rem;
}
.Choose-Box h6 {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--text-100);
}

.stylish-check :is(input[type="radio"], input[type="checkbox"]) {
  -webkit-appearance: none;
  display: none;
}

.stylish-check label {
  display: inline-block;
  font-size: 0.8rem;
  padding: 5px;
  min-width: 2rem;
  min-height: 2rem;
  text-align: center;
  background: var(--bg-fff);
  color: var(--text-200);
  font-weight: 500;
  border: var(--border-dark);
  border-radius: var(--radious-prim);
  cursor: pointer;
}
.stylish-check
  :is(
    input[type="radio"]:checked + label,
    input[type="checkbox"]:checked + label
  ) {
  border: 2px solid var(--secoundry);
  color: var(--secoundry);
}

/* --------------------------
        TAB PANNEL
---------------------------- */
.tabPanel {
  padding: 1.7rem 2rem;
  border: var(--border-dark);
  border-radius: var(--radious-prim);
}

.tabs {
  list-style: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  gap: 15px;
  width: fit-content;
}
.tabs li {
  font-family: var(--secoundry-font);
  font-weight: 600;
  color: var(--text-200);
  border: 2px solid rgb(237, 237, 237);
  display: inline-block;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--Ltrns);

  &:hover {
    border: 2px solid rgb(208, 207, 207);
    transform: translateY(-2px);
  }

  &.active {
    border: 2px solid var(--prim-200);
    color: var(--primary);
  }
}

.all-panels > div {
  display: none;
}
.all-panels > div.show {
  display: block;
}

@media (max-width: 700px) {
  .tabPanel {
    padding: 1rem;
  }

  .tabs li {
    padding: 0.4rem 0.7rem;
    font-size: 0.8rem;
  }
}

/* --------------------------
    POPUP MSG BOX (#POP5458)
---------------------------- */
.pop-msg-box {
  border-radius: var(--radious-prim);
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-card);
  margin: 1.25rem 0;
}
.pop-msg-box.hide {
  transform-origin: top right;
  -webkit-transform-origin: top right; /* WebKit */
  -moz-transform-origin: top right; /* Mozilla */
  -o-transform-origin: top right; /* Opera */
  animation: anihide 0.4s linear forwards;
  -webkit-animation: anihide 0.4s linear forwards;
  -moz-animation: anihide 0.4s linear forwards;
  -o-animation: anihide 0.4s linear forwards;
}

@keyframes anihide {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  95% {
    transform: scale(0);
    opacity: 0;
  }

  100% {
    transform: scale(0);
    opacity: 0;
    display: none;
  }
}

.pop-msg-box p {
  font-weight: 600;
  margin: 0;
  font-family: var(--secoundry-font);
}
.pop-msg-box p b {
  font-weight: inherit;
}
.pop-msg-box .closeit {
  font-size: 1.13rem;
  flex-shrink: 0;
}

/* ==> choose Theme */
/* -- Warnning */
.pop-msg-box.warning {
  background: #fff3cd;
  border: 1px solid #ffecb5;
}
.pop-msg-box.warning :is(p, .closeit) {
  color: rgb(102, 77, 3);
  transition: var(--Ltrns);
}
.pop-msg-box.warning .closeit:hover {
  color: rgb(169, 128, 3);
}

/* -- Success */
.pop-msg-box.success {
  background: #d1e7dd;
  border: 1px solid #a3cfbb;
}
.pop-msg-box.success :is(p, .closeit) {
  color: #0a3622;
  transition: var(--Ltrns);
}
.pop-msg-box.success .closeit:hover {
  color: #a3cfbb;
}

/* -- Danger */
.pop-msg-box.danger {
  background: #fde9e8;
  border: 1px solid #f84b45;
}
.pop-msg-box.danger :is(p, .closeit) {
  color: #790808;
  transition: var(--Ltrns);
}
.pop-msg-box.danger .closeit:hover {
  color: #cfa3a3;
}

/* -- Information */
.pop-msg-box.info {
  background: var(--bg-300);
  border: 1px solid var(--secoundry);
}
.pop-msg-box.info :is(p, .closeit) {
  color: var(--secoundry);
  transition: var(--Ltrns);
}
.pop-msg-box.info .closeit:hover {
  color: var(--prim-200);
}

/* ****************************
             Whatsapp btn
******************************* */
.fixWwhatsappBtn {
  position: fixed;
  right: 1rem;
  bottom: 2rem;
  z-index: +6;
}
.fixWwhatsappBtn img {
  width: 3rem;
  transform-origin: bottom right;
  transition: var(--Etrns);
}
.fixWwhatsappBtn img:hover {
  transform: translateY(-4px) scale(1.1);
}
@media (max-width: 800px) {
  .fixWwhatsappBtn {
    bottom: 4.5rem;
  }
}

/* ****************************
               STYLE TAG
  ******************************* */
.style-tag {
  font-size: 0.7rem;
  color: var(--text-100);
  padding: 0.3rem 0.7rem;
  display: inline-block;
  border-radius: 50px;
  border: 1px solid var(--prim-400);
}
.style-tag i {
  margin-right: 0.2rem;
  color: var(--primary);
}

/* *****************************
         ACCORDION
******************************* */
.Accordion {
  transition: var(--transition-linear);
}

.Accordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 1rem;
  gap: 17px;
  background: var(--gradient-card);
  border-radius: var(--radious-sec);
  border: 1px solid #bcbcbc3d;
  transition: var(--transition-linear);
}
.Accordion[open] summary {
  box-shadow:
    0 0 0 1px rgba(229, 9, 20, 0.22),
    0 20px 45px rgba(0, 0, 0, 0.55),
    0 0 25px rgba(229, 9, 20, 0.15),
    0 0 80px rgba(229, 9, 20, 0.25);
}
.Accordion summary .title {
  color: var(--text-200);
  font-size: 15px;
  margin: 0;
  font-weight: 600;
  transition: var(--transition-linear);
}
.Accordion[open] summary .title {
  color: var(--primary);
}

/* Adding animation */
.Accordion summary .icon {
  color: var(--color-text-300);
  font-size: 17px;
  transition: var(--transition-linear);
}
.Accordion[open] summary .icon {
  transform: rotate(44deg);
  color: var(--primary);
}

/* Adding Body */
.Accordion .accordion-body {
  /* background: #efeff8;
  backdrop-filter: blur(5px);
  padding: 20px;
  border-radius: var(--radius-sec);
  border: var(--border-prim); */
  padding-top: 1rem;
  margin: 10px 0 20px 0;
}

@media (max-width: 700px) {
  .Accordion summary .title {
    font-size: 13px;
  }
}
