/* =====================
  1.1  Animation SCSS
 ========================== */
@keyframes fireworkLine {
  0% {
    right: 20%;
    transform: scale(0, 0);
  }
  25% {
    right: 20%;
    width: 6px;
    transform: scale(1, 1);
  }
  35% {
    right: 0;
    width: 35%;
  }
  70% {
    right: 0;
    width: 4px;
    transform: scale(1, 1);
  }
  100% {
    right: 0;
    transform: scale(0, 0);
  }
}
@keyframes fireworkPoint {
  30% {
    transform: scale(0, 0);
  }
  60% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(0, 0);
  }
}
@keyframes vector {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes round {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes left-to-right {
  0% {
    transform: rotate(-20deg) translate(-10px, -10px);
  }
  100% {
    transform: rotate(10deg) translate(10px, 10px);
  }
}
@keyframes bonus {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(10px);
  }
}
@keyframes bonus-map {
  0% {
    transform: translate(-22px, -66px);
  }
  100% {
    transform: translate(-22px, -70px);
  }
}
@keyframes pulseBefore {
  0% {
    transform: translate(-50%) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%) scale(1.4);
    opacity: 0;
  }
}
@keyframes pulseAfter {
  0% {
    transform: translate(-50%) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%) scale(1.2);
    opacity: 0;
  }
}
@keyframes subtlePulse {
  0% {
    transform: translate(-50%) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%) scale(1.2);
    opacity: 0.2;
  }
}
@keyframes lineAnim {
  0% {
    left: -40%;
  }
  50% {
    left: 20%;
    width: 60%;
  }
  100% {
    left: 100%;
    width: 100%;
  }
}
@keyframes reverse-lineAnim {
  0% {
    right: 40%;
  }
  50% {
    right: -20%;
    width: 60%;
  }
  100% {
    right: -100%;
    width: 100%;
  }
}
@keyframes blink {
  0%, 100% {
    background-color: rgba(var(--title-color), 1);
  }
  40%, 50% {
    background: transparent;
  }
}
@keyframes Gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes wave-hand {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(14deg);
  }
  20% {
    transform: rotate(-8deg);
  }
  30% {
    transform: rotate(14deg);
  }
  40% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(10deg);
  }
  60% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes scrollUp {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes scrollDown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0%);
  }
}
/*=====================
1.2 Common mixing SCSS
==========================*/
/* ======= Display Flex Css Start ======= */
/* ======= Display Flex Css End ======= */
/* ======= Display Center Css Start ======= */
/* ======= Display Flex Css End ======= */
/* ======= text line start ======= */
/* ======= text line end ======= */
/* ======= Display Space Css Start ======= */
/* ======= Display Flex Css End ======= */
/* ======= Flex Gap Css Start ======= */
/* ======= Flex Gap Css End ======= */
/*======= position css starts  ======= */
/*======= position css ends  ======= */
.padding-0 {
  padding: 0px;
}

.p_top-0 {
  padding-top: 0px;
}

.p_bottom-0 {
  padding-bottom: 0px;
}

.margin-0 {
  margin: 0px;
}

.m_top-0 {
  margin-top: 0px;
}

.m_bottom-0 {
  margin-bottom: 0px;
}

.w-0 {
  width: 0px;
}

.h-0 {
  height: 0px;
}

.radius-0 {
  border-radius: 0px;
}

.fs-0 {
  font-size: 0px;
}

.padding-1 {
  padding: 1px;
}

.p_top-1 {
  padding-top: 1px;
}

.p_bottom-1 {
  padding-bottom: 1px;
}

.margin-1 {
  margin: 1px;
}

.m_top-1 {
  margin-top: 1px;
}

.m_bottom-1 {
  margin-bottom: 1px;
}

.w-1 {
  width: 1px;
}

.h-1 {
  height: 1px;
}

.radius-1 {
  border-radius: 1px;
}

.fs-1 {
  font-size: 1px;
}

.padding-2 {
  padding: 2px;
}

.p_top-2 {
  padding-top: 2px;
}

.p_bottom-2 {
  padding-bottom: 2px;
}

.margin-2 {
  margin: 2px;
}

.m_top-2 {
  margin-top: 2px;
}

.m_bottom-2 {
  margin-bottom: 2px;
}

.w-2 {
  width: 2px;
}

.h-2 {
  height: 2px;
}

.radius-2 {
  border-radius: 2px;
}

.fs-2 {
  font-size: 2px;
}

.padding-3 {
  padding: 3px;
}

.p_top-3 {
  padding-top: 3px;
}

.p_bottom-3 {
  padding-bottom: 3px;
}

.margin-3 {
  margin: 3px;
}

.m_top-3 {
  margin-top: 3px;
}

.m_bottom-3 {
  margin-bottom: 3px;
}

.w-3 {
  width: 3px;
}

.h-3 {
  height: 3px;
}

.radius-3 {
  border-radius: 3px;
}

.fs-3 {
  font-size: 3px;
}

.padding-4 {
  padding: 4px;
}

.p_top-4 {
  padding-top: 4px;
}

.p_bottom-4 {
  padding-bottom: 4px;
}

.margin-4 {
  margin: 4px;
}

.m_top-4 {
  margin-top: 4px;
}

.m_bottom-4 {
  margin-bottom: 4px;
}

.w-4 {
  width: 4px;
}

.h-4 {
  height: 4px;
}

.radius-4 {
  border-radius: 4px;
}

.fs-4 {
  font-size: 4px;
}

.padding-5 {
  padding: 5px;
}

.p_top-5 {
  padding-top: 5px;
}

.p_bottom-5 {
  padding-bottom: 5px;
}

.margin-5 {
  margin: 5px;
}

.m_top-5 {
  margin-top: 5px;
}

.m_bottom-5 {
  margin-bottom: 5px;
}

.w-5 {
  width: 5px;
}

.h-5 {
  height: 5px;
}

.radius-5 {
  border-radius: 5px;
}

.fs-5 {
  font-size: 5px;
}

.padding-6 {
  padding: 6px;
}

.p_top-6 {
  padding-top: 6px;
}

.p_bottom-6 {
  padding-bottom: 6px;
}

.margin-6 {
  margin: 6px;
}

.m_top-6 {
  margin-top: 6px;
}

.m_bottom-6 {
  margin-bottom: 6px;
}

.w-6 {
  width: 6px;
}

.h-6 {
  height: 6px;
}

.radius-6 {
  border-radius: 6px;
}

.fs-6 {
  font-size: 6px;
}

.padding-7 {
  padding: 7px;
}

.p_top-7 {
  padding-top: 7px;
}

.p_bottom-7 {
  padding-bottom: 7px;
}

.margin-7 {
  margin: 7px;
}

.m_top-7 {
  margin-top: 7px;
}

.m_bottom-7 {
  margin-bottom: 7px;
}

.w-7 {
  width: 7px;
}

.h-7 {
  height: 7px;
}

.radius-7 {
  border-radius: 7px;
}

.fs-7 {
  font-size: 7px;
}

.padding-8 {
  padding: 8px;
}

.p_top-8 {
  padding-top: 8px;
}

.p_bottom-8 {
  padding-bottom: 8px;
}

.margin-8 {
  margin: 8px;
}

.m_top-8 {
  margin-top: 8px;
}

.m_bottom-8 {
  margin-bottom: 8px;
}

.w-8 {
  width: 8px;
}

.h-8 {
  height: 8px;
}

.radius-8 {
  border-radius: 8px;
}

.fs-8 {
  font-size: 8px;
}

.padding-9 {
  padding: 9px;
}

.p_top-9 {
  padding-top: 9px;
}

.p_bottom-9 {
  padding-bottom: 9px;
}

.margin-9 {
  margin: 9px;
}

.m_top-9 {
  margin-top: 9px;
}

.m_bottom-9 {
  margin-bottom: 9px;
}

.w-9 {
  width: 9px;
}

.h-9 {
  height: 9px;
}

.radius-9 {
  border-radius: 9px;
}

.fs-9 {
  font-size: 9px;
}

.padding-10 {
  padding: 10px;
}

.p_top-10 {
  padding-top: 10px;
}

.p_bottom-10 {
  padding-bottom: 10px;
}

.margin-10 {
  margin: 10px;
}

.m_top-10 {
  margin-top: 10px;
}

.m_bottom-10 {
  margin-bottom: 10px;
}

.w-10 {
  width: 10px;
}

.h-10 {
  height: 10px;
}

.radius-10 {
  border-radius: 10px;
}

.fs-10 {
  font-size: 10px;
}

.padding-11 {
  padding: 11px;
}

.p_top-11 {
  padding-top: 11px;
}

.p_bottom-11 {
  padding-bottom: 11px;
}

.margin-11 {
  margin: 11px;
}

.m_top-11 {
  margin-top: 11px;
}

.m_bottom-11 {
  margin-bottom: 11px;
}

.w-11 {
  width: 11px;
}

.h-11 {
  height: 11px;
}

.radius-11 {
  border-radius: 11px;
}

.fs-11 {
  font-size: 11px;
}

.padding-12 {
  padding: 12px;
}

.p_top-12 {
  padding-top: 12px;
}

.p_bottom-12 {
  padding-bottom: 12px;
}

.margin-12 {
  margin: 12px;
}

.m_top-12 {
  margin-top: 12px;
}

.m_bottom-12 {
  margin-bottom: 12px;
}

.w-12 {
  width: 12px;
}

.h-12 {
  height: 12px;
}

.radius-12 {
  border-radius: 12px;
}

.fs-12 {
  font-size: 12px;
}

.padding-13 {
  padding: 13px;
}

.p_top-13 {
  padding-top: 13px;
}

.p_bottom-13 {
  padding-bottom: 13px;
}

.margin-13 {
  margin: 13px;
}

.m_top-13 {
  margin-top: 13px;
}

.m_bottom-13 {
  margin-bottom: 13px;
}

.w-13 {
  width: 13px;
}

.h-13 {
  height: 13px;
}

.radius-13 {
  border-radius: 13px;
}

.fs-13 {
  font-size: 13px;
}

.padding-14 {
  padding: 14px;
}

.p_top-14 {
  padding-top: 14px;
}

.p_bottom-14 {
  padding-bottom: 14px;
}

.margin-14 {
  margin: 14px;
}

.m_top-14 {
  margin-top: 14px;
}

.m_bottom-14 {
  margin-bottom: 14px;
}

.w-14 {
  width: 14px;
}

.h-14 {
  height: 14px;
}

.radius-14 {
  border-radius: 14px;
}

.fs-14 {
  font-size: 14px;
}

.padding-15 {
  padding: 15px;
}

.p_top-15 {
  padding-top: 15px;
}

.p_bottom-15 {
  padding-bottom: 15px;
}

.margin-15 {
  margin: 15px;
}

.m_top-15 {
  margin-top: 15px;
}

.m_bottom-15 {
  margin-bottom: 15px;
}

.w-15 {
  width: 15px;
}

.h-15 {
  height: 15px;
}

.radius-15 {
  border-radius: 15px;
}

.fs-15 {
  font-size: 15px;
}

.padding-16 {
  padding: 16px;
}

.p_top-16 {
  padding-top: 16px;
}

.p_bottom-16 {
  padding-bottom: 16px;
}

.margin-16 {
  margin: 16px;
}

.m_top-16 {
  margin-top: 16px;
}

.m_bottom-16 {
  margin-bottom: 16px;
}

.w-16 {
  width: 16px;
}

.h-16 {
  height: 16px;
}

.radius-16 {
  border-radius: 16px;
}

.fs-16 {
  font-size: 16px;
}

.padding-17 {
  padding: 17px;
}

.p_top-17 {
  padding-top: 17px;
}

.p_bottom-17 {
  padding-bottom: 17px;
}

.margin-17 {
  margin: 17px;
}

.m_top-17 {
  margin-top: 17px;
}

.m_bottom-17 {
  margin-bottom: 17px;
}

.w-17 {
  width: 17px;
}

.h-17 {
  height: 17px;
}

.radius-17 {
  border-radius: 17px;
}

.fs-17 {
  font-size: 17px;
}

.padding-18 {
  padding: 18px;
}

.p_top-18 {
  padding-top: 18px;
}

.p_bottom-18 {
  padding-bottom: 18px;
}

.margin-18 {
  margin: 18px;
}

.m_top-18 {
  margin-top: 18px;
}

.m_bottom-18 {
  margin-bottom: 18px;
}

.w-18 {
  width: 18px;
}

.h-18 {
  height: 18px;
}

.radius-18 {
  border-radius: 18px;
}

.fs-18 {
  font-size: 18px;
}

.padding-19 {
  padding: 19px;
}

.p_top-19 {
  padding-top: 19px;
}

.p_bottom-19 {
  padding-bottom: 19px;
}

.margin-19 {
  margin: 19px;
}

.m_top-19 {
  margin-top: 19px;
}

.m_bottom-19 {
  margin-bottom: 19px;
}

.w-19 {
  width: 19px;
}

.h-19 {
  height: 19px;
}

.radius-19 {
  border-radius: 19px;
}

.fs-19 {
  font-size: 19px;
}

.padding-20 {
  padding: 20px;
}

.p_top-20 {
  padding-top: 20px;
}

.p_bottom-20 {
  padding-bottom: 20px;
}

.margin-20 {
  margin: 20px;
}

.m_top-20 {
  margin-top: 20px;
}

.m_bottom-20 {
  margin-bottom: 20px;
}

.w-20 {
  width: 20px;
}

.h-20 {
  height: 20px;
}

.radius-20 {
  border-radius: 20px;
}

.fs-20 {
  font-size: 20px;
}

.padding-21 {
  padding: 21px;
}

.p_top-21 {
  padding-top: 21px;
}

.p_bottom-21 {
  padding-bottom: 21px;
}

.margin-21 {
  margin: 21px;
}

.m_top-21 {
  margin-top: 21px;
}

.m_bottom-21 {
  margin-bottom: 21px;
}

.w-21 {
  width: 21px;
}

.h-21 {
  height: 21px;
}

.radius-21 {
  border-radius: 21px;
}

.fs-21 {
  font-size: 21px;
}

.padding-22 {
  padding: 22px;
}

.p_top-22 {
  padding-top: 22px;
}

.p_bottom-22 {
  padding-bottom: 22px;
}

.margin-22 {
  margin: 22px;
}

.m_top-22 {
  margin-top: 22px;
}

.m_bottom-22 {
  margin-bottom: 22px;
}

.w-22 {
  width: 22px;
}

.h-22 {
  height: 22px;
}

.radius-22 {
  border-radius: 22px;
}

.fs-22 {
  font-size: 22px;
}

.padding-23 {
  padding: 23px;
}

.p_top-23 {
  padding-top: 23px;
}

.p_bottom-23 {
  padding-bottom: 23px;
}

.margin-23 {
  margin: 23px;
}

.m_top-23 {
  margin-top: 23px;
}

.m_bottom-23 {
  margin-bottom: 23px;
}

.w-23 {
  width: 23px;
}

.h-23 {
  height: 23px;
}

.radius-23 {
  border-radius: 23px;
}

.fs-23 {
  font-size: 23px;
}

.padding-24 {
  padding: 24px;
}

.p_top-24 {
  padding-top: 24px;
}

.p_bottom-24 {
  padding-bottom: 24px;
}

.margin-24 {
  margin: 24px;
}

.m_top-24 {
  margin-top: 24px;
}

.m_bottom-24 {
  margin-bottom: 24px;
}

.w-24 {
  width: 24px;
}

.h-24 {
  height: 24px;
}

.radius-24 {
  border-radius: 24px;
}

.fs-24 {
  font-size: 24px;
}

.padding-25 {
  padding: 25px;
}

.p_top-25 {
  padding-top: 25px;
}

.p_bottom-25 {
  padding-bottom: 25px;
}

.margin-25 {
  margin: 25px;
}

.m_top-25 {
  margin-top: 25px;
}

.m_bottom-25 {
  margin-bottom: 25px;
}

.w-25 {
  width: 25px;
}

.h-25 {
  height: 25px;
}

.radius-25 {
  border-radius: 25px;
}

.fs-25 {
  font-size: 25px;
}

.padding-26 {
  padding: 26px;
}

.p_top-26 {
  padding-top: 26px;
}

.p_bottom-26 {
  padding-bottom: 26px;
}

.margin-26 {
  margin: 26px;
}

.m_top-26 {
  margin-top: 26px;
}

.m_bottom-26 {
  margin-bottom: 26px;
}

.w-26 {
  width: 26px;
}

.h-26 {
  height: 26px;
}

.radius-26 {
  border-radius: 26px;
}

.fs-26 {
  font-size: 26px;
}

.padding-27 {
  padding: 27px;
}

.p_top-27 {
  padding-top: 27px;
}

.p_bottom-27 {
  padding-bottom: 27px;
}

.margin-27 {
  margin: 27px;
}

.m_top-27 {
  margin-top: 27px;
}

.m_bottom-27 {
  margin-bottom: 27px;
}

.w-27 {
  width: 27px;
}

.h-27 {
  height: 27px;
}

.radius-27 {
  border-radius: 27px;
}

.fs-27 {
  font-size: 27px;
}

.padding-28 {
  padding: 28px;
}

.p_top-28 {
  padding-top: 28px;
}

.p_bottom-28 {
  padding-bottom: 28px;
}

.margin-28 {
  margin: 28px;
}

.m_top-28 {
  margin-top: 28px;
}

.m_bottom-28 {
  margin-bottom: 28px;
}

.w-28 {
  width: 28px;
}

.h-28 {
  height: 28px;
}

.radius-28 {
  border-radius: 28px;
}

.fs-28 {
  font-size: 28px;
}

.padding-29 {
  padding: 29px;
}

.p_top-29 {
  padding-top: 29px;
}

.p_bottom-29 {
  padding-bottom: 29px;
}

.margin-29 {
  margin: 29px;
}

.m_top-29 {
  margin-top: 29px;
}

.m_bottom-29 {
  margin-bottom: 29px;
}

.w-29 {
  width: 29px;
}

.h-29 {
  height: 29px;
}

.radius-29 {
  border-radius: 29px;
}

.fs-29 {
  font-size: 29px;
}

.padding-30 {
  padding: 30px;
}

.p_top-30 {
  padding-top: 30px;
}

.p_bottom-30 {
  padding-bottom: 30px;
}

.margin-30 {
  margin: 30px;
}

.m_top-30 {
  margin-top: 30px;
}

.m_bottom-30 {
  margin-bottom: 30px;
}

.w-30 {
  width: 30px;
}

.h-30 {
  height: 30px;
}

.radius-30 {
  border-radius: 30px;
}

.fs-30 {
  font-size: 30px;
}

.padding-31 {
  padding: 31px;
}

.p_top-31 {
  padding-top: 31px;
}

.p_bottom-31 {
  padding-bottom: 31px;
}

.margin-31 {
  margin: 31px;
}

.m_top-31 {
  margin-top: 31px;
}

.m_bottom-31 {
  margin-bottom: 31px;
}

.w-31 {
  width: 31px;
}

.h-31 {
  height: 31px;
}

.radius-31 {
  border-radius: 31px;
}

.fs-31 {
  font-size: 31px;
}

.padding-32 {
  padding: 32px;
}

.p_top-32 {
  padding-top: 32px;
}

.p_bottom-32 {
  padding-bottom: 32px;
}

.margin-32 {
  margin: 32px;
}

.m_top-32 {
  margin-top: 32px;
}

.m_bottom-32 {
  margin-bottom: 32px;
}

.w-32 {
  width: 32px;
}

.h-32 {
  height: 32px;
}

.radius-32 {
  border-radius: 32px;
}

.fs-32 {
  font-size: 32px;
}

.padding-33 {
  padding: 33px;
}

.p_top-33 {
  padding-top: 33px;
}

.p_bottom-33 {
  padding-bottom: 33px;
}

.margin-33 {
  margin: 33px;
}

.m_top-33 {
  margin-top: 33px;
}

.m_bottom-33 {
  margin-bottom: 33px;
}

.w-33 {
  width: 33px;
}

.h-33 {
  height: 33px;
}

.radius-33 {
  border-radius: 33px;
}

.fs-33 {
  font-size: 33px;
}

.padding-34 {
  padding: 34px;
}

.p_top-34 {
  padding-top: 34px;
}

.p_bottom-34 {
  padding-bottom: 34px;
}

.margin-34 {
  margin: 34px;
}

.m_top-34 {
  margin-top: 34px;
}

.m_bottom-34 {
  margin-bottom: 34px;
}

.w-34 {
  width: 34px;
}

.h-34 {
  height: 34px;
}

.radius-34 {
  border-radius: 34px;
}

.fs-34 {
  font-size: 34px;
}

.padding-35 {
  padding: 35px;
}

.p_top-35 {
  padding-top: 35px;
}

.p_bottom-35 {
  padding-bottom: 35px;
}

.margin-35 {
  margin: 35px;
}

.m_top-35 {
  margin-top: 35px;
}

.m_bottom-35 {
  margin-bottom: 35px;
}

.w-35 {
  width: 35px;
}

.h-35 {
  height: 35px;
}

.radius-35 {
  border-radius: 35px;
}

.fs-35 {
  font-size: 35px;
}

.padding-36 {
  padding: 36px;
}

.p_top-36 {
  padding-top: 36px;
}

.p_bottom-36 {
  padding-bottom: 36px;
}

.margin-36 {
  margin: 36px;
}

.m_top-36 {
  margin-top: 36px;
}

.m_bottom-36 {
  margin-bottom: 36px;
}

.w-36 {
  width: 36px;
}

.h-36 {
  height: 36px;
}

.radius-36 {
  border-radius: 36px;
}

.fs-36 {
  font-size: 36px;
}

.padding-37 {
  padding: 37px;
}

.p_top-37 {
  padding-top: 37px;
}

.p_bottom-37 {
  padding-bottom: 37px;
}

.margin-37 {
  margin: 37px;
}

.m_top-37 {
  margin-top: 37px;
}

.m_bottom-37 {
  margin-bottom: 37px;
}

.w-37 {
  width: 37px;
}

.h-37 {
  height: 37px;
}

.radius-37 {
  border-radius: 37px;
}

.fs-37 {
  font-size: 37px;
}

.padding-38 {
  padding: 38px;
}

.p_top-38 {
  padding-top: 38px;
}

.p_bottom-38 {
  padding-bottom: 38px;
}

.margin-38 {
  margin: 38px;
}

.m_top-38 {
  margin-top: 38px;
}

.m_bottom-38 {
  margin-bottom: 38px;
}

.w-38 {
  width: 38px;
}

.h-38 {
  height: 38px;
}

.radius-38 {
  border-radius: 38px;
}

.fs-38 {
  font-size: 38px;
}

.padding-39 {
  padding: 39px;
}

.p_top-39 {
  padding-top: 39px;
}

.p_bottom-39 {
  padding-bottom: 39px;
}

.margin-39 {
  margin: 39px;
}

.m_top-39 {
  margin-top: 39px;
}

.m_bottom-39 {
  margin-bottom: 39px;
}

.w-39 {
  width: 39px;
}

.h-39 {
  height: 39px;
}

.radius-39 {
  border-radius: 39px;
}

.fs-39 {
  font-size: 39px;
}

.padding-40 {
  padding: 40px;
}

.p_top-40 {
  padding-top: 40px;
}

.p_bottom-40 {
  padding-bottom: 40px;
}

.margin-40 {
  margin: 40px;
}

.m_top-40 {
  margin-top: 40px;
}

.m_bottom-40 {
  margin-bottom: 40px;
}

.w-40 {
  width: 40px;
}

.h-40 {
  height: 40px;
}

.radius-40 {
  border-radius: 40px;
}

.fs-40 {
  font-size: 40px;
}

.padding-41 {
  padding: 41px;
}

.p_top-41 {
  padding-top: 41px;
}

.p_bottom-41 {
  padding-bottom: 41px;
}

.margin-41 {
  margin: 41px;
}

.m_top-41 {
  margin-top: 41px;
}

.m_bottom-41 {
  margin-bottom: 41px;
}

.w-41 {
  width: 41px;
}

.h-41 {
  height: 41px;
}

.radius-41 {
  border-radius: 41px;
}

.fs-41 {
  font-size: 41px;
}

.padding-42 {
  padding: 42px;
}

.p_top-42 {
  padding-top: 42px;
}

.p_bottom-42 {
  padding-bottom: 42px;
}

.margin-42 {
  margin: 42px;
}

.m_top-42 {
  margin-top: 42px;
}

.m_bottom-42 {
  margin-bottom: 42px;
}

.w-42 {
  width: 42px;
}

.h-42 {
  height: 42px;
}

.radius-42 {
  border-radius: 42px;
}

.fs-42 {
  font-size: 42px;
}

.padding-43 {
  padding: 43px;
}

.p_top-43 {
  padding-top: 43px;
}

.p_bottom-43 {
  padding-bottom: 43px;
}

.margin-43 {
  margin: 43px;
}

.m_top-43 {
  margin-top: 43px;
}

.m_bottom-43 {
  margin-bottom: 43px;
}

.w-43 {
  width: 43px;
}

.h-43 {
  height: 43px;
}

.radius-43 {
  border-radius: 43px;
}

.fs-43 {
  font-size: 43px;
}

.padding-44 {
  padding: 44px;
}

.p_top-44 {
  padding-top: 44px;
}

.p_bottom-44 {
  padding-bottom: 44px;
}

.margin-44 {
  margin: 44px;
}

.m_top-44 {
  margin-top: 44px;
}

.m_bottom-44 {
  margin-bottom: 44px;
}

.w-44 {
  width: 44px;
}

.h-44 {
  height: 44px;
}

.radius-44 {
  border-radius: 44px;
}

.fs-44 {
  font-size: 44px;
}

.padding-45 {
  padding: 45px;
}

.p_top-45 {
  padding-top: 45px;
}

.p_bottom-45 {
  padding-bottom: 45px;
}

.margin-45 {
  margin: 45px;
}

.m_top-45 {
  margin-top: 45px;
}

.m_bottom-45 {
  margin-bottom: 45px;
}

.w-45 {
  width: 45px;
}

.h-45 {
  height: 45px;
}

.radius-45 {
  border-radius: 45px;
}

.fs-45 {
  font-size: 45px;
}

.padding-46 {
  padding: 46px;
}

.p_top-46 {
  padding-top: 46px;
}

.p_bottom-46 {
  padding-bottom: 46px;
}

.margin-46 {
  margin: 46px;
}

.m_top-46 {
  margin-top: 46px;
}

.m_bottom-46 {
  margin-bottom: 46px;
}

.w-46 {
  width: 46px;
}

.h-46 {
  height: 46px;
}

.radius-46 {
  border-radius: 46px;
}

.fs-46 {
  font-size: 46px;
}

.padding-47 {
  padding: 47px;
}

.p_top-47 {
  padding-top: 47px;
}

.p_bottom-47 {
  padding-bottom: 47px;
}

.margin-47 {
  margin: 47px;
}

.m_top-47 {
  margin-top: 47px;
}

.m_bottom-47 {
  margin-bottom: 47px;
}

.w-47 {
  width: 47px;
}

.h-47 {
  height: 47px;
}

.radius-47 {
  border-radius: 47px;
}

.fs-47 {
  font-size: 47px;
}

.padding-48 {
  padding: 48px;
}

.p_top-48 {
  padding-top: 48px;
}

.p_bottom-48 {
  padding-bottom: 48px;
}

.margin-48 {
  margin: 48px;
}

.m_top-48 {
  margin-top: 48px;
}

.m_bottom-48 {
  margin-bottom: 48px;
}

.w-48 {
  width: 48px;
}

.h-48 {
  height: 48px;
}

.radius-48 {
  border-radius: 48px;
}

.fs-48 {
  font-size: 48px;
}

.padding-49 {
  padding: 49px;
}

.p_top-49 {
  padding-top: 49px;
}

.p_bottom-49 {
  padding-bottom: 49px;
}

.margin-49 {
  margin: 49px;
}

.m_top-49 {
  margin-top: 49px;
}

.m_bottom-49 {
  margin-bottom: 49px;
}

.w-49 {
  width: 49px;
}

.h-49 {
  height: 49px;
}

.radius-49 {
  border-radius: 49px;
}

.fs-49 {
  font-size: 49px;
}

.padding-50 {
  padding: 50px;
}

.p_top-50 {
  padding-top: 50px;
}

.p_bottom-50 {
  padding-bottom: 50px;
}

.margin-50 {
  margin: 50px;
}

.m_top-50 {
  margin-top: 50px;
}

.m_bottom-50 {
  margin-bottom: 50px;
}

.w-50 {
  width: 50px;
}

.h-50 {
  height: 50px;
}

.radius-50 {
  border-radius: 50px;
}

.fs-50 {
  font-size: 50px;
}

.padding-51 {
  padding: 51px;
}

.p_top-51 {
  padding-top: 51px;
}

.p_bottom-51 {
  padding-bottom: 51px;
}

.margin-51 {
  margin: 51px;
}

.m_top-51 {
  margin-top: 51px;
}

.m_bottom-51 {
  margin-bottom: 51px;
}

.w-51 {
  width: 51px;
}

.h-51 {
  height: 51px;
}

.radius-51 {
  border-radius: 51px;
}

.fs-51 {
  font-size: 51px;
}

.padding-52 {
  padding: 52px;
}

.p_top-52 {
  padding-top: 52px;
}

.p_bottom-52 {
  padding-bottom: 52px;
}

.margin-52 {
  margin: 52px;
}

.m_top-52 {
  margin-top: 52px;
}

.m_bottom-52 {
  margin-bottom: 52px;
}

.w-52 {
  width: 52px;
}

.h-52 {
  height: 52px;
}

.radius-52 {
  border-radius: 52px;
}

.fs-52 {
  font-size: 52px;
}

.padding-53 {
  padding: 53px;
}

.p_top-53 {
  padding-top: 53px;
}

.p_bottom-53 {
  padding-bottom: 53px;
}

.margin-53 {
  margin: 53px;
}

.m_top-53 {
  margin-top: 53px;
}

.m_bottom-53 {
  margin-bottom: 53px;
}

.w-53 {
  width: 53px;
}

.h-53 {
  height: 53px;
}

.radius-53 {
  border-radius: 53px;
}

.fs-53 {
  font-size: 53px;
}

.padding-54 {
  padding: 54px;
}

.p_top-54 {
  padding-top: 54px;
}

.p_bottom-54 {
  padding-bottom: 54px;
}

.margin-54 {
  margin: 54px;
}

.m_top-54 {
  margin-top: 54px;
}

.m_bottom-54 {
  margin-bottom: 54px;
}

.w-54 {
  width: 54px;
}

.h-54 {
  height: 54px;
}

.radius-54 {
  border-radius: 54px;
}

.fs-54 {
  font-size: 54px;
}

.padding-55 {
  padding: 55px;
}

.p_top-55 {
  padding-top: 55px;
}

.p_bottom-55 {
  padding-bottom: 55px;
}

.margin-55 {
  margin: 55px;
}

.m_top-55 {
  margin-top: 55px;
}

.m_bottom-55 {
  margin-bottom: 55px;
}

.w-55 {
  width: 55px;
}

.h-55 {
  height: 55px;
}

.radius-55 {
  border-radius: 55px;
}

.fs-55 {
  font-size: 55px;
}

.padding-56 {
  padding: 56px;
}

.p_top-56 {
  padding-top: 56px;
}

.p_bottom-56 {
  padding-bottom: 56px;
}

.margin-56 {
  margin: 56px;
}

.m_top-56 {
  margin-top: 56px;
}

.m_bottom-56 {
  margin-bottom: 56px;
}

.w-56 {
  width: 56px;
}

.h-56 {
  height: 56px;
}

.radius-56 {
  border-radius: 56px;
}

.fs-56 {
  font-size: 56px;
}

.padding-57 {
  padding: 57px;
}

.p_top-57 {
  padding-top: 57px;
}

.p_bottom-57 {
  padding-bottom: 57px;
}

.margin-57 {
  margin: 57px;
}

.m_top-57 {
  margin-top: 57px;
}

.m_bottom-57 {
  margin-bottom: 57px;
}

.w-57 {
  width: 57px;
}

.h-57 {
  height: 57px;
}

.radius-57 {
  border-radius: 57px;
}

.fs-57 {
  font-size: 57px;
}

.padding-58 {
  padding: 58px;
}

.p_top-58 {
  padding-top: 58px;
}

.p_bottom-58 {
  padding-bottom: 58px;
}

.margin-58 {
  margin: 58px;
}

.m_top-58 {
  margin-top: 58px;
}

.m_bottom-58 {
  margin-bottom: 58px;
}

.w-58 {
  width: 58px;
}

.h-58 {
  height: 58px;
}

.radius-58 {
  border-radius: 58px;
}

.fs-58 {
  font-size: 58px;
}

.padding-59 {
  padding: 59px;
}

.p_top-59 {
  padding-top: 59px;
}

.p_bottom-59 {
  padding-bottom: 59px;
}

.margin-59 {
  margin: 59px;
}

.m_top-59 {
  margin-top: 59px;
}

.m_bottom-59 {
  margin-bottom: 59px;
}

.w-59 {
  width: 59px;
}

.h-59 {
  height: 59px;
}

.radius-59 {
  border-radius: 59px;
}

.fs-59 {
  font-size: 59px;
}

.padding-60 {
  padding: 60px;
}

.p_top-60 {
  padding-top: 60px;
}

.p_bottom-60 {
  padding-bottom: 60px;
}

.margin-60 {
  margin: 60px;
}

.m_top-60 {
  margin-top: 60px;
}

.m_bottom-60 {
  margin-bottom: 60px;
}

.w-60 {
  width: 60px;
}

.h-60 {
  height: 60px;
}

.radius-60 {
  border-radius: 60px;
}

.fs-60 {
  font-size: 60px;
}

.padding-61 {
  padding: 61px;
}

.p_top-61 {
  padding-top: 61px;
}

.p_bottom-61 {
  padding-bottom: 61px;
}

.margin-61 {
  margin: 61px;
}

.m_top-61 {
  margin-top: 61px;
}

.m_bottom-61 {
  margin-bottom: 61px;
}

.w-61 {
  width: 61px;
}

.h-61 {
  height: 61px;
}

.radius-61 {
  border-radius: 61px;
}

.fs-61 {
  font-size: 61px;
}

.padding-62 {
  padding: 62px;
}

.p_top-62 {
  padding-top: 62px;
}

.p_bottom-62 {
  padding-bottom: 62px;
}

.margin-62 {
  margin: 62px;
}

.m_top-62 {
  margin-top: 62px;
}

.m_bottom-62 {
  margin-bottom: 62px;
}

.w-62 {
  width: 62px;
}

.h-62 {
  height: 62px;
}

.radius-62 {
  border-radius: 62px;
}

.fs-62 {
  font-size: 62px;
}

.padding-63 {
  padding: 63px;
}

.p_top-63 {
  padding-top: 63px;
}

.p_bottom-63 {
  padding-bottom: 63px;
}

.margin-63 {
  margin: 63px;
}

.m_top-63 {
  margin-top: 63px;
}

.m_bottom-63 {
  margin-bottom: 63px;
}

.w-63 {
  width: 63px;
}

.h-63 {
  height: 63px;
}

.radius-63 {
  border-radius: 63px;
}

.fs-63 {
  font-size: 63px;
}

.padding-64 {
  padding: 64px;
}

.p_top-64 {
  padding-top: 64px;
}

.p_bottom-64 {
  padding-bottom: 64px;
}

.margin-64 {
  margin: 64px;
}

.m_top-64 {
  margin-top: 64px;
}

.m_bottom-64 {
  margin-bottom: 64px;
}

.w-64 {
  width: 64px;
}

.h-64 {
  height: 64px;
}

.radius-64 {
  border-radius: 64px;
}

.fs-64 {
  font-size: 64px;
}

.padding-65 {
  padding: 65px;
}

.p_top-65 {
  padding-top: 65px;
}

.p_bottom-65 {
  padding-bottom: 65px;
}

.margin-65 {
  margin: 65px;
}

.m_top-65 {
  margin-top: 65px;
}

.m_bottom-65 {
  margin-bottom: 65px;
}

.w-65 {
  width: 65px;
}

.h-65 {
  height: 65px;
}

.radius-65 {
  border-radius: 65px;
}

.fs-65 {
  font-size: 65px;
}

.padding-66 {
  padding: 66px;
}

.p_top-66 {
  padding-top: 66px;
}

.p_bottom-66 {
  padding-bottom: 66px;
}

.margin-66 {
  margin: 66px;
}

.m_top-66 {
  margin-top: 66px;
}

.m_bottom-66 {
  margin-bottom: 66px;
}

.w-66 {
  width: 66px;
}

.h-66 {
  height: 66px;
}

.radius-66 {
  border-radius: 66px;
}

.fs-66 {
  font-size: 66px;
}

.padding-67 {
  padding: 67px;
}

.p_top-67 {
  padding-top: 67px;
}

.p_bottom-67 {
  padding-bottom: 67px;
}

.margin-67 {
  margin: 67px;
}

.m_top-67 {
  margin-top: 67px;
}

.m_bottom-67 {
  margin-bottom: 67px;
}

.w-67 {
  width: 67px;
}

.h-67 {
  height: 67px;
}

.radius-67 {
  border-radius: 67px;
}

.fs-67 {
  font-size: 67px;
}

.padding-68 {
  padding: 68px;
}

.p_top-68 {
  padding-top: 68px;
}

.p_bottom-68 {
  padding-bottom: 68px;
}

.margin-68 {
  margin: 68px;
}

.m_top-68 {
  margin-top: 68px;
}

.m_bottom-68 {
  margin-bottom: 68px;
}

.w-68 {
  width: 68px;
}

.h-68 {
  height: 68px;
}

.radius-68 {
  border-radius: 68px;
}

.fs-68 {
  font-size: 68px;
}

.padding-69 {
  padding: 69px;
}

.p_top-69 {
  padding-top: 69px;
}

.p_bottom-69 {
  padding-bottom: 69px;
}

.margin-69 {
  margin: 69px;
}

.m_top-69 {
  margin-top: 69px;
}

.m_bottom-69 {
  margin-bottom: 69px;
}

.w-69 {
  width: 69px;
}

.h-69 {
  height: 69px;
}

.radius-69 {
  border-radius: 69px;
}

.fs-69 {
  font-size: 69px;
}

.padding-70 {
  padding: 70px;
}

.p_top-70 {
  padding-top: 70px;
}

.p_bottom-70 {
  padding-bottom: 70px;
}

.margin-70 {
  margin: 70px;
}

.m_top-70 {
  margin-top: 70px;
}

.m_bottom-70 {
  margin-bottom: 70px;
}

.w-70 {
  width: 70px;
}

.h-70 {
  height: 70px;
}

.radius-70 {
  border-radius: 70px;
}

.fs-70 {
  font-size: 70px;
}

.padding-71 {
  padding: 71px;
}

.p_top-71 {
  padding-top: 71px;
}

.p_bottom-71 {
  padding-bottom: 71px;
}

.margin-71 {
  margin: 71px;
}

.m_top-71 {
  margin-top: 71px;
}

.m_bottom-71 {
  margin-bottom: 71px;
}

.w-71 {
  width: 71px;
}

.h-71 {
  height: 71px;
}

.radius-71 {
  border-radius: 71px;
}

.fs-71 {
  font-size: 71px;
}

.padding-72 {
  padding: 72px;
}

.p_top-72 {
  padding-top: 72px;
}

.p_bottom-72 {
  padding-bottom: 72px;
}

.margin-72 {
  margin: 72px;
}

.m_top-72 {
  margin-top: 72px;
}

.m_bottom-72 {
  margin-bottom: 72px;
}

.w-72 {
  width: 72px;
}

.h-72 {
  height: 72px;
}

.radius-72 {
  border-radius: 72px;
}

.fs-72 {
  font-size: 72px;
}

.padding-73 {
  padding: 73px;
}

.p_top-73 {
  padding-top: 73px;
}

.p_bottom-73 {
  padding-bottom: 73px;
}

.margin-73 {
  margin: 73px;
}

.m_top-73 {
  margin-top: 73px;
}

.m_bottom-73 {
  margin-bottom: 73px;
}

.w-73 {
  width: 73px;
}

.h-73 {
  height: 73px;
}

.radius-73 {
  border-radius: 73px;
}

.fs-73 {
  font-size: 73px;
}

.padding-74 {
  padding: 74px;
}

.p_top-74 {
  padding-top: 74px;
}

.p_bottom-74 {
  padding-bottom: 74px;
}

.margin-74 {
  margin: 74px;
}

.m_top-74 {
  margin-top: 74px;
}

.m_bottom-74 {
  margin-bottom: 74px;
}

.w-74 {
  width: 74px;
}

.h-74 {
  height: 74px;
}

.radius-74 {
  border-radius: 74px;
}

.fs-74 {
  font-size: 74px;
}

.padding-75 {
  padding: 75px;
}

.p_top-75 {
  padding-top: 75px;
}

.p_bottom-75 {
  padding-bottom: 75px;
}

.margin-75 {
  margin: 75px;
}

.m_top-75 {
  margin-top: 75px;
}

.m_bottom-75 {
  margin-bottom: 75px;
}

.w-75 {
  width: 75px;
}

.h-75 {
  height: 75px;
}

.radius-75 {
  border-radius: 75px;
}

.fs-75 {
  font-size: 75px;
}

.padding-76 {
  padding: 76px;
}

.p_top-76 {
  padding-top: 76px;
}

.p_bottom-76 {
  padding-bottom: 76px;
}

.margin-76 {
  margin: 76px;
}

.m_top-76 {
  margin-top: 76px;
}

.m_bottom-76 {
  margin-bottom: 76px;
}

.w-76 {
  width: 76px;
}

.h-76 {
  height: 76px;
}

.radius-76 {
  border-radius: 76px;
}

.fs-76 {
  font-size: 76px;
}

.padding-77 {
  padding: 77px;
}

.p_top-77 {
  padding-top: 77px;
}

.p_bottom-77 {
  padding-bottom: 77px;
}

.margin-77 {
  margin: 77px;
}

.m_top-77 {
  margin-top: 77px;
}

.m_bottom-77 {
  margin-bottom: 77px;
}

.w-77 {
  width: 77px;
}

.h-77 {
  height: 77px;
}

.radius-77 {
  border-radius: 77px;
}

.fs-77 {
  font-size: 77px;
}

.padding-78 {
  padding: 78px;
}

.p_top-78 {
  padding-top: 78px;
}

.p_bottom-78 {
  padding-bottom: 78px;
}

.margin-78 {
  margin: 78px;
}

.m_top-78 {
  margin-top: 78px;
}

.m_bottom-78 {
  margin-bottom: 78px;
}

.w-78 {
  width: 78px;
}

.h-78 {
  height: 78px;
}

.radius-78 {
  border-radius: 78px;
}

.fs-78 {
  font-size: 78px;
}

.padding-79 {
  padding: 79px;
}

.p_top-79 {
  padding-top: 79px;
}

.p_bottom-79 {
  padding-bottom: 79px;
}

.margin-79 {
  margin: 79px;
}

.m_top-79 {
  margin-top: 79px;
}

.m_bottom-79 {
  margin-bottom: 79px;
}

.w-79 {
  width: 79px;
}

.h-79 {
  height: 79px;
}

.radius-79 {
  border-radius: 79px;
}

.fs-79 {
  font-size: 79px;
}

.padding-80 {
  padding: 80px;
}

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

.p_bottom-80 {
  padding-bottom: 80px;
}

.margin-80 {
  margin: 80px;
}

.m_top-80 {
  margin-top: 80px;
}

.m_bottom-80 {
  margin-bottom: 80px;
}

.w-80 {
  width: 80px;
}

.h-80 {
  height: 80px;
}

.radius-80 {
  border-radius: 80px;
}

.fs-80 {
  font-size: 80px;
}

.padding-81 {
  padding: 81px;
}

.p_top-81 {
  padding-top: 81px;
}

.p_bottom-81 {
  padding-bottom: 81px;
}

.margin-81 {
  margin: 81px;
}

.m_top-81 {
  margin-top: 81px;
}

.m_bottom-81 {
  margin-bottom: 81px;
}

.w-81 {
  width: 81px;
}

.h-81 {
  height: 81px;
}

.radius-81 {
  border-radius: 81px;
}

.fs-81 {
  font-size: 81px;
}

.padding-82 {
  padding: 82px;
}

.p_top-82 {
  padding-top: 82px;
}

.p_bottom-82 {
  padding-bottom: 82px;
}

.margin-82 {
  margin: 82px;
}

.m_top-82 {
  margin-top: 82px;
}

.m_bottom-82 {
  margin-bottom: 82px;
}

.w-82 {
  width: 82px;
}

.h-82 {
  height: 82px;
}

.radius-82 {
  border-radius: 82px;
}

.fs-82 {
  font-size: 82px;
}

.padding-83 {
  padding: 83px;
}

.p_top-83 {
  padding-top: 83px;
}

.p_bottom-83 {
  padding-bottom: 83px;
}

.margin-83 {
  margin: 83px;
}

.m_top-83 {
  margin-top: 83px;
}

.m_bottom-83 {
  margin-bottom: 83px;
}

.w-83 {
  width: 83px;
}

.h-83 {
  height: 83px;
}

.radius-83 {
  border-radius: 83px;
}

.fs-83 {
  font-size: 83px;
}

.padding-84 {
  padding: 84px;
}

.p_top-84 {
  padding-top: 84px;
}

.p_bottom-84 {
  padding-bottom: 84px;
}

.margin-84 {
  margin: 84px;
}

.m_top-84 {
  margin-top: 84px;
}

.m_bottom-84 {
  margin-bottom: 84px;
}

.w-84 {
  width: 84px;
}

.h-84 {
  height: 84px;
}

.radius-84 {
  border-radius: 84px;
}

.fs-84 {
  font-size: 84px;
}

.padding-85 {
  padding: 85px;
}

.p_top-85 {
  padding-top: 85px;
}

.p_bottom-85 {
  padding-bottom: 85px;
}

.margin-85 {
  margin: 85px;
}

.m_top-85 {
  margin-top: 85px;
}

.m_bottom-85 {
  margin-bottom: 85px;
}

.w-85 {
  width: 85px;
}

.h-85 {
  height: 85px;
}

.radius-85 {
  border-radius: 85px;
}

.fs-85 {
  font-size: 85px;
}

.padding-86 {
  padding: 86px;
}

.p_top-86 {
  padding-top: 86px;
}

.p_bottom-86 {
  padding-bottom: 86px;
}

.margin-86 {
  margin: 86px;
}

.m_top-86 {
  margin-top: 86px;
}

.m_bottom-86 {
  margin-bottom: 86px;
}

.w-86 {
  width: 86px;
}

.h-86 {
  height: 86px;
}

.radius-86 {
  border-radius: 86px;
}

.fs-86 {
  font-size: 86px;
}

.padding-87 {
  padding: 87px;
}

.p_top-87 {
  padding-top: 87px;
}

.p_bottom-87 {
  padding-bottom: 87px;
}

.margin-87 {
  margin: 87px;
}

.m_top-87 {
  margin-top: 87px;
}

.m_bottom-87 {
  margin-bottom: 87px;
}

.w-87 {
  width: 87px;
}

.h-87 {
  height: 87px;
}

.radius-87 {
  border-radius: 87px;
}

.fs-87 {
  font-size: 87px;
}

.padding-88 {
  padding: 88px;
}

.p_top-88 {
  padding-top: 88px;
}

.p_bottom-88 {
  padding-bottom: 88px;
}

.margin-88 {
  margin: 88px;
}

.m_top-88 {
  margin-top: 88px;
}

.m_bottom-88 {
  margin-bottom: 88px;
}

.w-88 {
  width: 88px;
}

.h-88 {
  height: 88px;
}

.radius-88 {
  border-radius: 88px;
}

.fs-88 {
  font-size: 88px;
}

.padding-89 {
  padding: 89px;
}

.p_top-89 {
  padding-top: 89px;
}

.p_bottom-89 {
  padding-bottom: 89px;
}

.margin-89 {
  margin: 89px;
}

.m_top-89 {
  margin-top: 89px;
}

.m_bottom-89 {
  margin-bottom: 89px;
}

.w-89 {
  width: 89px;
}

.h-89 {
  height: 89px;
}

.radius-89 {
  border-radius: 89px;
}

.fs-89 {
  font-size: 89px;
}

.padding-90 {
  padding: 90px;
}

.p_top-90 {
  padding-top: 90px;
}

.p_bottom-90 {
  padding-bottom: 90px;
}

.margin-90 {
  margin: 90px;
}

.m_top-90 {
  margin-top: 90px;
}

.m_bottom-90 {
  margin-bottom: 90px;
}

.w-90 {
  width: 90px;
}

.h-90 {
  height: 90px;
}

.radius-90 {
  border-radius: 90px;
}

.fs-90 {
  font-size: 90px;
}

.padding-91 {
  padding: 91px;
}

.p_top-91 {
  padding-top: 91px;
}

.p_bottom-91 {
  padding-bottom: 91px;
}

.margin-91 {
  margin: 91px;
}

.m_top-91 {
  margin-top: 91px;
}

.m_bottom-91 {
  margin-bottom: 91px;
}

.w-91 {
  width: 91px;
}

.h-91 {
  height: 91px;
}

.radius-91 {
  border-radius: 91px;
}

.fs-91 {
  font-size: 91px;
}

.padding-92 {
  padding: 92px;
}

.p_top-92 {
  padding-top: 92px;
}

.p_bottom-92 {
  padding-bottom: 92px;
}

.margin-92 {
  margin: 92px;
}

.m_top-92 {
  margin-top: 92px;
}

.m_bottom-92 {
  margin-bottom: 92px;
}

.w-92 {
  width: 92px;
}

.h-92 {
  height: 92px;
}

.radius-92 {
  border-radius: 92px;
}

.fs-92 {
  font-size: 92px;
}

.padding-93 {
  padding: 93px;
}

.p_top-93 {
  padding-top: 93px;
}

.p_bottom-93 {
  padding-bottom: 93px;
}

.margin-93 {
  margin: 93px;
}

.m_top-93 {
  margin-top: 93px;
}

.m_bottom-93 {
  margin-bottom: 93px;
}

.w-93 {
  width: 93px;
}

.h-93 {
  height: 93px;
}

.radius-93 {
  border-radius: 93px;
}

.fs-93 {
  font-size: 93px;
}

.padding-94 {
  padding: 94px;
}

.p_top-94 {
  padding-top: 94px;
}

.p_bottom-94 {
  padding-bottom: 94px;
}

.margin-94 {
  margin: 94px;
}

.m_top-94 {
  margin-top: 94px;
}

.m_bottom-94 {
  margin-bottom: 94px;
}

.w-94 {
  width: 94px;
}

.h-94 {
  height: 94px;
}

.radius-94 {
  border-radius: 94px;
}

.fs-94 {
  font-size: 94px;
}

.padding-95 {
  padding: 95px;
}

.p_top-95 {
  padding-top: 95px;
}

.p_bottom-95 {
  padding-bottom: 95px;
}

.margin-95 {
  margin: 95px;
}

.m_top-95 {
  margin-top: 95px;
}

.m_bottom-95 {
  margin-bottom: 95px;
}

.w-95 {
  width: 95px;
}

.h-95 {
  height: 95px;
}

.radius-95 {
  border-radius: 95px;
}

.fs-95 {
  font-size: 95px;
}

.padding-96 {
  padding: 96px;
}

.p_top-96 {
  padding-top: 96px;
}

.p_bottom-96 {
  padding-bottom: 96px;
}

.margin-96 {
  margin: 96px;
}

.m_top-96 {
  margin-top: 96px;
}

.m_bottom-96 {
  margin-bottom: 96px;
}

.w-96 {
  width: 96px;
}

.h-96 {
  height: 96px;
}

.radius-96 {
  border-radius: 96px;
}

.fs-96 {
  font-size: 96px;
}

.padding-97 {
  padding: 97px;
}

.p_top-97 {
  padding-top: 97px;
}

.p_bottom-97 {
  padding-bottom: 97px;
}

.margin-97 {
  margin: 97px;
}

.m_top-97 {
  margin-top: 97px;
}

.m_bottom-97 {
  margin-bottom: 97px;
}

.w-97 {
  width: 97px;
}

.h-97 {
  height: 97px;
}

.radius-97 {
  border-radius: 97px;
}

.fs-97 {
  font-size: 97px;
}

.padding-98 {
  padding: 98px;
}

.p_top-98 {
  padding-top: 98px;
}

.p_bottom-98 {
  padding-bottom: 98px;
}

.margin-98 {
  margin: 98px;
}

.m_top-98 {
  margin-top: 98px;
}

.m_bottom-98 {
  margin-bottom: 98px;
}

.w-98 {
  width: 98px;
}

.h-98 {
  height: 98px;
}

.radius-98 {
  border-radius: 98px;
}

.fs-98 {
  font-size: 98px;
}

.padding-99 {
  padding: 99px;
}

.p_top-99 {
  padding-top: 99px;
}

.p_bottom-99 {
  padding-bottom: 99px;
}

.margin-99 {
  margin: 99px;
}

.m_top-99 {
  margin-top: 99px;
}

.m_bottom-99 {
  margin-bottom: 99px;
}

.w-99 {
  width: 99px;
}

.h-99 {
  height: 99px;
}

.radius-99 {
  border-radius: 99px;
}

.fs-99 {
  font-size: 99px;
}

.padding-100 {
  padding: 100px;
}

.p_top-100 {
  padding-top: 100px;
}

.p_bottom-100 {
  padding-bottom: 100px;
}

.margin-100 {
  margin: 100px;
}

.m_top-100 {
  margin-top: 100px;
}

.m_bottom-100 {
  margin-bottom: 100px;
}

.w-100 {
  width: 100px;
}

.h-100 {
  height: 100px;
}

.radius-100 {
  border-radius: 100px;
}

.fs-100 {
  font-size: 100px;
}

/*=====================
    1.3 Variables CSS
==========================*/
/* Fonts */
:root {
  --theme-color: 214, 36, 34;
  --title-color: 47, 48, 50;
  --content-color: 157, 172, 177;
  --white: 255, 255, 255;
  --black: 0, 0, 0;
  --light-bg: 245, 245, 245;
  --dark-bg: 32, 32, 32;
  --border-color: 221, 221, 221;
  --success-color: 25, 135, 84;
  --error-color: 255, 76, 59;
  --secondary-color: 214, 36, 34;
  --rating-color: 214, 36, 34;
  --gradient: linear-gradient(90deg, #d62422 0%, rgba(32, 32, 32, 0.11) 100%);
}

/* Variants all follow same brand color */
.ecommerce,
.ecommerce.dark-mode,
.plant,
.plant.dark-mode,
.grocery,
.grocery.dark-mode,
.pet,
.pet.dark-mode,
.food,
.food.dark-mode,
.chatting,
.chatting.dark-mode,
.hotel-booking,
.hotel-booking.dark-mode,
.blog,
.blog.dark-mode,
.learning,
.learning.dark-mode,
.cab-booking,
.cab-booking.dark-mode,
.fitness,
.furniture,
.furniture.dark-mode,
.jewellery,
.jewellery.dark-mode,
.salon,
.salon.dark-mode,
.movie,
.landing,
.landing.dark-mode {
  --theme-color: 214, 36, 34;
  --secondary-color: 214, 36, 34;
  --rating-color: 214, 36, 34;
  --gradient: linear-gradient(90deg, #d62422 0%, rgba(32, 32, 32, 0.11) 100%);
}

/* Base Files */
/*=====================
   2.1 Reset CSS
==========================*/
* {
  margin: 0;
  padding: 0;
}

.custom-container,
.px-15 {
  padding: 0 15px;
}

.custom-container2,
.px-20 {
  padding: 0 20px;
}
@media (max-width: 600px) {
  .custom-container2,
  .px-20 {
    padding-inline: calc(15px + 5 * (100vw - 320px) / 280);
  }
}

section,
.section-t-space {
  padding-top: 25px;
}

.section-t-space-1 {
  padding-top: 20px;
}

.section-t-space-2 {
  padding-top: 30px;
}

.section-b-space {
  padding-bottom: 25px;
}

.section-lg-t-space {
  padding-top: 70px;
}

.section-lg-b-space {
  padding-bottom: 70px;
}

.section-lg-t-space-1 {
  padding-top: 30%;
}
@media (max-width: 547px) {
  .section-lg-t-space-1 {
    padding-top: 40%;
  }
}
@media (max-width: 385px) {
  .section-lg-t-space-1 {
    padding-top: 46%;
  }
}

.theme-color {
  color: rgba(var(--theme-color), 1) !important;
}

.title-color {
  color: rgba(var(--title-color), 1) !important;
}

.content-color {
  color: rgba(var(--content-color), 1) !important;
}

.theme-bg-color {
  background-color: rgba(var(--theme-color), 1) !important;
}

.light-bg-color {
  background-color: rgba(var(--light-bg), 1) !important;
}

.white-bg-color {
  background-color: rgba(var(--white), 1) !important;
}

.success-color {
  color: rgba(var(--success-color), 1) !important;
}

.error-color {
  color: rgba(var(--error-color), 1) !important;
}

.white-color {
  color: rgba(var(--white), 1) !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.food-panel-space {
  padding-top: 115px;
}

.mx-15 {
  margin-inline: 15px;
}

.white-nowrap {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.panel-space {
  padding-top: 105px !important;
}

.panel-space-sm {
  padding-top: 82px !important;
}

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

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

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

.form-control[type=number] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}
.form-control[type=number]::-webkit-inner-spin-button, .form-control[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

[dir=rtl] input[type=email],
[dir=rtl] input[type=number],
[dir=rtl] input[type=date] {
  text-align: end;
}

.custom-scrollbar::-webkit-scrollbar {
  scrollbar-width: none;
  scrollbar-color: #000000;
  width: 1px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: #ffffff;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: #000000;
  border-radius: 0px;
  border: 3px solid #ffffff;
}

[dir=rtl] .swiper {
  direction: ltr;
}
[dir=rtl] .swiper .swiper-slide > * {
  direction: rtl;
}

.radio-circle[type=checkbox] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 100%;
  border: 1px solid rgba(var(--content-color), 1);
  position: relative;
  transition: all 0.2s ease-in-out;
  flex-shrink: 0;
}
.radio-circle[type=checkbox]::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: rgba(var(--theme-color), 1);
  border-radius: 100%;
  content: "";
  transition: all 0.2s ease-in-out;
}
.radio-circle[type=checkbox]:checked {
  border-color: rgba(var(--theme-color), 1);
}
.radio-circle[type=checkbox]:checked::before {
  transform: translate(-50%, -50%) scale(1);
}

.coupon-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 14px 25px;
  color: rgba(var(--white), 1);
  background-color: rgba(var(--theme-color), 1);
  border-radius: 4px;
}
@media (max-width: 600px) {
  .coupon-box {
    padding: calc(12px + 2 * (100vw - 320px) / 280) calc(12px + 13 * (100vw - 320px) / 280);
  }
}
.coupon-box::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 100%;
  background-color: rgba(var(--white), 1);
}
.coupon-box::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 100%;
  background-color: rgba(var(--white), 1);
}
body.dark-mode .coupon-box::before, body.dark-mode .coupon-box::after {
  background-color: rgba(var(--body-color), 1);
}
.coupon-box h4 {
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 600px) {
  .coupon-box h4 {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.coupon-box h5 {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 600px) {
  .coupon-box h5 {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
  }
}
.coupon-box .code {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border: 1px dashed rgb(255, 255, 255);
  border-radius: 4px;
}
.coupon-box .cutting {
  position: absolute;
  top: 8px;
  right: 40px;
}
[dir=rtl] .coupon-box .cutting {
  right: unset;
  left: 40px;
}

.custom-scrollbar::-webkit-scrollbar {
  scrollbar-width: none;
  scrollbar-color: #000000;
  width: 0px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: #ffffff;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: #000000;
  border-radius: 0px;
  border: 3px solid #ffffff;
}

.back-icon {
  --Iconsax-Color: rgba(var(--dark-bg), 1);
  --Iconsax-Size: 22px;
}
body.dark-mode .back-icon {
  --Iconsax-Color: rgb(255, 255, 255);
}

/* ===============
Dark Mode CSS 
==================*/
.theme-toggle-button input[type=checkbox] {
  width: 45px;
  height: 24px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: flex;
  position: relative;
  background-color: rgba(var(--content-color), 0.09);
  transition: 0.5s;
  cursor: pointer;
  border-radius: 100px;
}
.theme-toggle-button input[type=checkbox]:checked {
  background-color: rgba(var(--theme-color), 1);
}
.theme-toggle-button input[type=checkbox]:checked::before {
  transform: translateX(165%) translateY(-4%);
  background-color: rgba(var(--white), 1);
}
.theme-toggle-button input[type=checkbox]:before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  top: 5px;
  left: 5px;
  border-radius: 100%;
  background-color: rgba(var(--content-color), 0.5);
  transition: 0.5s;
}

.theme-btn input:checked {
  background: var(--theme-color);
}

.recent-search-listing li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.recent-search-listing li + li {
  margin-top: 20px;
}
@media (max-width: 600px) {
  .recent-search-listing li + li {
    margin-top: calc(10px + 10 * (100vw - 320px) / 280);
  }
}
.recent-search-listing li a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
  text-transform: capitalize;
}
.recent-search-listing li .close-icon {
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 24px;
  transform: rotate(45deg);
  cursor: pointer;
}
.recent-search-listing li .time-icon {
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 24px;
}

/**=====================
     2.2 typography CSS
==========================**/
body {
  font-family: "Metropolis", sans-serif;
  position: relative;
  max-width: 600px;
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--white), 1);
  box-shadow: 0px 1px 3px 4px rgba(var(--dark-bg), 0.06);
}
body.lato-font {
  font-family: "Lato", serif;
}
body.nunito-font {
  font-family: "Nunito Sans", serif;
}
body.mulish-font {
  font-family: "Mulish", sans-serif;
}
body.roboto-font {
  font-family: "Roboto", sans-serif;
}
body.manrope-font {
  font-family: "Manrope", sans-serif;
}
body.mukta-font {
  font-family: "Mukta";
}
body.outfit-font {
  font-family: "Outfit", sans-serif;
}
body.poppins-font {
  font-family: "Poppins", sans-serif;
}
body.inter-font {
  font-family: "Inter", sans-serif;
}
body::-webkit-scrollbar {
  scrollbar-width: none;
  width: 0px;
}
body.chatting:has(ul.chatting-mobile-menu) .chatting-section .chatting-scroll {
  height: calc(100vh - 212px);
}
@media (max-width: 600px) {
  body.chatting:has(ul.chatting-mobile-menu) .chatting-section .chatting-scroll {
    height: calc(100vh - (204px + 8 * (100vw - 320px) / 280));
  }
}

a {
  color: rgba(var(--theme-color), 1);
  transition: 0.5s ease;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  transition: 0.5s ease;
}
a:focus {
  outline: none;
}

.form-control {
  background-color: rgba(var(--white), 1);
}
.form-control:focus {
  box-shadow: none;
  border-color: rgba(var(--theme-color), 1);
}

h1,
.h1 {
  font-size: 42px;
  margin-bottom: 0;
}

h2,
.h2 {
  font-size: 24px;
  margin-bottom: 0;
}

h3,
.h3 {
  font-size: 18px;
  margin-bottom: 0;
}

h4,
.h4 {
  font-size: 16px;
  margin-bottom: 0;
}

h5,
.h5 {
  font-size: 14px;
  margin-bottom: 0;
}

h6,
.h6 {
  font-size: 13px;
  margin-bottom: 0;
}

p,
.p {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 0;
}

a {
  text-decoration: none;
  line-height: 1;
}

ul {
  padding: 0;
  margin-bottom: 0;
}

li {
  list-style: none;
  display: inline-block;
  font-size: 14px;
}

/* Components Files */
/*=====================
  3.1   Auth CSS
=======================*/
/*<================== ecommerce auth =================>*/
.ecommerce-auth-title {
  position: relative;
  text-align: center;
  padding-top: 85px;
}
@media (max-width: 600px) {
  .ecommerce-auth-title {
    padding-top: calc(70px + 15 * (100vw - 320px) / 280);
  }
}
.ecommerce-auth-title h2 {
  margin-top: 16px;
  font-size: 24px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .ecommerce-auth-title h2 {
    font-size: calc(20px + 4 * (100vw - 320px) / 280);
  }
}
.ecommerce-auth-title h3 {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 400;
  padding-inline: 70px;
  width: 100%;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .ecommerce-auth-title h3 {
    font-size: calc(16px + 2 * (100vw - 320px) / 280);
    padding-inline: calc(40px + 30 * (100vw - 320px) / 280);
  }
}
.ecommerce-auth-title p {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.ecommerce-auth-title .lemon-img {
  position: absolute;
  right: 50px;
  top: 50px;
}
.ecommerce-auth-title .apple-img {
  position: absolute;
  left: 30px;
  bottom: -45px;
}
.ecommerce-auth-title .leaf-img {
  position: absolute;
  right: 30px;
  bottom: -50px;
  animation: vector 1s infinite alternate;
}
.ecommerce-auth-title .grocery-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.ecommerce-auth-title .grocery-logo h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}

/*<================== plant auth =================>*/
.plant-auth-title {
  margin-top: 30px;
}
.plant-auth-title h2 {
  font-size: 22px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
.plant-auth-title h3 {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}

/*<================== grocery auth =================>*/
.back-link {
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
.back-link .back-icon {
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 20px;
}

/*<================== pet auth =================>*/
.pet-auth-title {
  position: relative;
  text-align: center;
  padding-top: 42px;
}
.pet-auth-title h2 {
  font-size: 24px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .pet-auth-title h2 {
    font-size: calc(20px + 4 * (100vw - 320px) / 280);
  }
}
.pet-auth-title h3 {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 400;
  padding-inline: 70px;
  width: 100%;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .pet-auth-title h3 {
    font-size: calc(16px + 2 * (100vw - 320px) / 280);
    padding-inline: calc(40px + 30 * (100vw - 320px) / 280);
  }
}
.pet-auth-title p {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}

.google-pet-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.google-pet-buttons a {
  font-weight: 500;
  font-size: 14px;
  color: rgba(var(--title-color), 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 14px;
}
.google-pet-buttons a .icon {
  width: 20px;
}
.google-pet-buttons a:hover {
  color: rgba(var(--title-color), 1) !important;
  background-color: rgba(var(--light-bg), 1) !important;
}

/*<================== Food auth =================>*/
.food-auth-title {
  margin-top: 10px;
}
.food-auth-title h2 {
  font-weight: 600;
  color: rgba(var(--dark-bg), 1);
}
@media (max-width: 600px) {
  .food-auth-title h2 {
    font-size: calc(22px + 2 * (100vw - 320px) / 280);
  }
}
.food-auth-title p {
  line-height: 1.5;
  font-size: 18px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .food-auth-title p {
    font-size: calc(15px + 3 * (100vw - 320px) / 280);
  }
}

.food-form label {
  color: rgba(var(--dark-bg), 1);
  font-size: 16px;
  font-weight: 600;
}
.food-form input {
  background-color: transparent;
  width: 100%;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
  padding-right: 10px;
}
[dir=rtl] .food-form input {
  padding-left: 10px;
}
.food-form input:focus-visible {
  outline: none;
}
.food-form .food-dropdown {
  display: flex;
  align-items: center;
  margin-top: 10px;
  background-color: rgba(var(--bg-color), 1);
  border-radius: 6px;
}
.food-form .food-dropdown a {
  display: flex;
}
.food-form .food-dropdown a img {
  margin-right: 5px;
}
.food-form .food-dropdown a .icon {
  --Iconsax-Color: rgba(var(--dark-bg), 1);
  --Iconsax-Size: 20px;
}

.food-social-icon {
  display: flex;
  justify-content: center;
  gap: 35px;
  padding-block: 20px;
}
@media (max-width: 600px) {
  .food-social-icon {
    gap: calc(20px + 15 * (100vw - 320px) / 280);
    padding-block: calc(12px + 8 * (100vw - 320px) / 280);
  }
}
.food-social-icon li {
  background-color: rgba(var(--bg-color), 1);
  border-radius: 14px;
}
body.dark-mode .food-social-icon li:nth-child(1) img {
  filter: invert(1);
}
.food-social-icon li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(50px + 4 * (100vw - 320px) / 280);
  height: calc(50px + 4 * (100vw - 320px) / 280);
  padding: 14px;
}
.food-social-icon li a img {
  width: 28px;
  height: 28px;
}

/*================== Food OTP auth  ====================*/
.starting-heading {
  text-align: center;
}
.starting-heading p {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .starting-heading p {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
    margin-bottom: calc(6px + 4 * (100vw - 320px) / 280);
  }
}
.starting-heading h4 {
  color: rgba(var(--dark-bg), 1);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 25px;
}

.otp-request {
  text-align: center;
  padding-block: 40px 60px;
}
@media (max-width: 600px) {
  .otp-request {
    padding-block: calc(25px + 35 * (100vw - 320px) / 280);
  }
}
.otp-request p {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
.otp-request p button {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--dark-bg), 1);
  transition: all 0.3s ease-in-out;
  padding: 0;
  border: none;
  background-color: transparent;
}
.otp-request p button:hover {
  color: rgba(var(--theme-color), 1);
}

/*<================== Chatting authentication =================>*/
.chatting-authentication-section {
  width: 100%;
  max-width: 600px;
  background: var(--theme-color);
  min-height: 100vh;
  z-index: 0;
  position: fixed;
  top: 0;
}
.chatting-authentication-section .chatting-circle {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  padding-top: 30px;
  overflow: hidden;
}
.chatting-authentication-section .chatting-circle .circle-1 {
  width: 600px;
  height: 600px;
  border-radius: 1000px 1000px 0 0;
  border: 1px solid rgba(var(--white), 0.2);
  border-bottom: 0;
  transition: all 0.4s ease-in-out;
  position: absolute;
  top: 30px;
}
.chatting-authentication-section .chatting-circle .circle-2 {
  position: absolute;
  top: 70px;
  width: 498px;
  height: 372px;
  border-radius: 1000px 1000px 0 0;
  border: 1px solid rgba(var(--white), 0.2);
  border-bottom: 0;
  transition: all 0.4s ease-in-out;
}
.chatting-authentication-section .chatting-circle .circle-3 {
  width: 398px;
  height: 371px;
  border-radius: 1000px 1000px 0 0;
  border: 1px solid rgba(var(--white), 0.2);
  border-bottom: 0;
  transition: all 0.4s ease-in-out;
  position: absolute;
  top: 113px;
}
.chatting-authentication-section .chatting-circle .circle-4 {
  width: 339px;
  height: 172px;
  top: 153px;
  border-radius: 1000px 1000px 0 0;
  border: 1px solid rgba(var(--white), 0.2);
  border-bottom: 0;
  position: absolute;
  transition: all 0.4s ease-in-out;
}
.chatting-authentication-section .chatting-top-box {
  position: relative;
}
.chatting-authentication-section .chatting-top-box .chatting-top-profile {
  display: flex;
  position: relative;
  z-index: 1;
}
.chatting-authentication-section .chatting-top-box .chatting-top-profile .person-image1 {
  width: 70px;
  height: 70px;
  outline: 2px solid rgba(var(--white), 0.2);
  outline-offset: 4px;
  border-radius: 100px;
  margin-top: 50px;
  margin-inline: auto 46px;
}
@media (max-width: 600px) {
  .chatting-authentication-section .chatting-top-box .chatting-top-profile .person-image1 {
    width: calc(60px + 10 * (100vw - 320px) / 280);
    height: calc(60px + 11 * (100vw - 320px) / 280);
    margin-inline: auto calc(10px + 34 * (100vw - 320px) / 280);
  }
}
.chatting-authentication-section .chatting-top-box .chatting-top-profile .person-image3 {
  width: 58px;
  height: 58px;
  outline: 2px solid rgba(var(--white), 0.2);
  outline-offset: 4px;
  border-radius: 100px;
  margin-top: 50px;
  margin-inline: auto 44px;
}
@media (max-width: 600px) {
  .chatting-authentication-section .chatting-top-box .chatting-top-profile .person-image3 {
    width: calc(50px + 8 * (100vw - 320px) / 280);
    height: calc(50px + 8 * (100vw - 320px) / 280);
    margin-inline: auto calc(40px + 4 * (100vw - 320px) / 280);
  }
}
.chatting-authentication-section .chatting-top-box .chatting-top-profile .left-chat-box {
  position: absolute;
  right: 100px;
  top: 32px;
  animation: bonus 1.2s ease-in-out infinite alternate;
}
@media (max-width: 600px) {
  .chatting-authentication-section .chatting-top-box .chatting-top-profile .left-chat-box {
    right: calc(50px + 50 * (100vw - 320px) / 280);
    top: calc(8px + 24 * (100vw - 320px) / 280);
  }
}
.chatting-authentication-section .chatting-top-box .chatting-top-profile .top-whatsapp-icon {
  position: absolute;
  top: 30px;
  right: 18px;
  animation: bonus 2s ease-in-out infinite alternate;
}
@media (max-width: 600px) {
  .chatting-authentication-section .chatting-top-box .chatting-top-profile .top-whatsapp-icon {
    right: calc(8px + 10 * (100vw - 320px) / 280);
  }
}
.chatting-authentication-section .chatting-top-box div {
  position: relative;
  z-index: 1;
}
.chatting-authentication-section .chatting-top-box div .person-image2 {
  width: 58px;
  height: 58px;
  outline: 2px solid rgba(var(--white), 0.2);
  outline-offset: 4px;
  border-radius: 100px;
  margin-left: 75px;
  margin-top: -20px;
}
@media (max-width: 600px) {
  .chatting-authentication-section .chatting-top-box div .person-image2 {
    width: calc(50px + 8 * (100vw - 320px) / 280);
    height: calc(50px + 8 * (100vw - 320px) / 280);
    margin-left: calc(20px + 55 * (100vw - 320px) / 280);
  }
}
.chatting-authentication-section .chatting-top-box div .person-image4 {
  width: 70px;
  height: 70px;
  outline: 2px solid rgba(var(--white), 0.2);
  outline-offset: 4px;
  border-radius: 100px;
  margin-left: 67px;
  margin-top: -20px;
}
@media (max-width: 600px) {
  .chatting-authentication-section .chatting-top-box div .person-image4 {
    width: calc(60px + 10 * (100vw - 320px) / 280);
    height: calc(60px + 11 * (100vw - 320px) / 280);
    margin-left: calc(20px + 47 * (100vw - 320px) / 280);
  }
}
.chatting-authentication-section .chatting-top-box div .top-chat-box {
  margin-top: -60px;
  margin-left: -22px;
  animation: bonus 2s ease-in-out infinite alternate;
}
.chatting-authentication-section .chatting-top-box .login-details-box {
  z-index: 1;
  position: fixed;
  width: 100%;
  background-color: rgba(var(--white), 1);
  border-radius: 30px 30px 0 0;
  bottom: 0;
  max-width: 600px;
  left: 50%;
  transform: translate(-50%);
  padding-inline: 20px;
  height: calc(100vh - 190px);
  padding-bottom: 20px;
  overflow: auto;
  scrollbar-width: none;
}
.chatting-authentication-section .chatting-top-box .login-details-box ::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}
body.dark-mode .chatting-authentication-section .chatting-top-box .login-details-box {
  background-color: rgba(var(--body-color), 1);
}
body.dark-mode .chatting-authentication-section .chatting-top-box .login-details-box .division2 span {
  background-color: rgba(var(--body-color), 1);
}
.chatting-authentication-section .chatting-top-box .login-details-box .login-welcome-content {
  padding-top: 28px;
}
.chatting-authentication-section .chatting-top-box .login-details-box .login-welcome-content h2 {
  color: rgba(var(--title-color), 1);
  font-size: 22px;
  font-weight: 700;
}
@media (max-width: 600px) {
  .chatting-authentication-section .chatting-top-box .login-details-box .login-welcome-content h2 {
    font-size: calc(20px + 2 * (100vw - 320px) / 280);
  }
}
.chatting-authentication-section .chatting-top-box .login-details-box .login-welcome-content p {
  color: rgba(var(--content-color), 1);
  font-size: 16px;
  font-weight: 400;
  margin-top: 3px;
}
@media (max-width: 600px) {
  .chatting-authentication-section .chatting-top-box .login-details-box .login-welcome-content p {
    font-size: calc(14px + -4 * (100vw - 320px) / 280);
  }
}
.chatting-authentication-section .chatting-top-box .login-details-box .text-signup {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .chatting-authentication-section .chatting-top-box .login-details-box .text-signup {
    font-size: calc(15px + 1 * (100vw - 320px) / 280);
  }
}
.chatting-authentication-section .chatting-top-box .login-details-box .text-signup a {
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.chatting-authentication-section .chatting-top-box .login-details-box .division2 {
  position: relative;
  text-align: center;
  margin-top: 23px;
}
@media (max-width: 600px) {
  .chatting-authentication-section .chatting-top-box .login-details-box .division2 {
    margin-top: calc(10px + 13 * (100vw - 320px) / 280);
  }
}
.chatting-authentication-section .chatting-top-box .login-details-box .division2 span {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  background-color: rgba(var(--white), 1);
  color: rgba(var(--content-color), 1);
  padding: 0 10px;
}
.chatting-authentication-section .chatting-top-box .login-details-box .division2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  background: linear-gradient(270deg, rgba(155, 166, 184, 0) -2.05%, rgb(155, 166, 184) 50.93%, rgba(155, 166, 184, 0) 101.74%);
  z-index: -1;
  height: 2px;
}
.chatting-authentication-section .chatting-top-box .sign-box {
  height: 100%;
  max-height: calc(100vh - 187px);
}

/* ============== Blog auth page =============*/
.blog-auth-form .form-group {
  position: relative;
  margin-top: 38px;
}
@media (max-width: 600px) {
  .blog-auth-form .form-group {
    margin-top: calc(15px + 23 * (100vw - 320px) / 280);
  }
}
.blog-auth-form .form-group + .form-group {
  margin-top: 20px;
}
@media (max-width: 600px) {
  .blog-auth-form .form-group + .form-group {
    margin-top: calc(15px + 5 * (100vw - 320px) / 280);
  }
}
.blog-auth-form .form-group .form-check-label {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .blog-auth-form .form-group .form-check-label {
    font-size: calc(15px + 1 * (100vw - 320px) / 280);
  }
}
.blog-auth-form .form-group .form-control {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 16px;
  background-color: rgba(var(--content-color), 0.08);
  color: rgba(var(--title-color), 1);
  border: none;
  border-radius: 8px;
  -webkit-text-security: none;
  margin-top: 6px;
}
body.dark-mode .blog-auth-form .form-group .form-control {
  background-color: rgba(var(--white), 1);
}
@media (max-width: 600px) {
  .blog-auth-form .form-group .form-control {
    margin-top: calc(2px + 4 * (100vw - 320px) / 280);
  }
}
.blog-auth-form .form-group .form-control::-moz-placeholder {
  color: rgba(var(--content-color), 1);
  font-weight: 400;
}
.blog-auth-form .form-group .form-control::placeholder {
  color: rgba(var(--content-color), 1);
  font-weight: 400;
}
@media (max-width: 600px) {
  .blog-auth-form .form-group .form-control {
    padding: calc(12px + 4 * (100vw - 320px) / 280);
  }
}
.blog-auth-form .form-group .form-control.search {
  padding-block: 12px;
  padding-inline: 40px;
  font-size: 14px;
  font-weight: 400;
  background-color: rgba(var(--content-color), 0.05);
  z-index: 0;
  margin-top: 0;
}
@media (max-width: 600px) {
  .blog-auth-form .form-group .form-control.search {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.blog-auth-form .form-group .form-control.comments {
  padding-block: 12px;
  padding-inline: 17px 12px;
  font-size: 14px;
  font-weight: 400;
  background-color: rgba(var(--content-color), 0.05);
  z-index: 0;
  margin-top: 0;
}
@media (max-width: 600px) {
  .blog-auth-form .form-group .form-control.comments {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.blog-auth-form .form-group .form-control.textarea-form-control {
  border-radius: 8px !important;
}
.blog-auth-form .form-group .form-control::-moz-placeholder {
  color: rgba(var(--content-color), 1);
  font-weight: 400 !important;
}
.blog-auth-form .form-group .form-control::placeholder {
  color: rgba(var(--content-color), 1);
  font-weight: 400 !important;
}
.blog-auth-form .form-group .search-icon {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 20px;
  z-index: 2;
  background-color: transparent;
}
[dir=rtl] .blog-auth-form .form-group .search-icon {
  left: unset;
  right: 10px;
}
.blog-auth-form .form-group .mic-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  --Iconsax-Color: rgba(var(--theme-color), 1);
  --Iconsax-Size: 24px;
}
[dir=rtl] .blog-auth-form .form-group .mic-icon {
  right: unset;
  left: 10px;
}
.blog-auth-form .form-group .send-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 19px;
}
[dir=rtl] .blog-auth-form .form-group .send-icon {
  right: unset;
  left: 10px;
}
.blog-auth-form .form-group .reset {
  float: right;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--theme-color), 1);
}
.blog-auth-form .blog-from {
  margin-top: 15px;
}

.account-section {
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
  text-align: center;
  color: rgba(var(--content-color), 1);
}
.account-section h4 a {
  color: rgba(var(--theme-color), 1);
}
.account-section h6 {
  position: relative;
  margin-top: 25px;
}
.account-section h6::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 23px;
  background-color: rgba(var(--theme-color), 1);
}
.account-section h5 {
  text-align: center;
  margin-top: 117px;
  color: rgba(var(--content-color), 1);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .account-section h5 {
    margin-top: calc(85px + 32 * (100vw - 320px) / 280);
  }
}
.account-section ul {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 600px) {
  .account-section ul {
    gap: calc(12px + 8 * (100vw - 320px) / 280);
  }
}
body.dark-mode .account-section ul li:nth-child(3) img {
  filter: brightness(0) invert(1);
}
.account-section ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 100px;
  background-color: rgba(var(--content-color), 0.09);
}
@media (max-width: 600px) {
  .account-section ul li a {
    width: calc(55px + 9 * (100vw - 320px) / 280);
    height: calc(55px + 9 * (100vw - 320px) / 280);
  }
}

/* =========== learning auth CSS ===========*/
.learning-login-section {
  background-color: rgba(var(--white), 1);
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 21px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: -1px 1px 0px 1px rgba(var(--black), 0.08);
  position: relative;
}
.learning-login-section .login-header-img {
  display: flex;
  justify-content: end;
  padding-bottom: 20px;
}
.learning-login-section .login-header-img .image1 {
  position: absolute;
  top: 30px;
  right: 12px;
}
.learning-login-section .login-header-img .image2 {
  margin-top: -32px;
  margin-right: -12px;
}

.learning-auth-form {
  margin-top: 30px;
}
@media (max-width: 600px) {
  .learning-auth-form {
    margin-top: calc(15px + 15 * (100vw - 320px) / 280);
  }
}
.learning-auth-form .form-group {
  margin-top: 0;
}
.learning-auth-form .form-group .learn-select {
  background-color: rgba(var(--content-color), 0.1);
  width: auto;
  box-shadow: 2px 2px 0 0 rgba(var(--title-color), 1);
}
body.dark-mode .learning-auth-form .form-group .learn-select {
  box-shadow: 2px 2px 0 0 rgb(0, 0, 0);
}
.learning-auth-form .form-group + .form-group {
  margin-top: 20px;
}
@media (max-width: 600px) {
  .learning-auth-form .form-group + .form-group {
    margin-top: calc(15px + 5 * (100vw - 320px) / 280);
  }
}
.learning-auth-form .form-group .reset {
  float: right;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--secondary-color), 1);
}
.learning-auth-form .form-group .form-control {
  position: relative;
  padding: 15px 35px 15px 45px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--content-color), 0.1);
  border-radius: 8px;
  border: none;
  box-shadow: 2px 2px 0 0 rgba(var(--title-color), 1);
}
[dir=rtl] .learning-auth-form .form-group .form-control {
  text-align: right;
}
body.dark-mode .learning-auth-form .form-group .form-control {
  box-shadow: 2px 2px 0 0 rgb(0, 0, 0);
}
.learning-auth-form .form-group .form-control:focus {
  border: none;
  color: rgba(var(--title-color), 1);
}
.learning-auth-form .form-group .form-control::-moz-placeholder {
  color: rgba(var(--title-color), 1);
}
.learning-auth-form .form-group .form-control::placeholder {
  color: rgba(var(--title-color), 1);
}
.learning-auth-form .form-group .form-control.number-control {
  padding-left: 20px;
}
.learning-auth-form .form-group .form-control.search {
  padding-block: 15px;
  padding-right: 50px;
  font-size: 14px;
  font-weight: 400;
  background-color: rgba(var(--content-color), 0.05);
}
.learning-auth-form .form-group .icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
}
[dir=rtl] .learning-auth-form .form-group .icon {
  right: 15px;
  left: unset;
}
.learning-auth-form .flex-spacing {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.learning-auth-form .flex-spacing .custom-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
  cursor: pointer;
  margin-top: 5px;
}
.learning-auth-form .flex-spacing .custom-checkbox input {
  display: none;
}
.learning-auth-form .flex-spacing .custom-checkbox .checkmark {
  width: 20px;
  height: 20px;
  margin: 0;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  border: 1px solid rgba(var(--theme-color), 0.3);
  transition: background-color 0.3s, border-color 0.3s;
}
.learning-auth-form .flex-spacing .custom-checkbox input:checked + .checkmark {
  background-color: rgba(var(--theme-color), 1);
  border-color: rgba(var(--theme-color), 1);
}
.learning-auth-form .flex-spacing .custom-checkbox input:checked + .checkmark::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 12px;
  top: 1px;
  left: 6px;
  border: solid rgba(var(--white), 1);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
body.dark-mode .learning-auth-form .flex-spacing .custom-checkbox input:checked + .checkmark::after {
  border-color: rgba(var(--title-color), 1);
}
.learning-auth-form .flex-spacing a {
  color: rgba(var(--theme-color), 1);
  font-size: 13px;
  font-weight: 500;
}
.learning-auth-form .search-icon {
  position: absolute;
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
  background-color: transparent;
}
[dir=rtl] .learning-auth-form .search-icon {
  left: unset;
  right: 10px;
}
.learning-auth-form .filter-btn {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  padding-left: 10px;
  border-left: 1px solid rgb(210, 210, 210);
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
  border-radius: 0;
  background-color: transparent;
}
[dir=rtl] .learning-auth-form .filter-btn {
  right: unset;
  left: 10px;
  border-left: unset;
  border-right: 1px solid rgb(210, 210, 210);
  padding-left: unset;
  padding-right: 5px;
}

.login-social-list {
  padding-top: 15px;
}
@media (max-width: 420px) {
  .login-social-list {
    padding-top: 0;
  }
}
.login-social-list .division2 {
  position: relative;
  text-align: center;
}
.login-social-list .division2 span {
  font-size: 14px;
  font-weight: 400;
  background-color: rgb(243, 243, 243);
  color: rgba(var(--content-color), 1);
  padding: 0 6px;
}
body.dark-mode .login-social-list .division2 span {
  background-color: rgba(var(--body-color), 1);
}
.login-social-list .division2::after {
  content: "";
  position: absolute;
  width: 32%;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(var(--content-color), 1);
  z-index: -1;
}
.login-social-list .auth-social-links {
  padding-top: 43px;
  display: grid;
  flex-wrap: wrap;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
  justify-content: center;
}
@media (max-width: 500px) {
  .login-social-list .auth-social-links {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .login-social-list .auth-social-links {
    padding-top: calc(25px + 18 * (100vw - 320px) / 280);
    gap: calc(8px + 5 * (100vw - 320px) / 280);
  }
}
body.dark-mode .login-social-list .auth-social-links li:nth-child(1) img, body.dark-mode .login-social-list .auth-social-links li:nth-child(3) img {
  filter: invert(1);
}
.login-social-list .auth-social-links li a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--white), 1);
  border-radius: 5px;
  box-shadow: 0px 0px 3px 0px rgba(var(--black), 0.1);
  padding: 12px;
  gap: 6px;
}
@media (max-width: 600px) {
  .login-social-list .auth-social-links li a {
    padding-block: calc(12px + -2 * (100vw - 320px) / 280);
  }
}
.login-social-list .auth-social-links li a img {
  width: 25px;
  height: 25px;
}

/* ======== cab booking auth section ==============*/
.cab-auth-form {
  margin-top: 28px;
}
@media (max-width: 600px) {
  .cab-auth-form {
    margin-top: calc(12px + 16 * (100vw - 320px) / 280);
  }
}
.cab-auth-form .form-group {
  margin-top: 0;
}
.cab-auth-form .form-group + .form-group {
  margin-top: 17px;
}
.cab-auth-form .form-group .form-check-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .cab-auth-form .form-group .form-check-label {
    font-size: calc(15px + 1 * (100vw - 320px) / 280);
  }
}
.cab-auth-form .form-group .form-select {
  color: rgba(var(--title-color), 1);
  max-width: 70px;
  padding: 16px 12px;
  border-radius: 4px !important;
  background-color: rgba(var(--content-color), 0.1);
  margin-top: 8px;
}
.dark-mode .cab-auth-form .form-group .form-select {
  background-color: rgba(var(--bg-color), 1);
}
.cab-auth-form .form-group .select {
  max-width: 100%;
}
.cab-auth-form .form-group .form-control {
  position: relative;
  padding: 17px 15px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--content-color), 0.1);
  border-radius: 4px;
  border: none;
  margin-top: 8px;
}
[dir=rtl] .cab-auth-form .form-group .form-control {
  text-align: right;
}
body.dark-mode .cab-auth-form .form-group .form-control {
  background-color: rgba(var(--bg-color), 1);
}
.cab-auth-form .form-group .form-control:focus {
  border: none;
}
.cab-auth-form .form-group .form-control::-moz-placeholder {
  color: rgba(var(--content-color), 1);
}
.cab-auth-form .form-group .form-control::placeholder {
  color: rgba(var(--content-color), 1);
}
.cab-auth-form .form-group .form-control.search {
  padding-block: 12px;
  padding-inline: 45px 58px;
  font-size: 14px;
  font-weight: 400;
  background-color: rgba(var(--white), 1);
  border-radius: 23px;
  margin: 0;
}
.cab-auth-form .form-group .form-control.cab-search {
  border-radius: 8px;
  padding-block: 12px;
  padding-inline: 50px 10px;
  font-size: 14px;
  font-weight: 400;
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--content-color), 0.24);
}
[dir=rtl] .cab-auth-form .form-group .form-control.cab-search {
  text-align: end;
}
.cab-auth-form .form-group .form-control.rs-search {
  padding-right: 35px;
}
[dir=rtl] .cab-auth-form .form-group .form-control.rs-search {
  padding-inline: 35px;
}
.cab-auth-form .form-group .icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
}
[dir=rtl] .cab-auth-form .form-group .icon {
  right: 15px;
  left: unset;
}
.cab-auth-form .search-icon {
  position: absolute;
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 22px;
}
.cab-auth-form h6 {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: rgba(var(--title2-color), 1);
  font-size: 18px;
  font-weight: 400;
}
[dir=rtl] .cab-auth-form h6 {
  left: unset;
  right: 14px;
}
.cab-auth-form .edit {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  --Iconsax-Color: rgba(var(--content-color), 1);
}
[dir=rtl] .cab-auth-form .edit {
  right: unset;
  left: 10px;
}

.cab-auth-section .cab-auth-content {
  margin-top: 38px;
}
@media (max-width: 600px) {
  .cab-auth-section .cab-auth-content {
    margin-top: calc(25px + 13 * (100vw - 320px) / 280);
  }
}
.cab-auth-section .cab-auth-content h5 {
  margin-top: 26px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .cab-auth-section .cab-auth-content h5 {
    margin-top: calc(15px + 11 * (100vw - 320px) / 280);
  }
}
.cab-auth-section .cab-auth-content h5 a {
  color: rgba(var(--black), 1);
}
.cab-auth-section .cab-auth-content .division2 {
  position: relative;
  text-align: center;
  margin-top: 37px;
}
@media (max-width: 600px) {
  .cab-auth-section .cab-auth-content .division2 {
    margin-top: calc(15px + 22 * (100vw - 320px) / 280);
  }
}
.cab-auth-section .cab-auth-content .division2 span {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  background-color: rgba(var(--white), 1);
  color: rgba(var(--content-color), 1);
  padding: 0 8px;
}
.cab-auth-section .cab-auth-content .division2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background: linear-gradient(270deg, rgba(155, 166, 184, 0) -2.05%, rgb(155, 166, 184) 50.93%, rgba(155, 166, 184, 0) 101.74%);
  z-index: -1;
  height: 2px;
}
.cab-auth-section .cab-auth-content .cab-media-list {
  margin-top: 51px;
}
@media (max-width: 600px) {
  .cab-auth-section .cab-auth-content .cab-media-list {
    margin-top: calc(35px + 16 * (100vw - 320px) / 280);
  }
}
.cab-auth-section .cab-auth-content .cab-media-list li {
  width: 100%;
}
.cab-auth-section .cab-auth-content .cab-media-list li + li {
  margin-top: 12px;
}
body.dark-mode .cab-auth-section .cab-auth-content .cab-media-list li + li img {
  filter: invert(1);
}
.cab-auth-section .cab-auth-content .cab-media-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 16px;
  border-radius: 8px;
  background-color: rgba(var(--content-color), 0.1);
  gap: 10px;
}
body.dark-mode .cab-auth-section .cab-auth-content .cab-media-list li a {
  background-color: rgba(var(--dark-bg), 1);
}
.cab-auth-section .cab-auth-content .cab-media-list li a img {
  width: 22px;
  height: 22px;
}
.cab-auth-section .cab-auth-content .cab-media-list li a h4 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--black), 1);
}

/* ================ fitness auth CSS ==============*/
.fitness-auth-form {
  margin-top: 40px;
}
@media (max-width: 600px) {
  .fitness-auth-form {
    margin-top: calc(15px + 25 * (100vw - 320px) / 280);
  }
}
.fitness-auth-form .form-group {
  margin-top: 0;
}
.fitness-auth-form .form-group + .form-group {
  margin-top: 24px;
}
@media (max-width: 600px) {
  .fitness-auth-form .form-group + .form-group {
    margin-top: calc(12px + 12 * (100vw - 320px) / 280);
  }
}
.fitness-auth-form .form-group textarea {
  width: 100%;
  background-color: rgba(var(--bg-color), 1);
  border: 1.8px solid rgba(var(--content-color), 0.35);
  color: rgba(var(--title-color), 1);
  font-size: 14px;
  font-weight: 400;
  padding: 10px;
}
.fitness-auth-form .form-group textarea:focus {
  outline: none;
}
.fitness-auth-form .form-group .form-check-label {
  margin-bottom: 8px;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .fitness-auth-form .form-group .form-check-label {
    font-size: calc(14px + 4 * (100vw - 320px) / 280);
    margin-bottom: calc(4px + 4 * (100vw - 320px) / 280);
  }
}
.fitness-auth-form .form-group .form-control {
  position: relative;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--bg-color), 1);
  border-radius: 50px;
  border: 1.8px solid rgba(var(--content-color), 0.35);
}
@media (max-width: 600px) {
  .fitness-auth-form .form-group .form-control {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
    padding: calc(12px + 2 * (100vw - 320px) / 280) calc(15px + 5 * (100vw - 320px) / 280);
  }
}
[dir=rtl] .fitness-auth-form .form-group .form-control {
  text-align: right;
}
.fitness-auth-form .form-group .form-control:focus {
  border-color: rgba(var(--content-color), 0.35);
}
.fitness-auth-form .form-group .form-control::-moz-placeholder {
  color: rgba(var(--content-color), 1);
}
.fitness-auth-form .form-group .form-control::placeholder {
  color: rgba(var(--content-color), 1);
}
.fitness-auth-form .form-group .icon {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
}
[dir=rtl] .fitness-auth-form .form-group .icon {
  right: 10px;
  left: unset;
}
.fitness-auth-form .flex-spacing {
  display: flex;
  align-items: center;
  margin-top: 10px;
  justify-content: space-between;
}
.fitness-auth-form .flex-spacing .custom-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
  cursor: pointer;
  margin: 0;
}
.fitness-auth-form .flex-spacing .custom-checkbox input {
  display: none;
}
.fitness-auth-form .flex-spacing .custom-checkbox .checkmark {
  width: 20px;
  height: 20px;
  margin: 0;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  border: 1px solid rgba(var(--content-color), 0.3);
  transition: background-color 0.3s, border-color 0.3s;
  background-color: rgba(var(--bg-color), 1);
}
.fitness-auth-form .flex-spacing .custom-checkbox input:checked + .checkmark {
  background-color: rgba(var(--theme-color), 1);
  border-color: rgba(var(--theme-color), 1);
}
.fitness-auth-form .flex-spacing .custom-checkbox input:checked + .checkmark::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 12px;
  top: 1px;
  left: 6px;
  border: solid rgba(var(--white), 1);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
body.dark-mode .fitness-auth-form .flex-spacing .custom-checkbox input:checked + .checkmark::after {
  border-color: rgba(var(--title-color), 1);
}
.fitness-auth-form .flex-spacing a {
  color: rgba(var(--title-color), 1);
  font-size: 16px;
  font-weight: 400;
}

.fitness-auth-button-section {
  margin-top: 124px;
  text-align: center;
}
@media (max-width: 600px) {
  .fitness-auth-button-section {
    margin-top: calc(100px + 24 * (100vw - 320px) / 280);
  }
}
.fitness-auth-button-section h5 {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .fitness-auth-button-section h5 {
    margin-top: calc(20px + 4 * (100vw - 320px) / 280);
    font-size: calc(14px + 6 * (100vw - 320px) / 280);
  }
}
.fitness-auth-button-section h5 a {
  color: rgba(var(--theme-color), 1);
}
.fitness-auth-button-section .social-media-list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 27px;
}
.fitness-auth-button-section .social-media-list li {
  width: 100%;
}
.fitness-auth-button-section .social-media-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--bg-color), 1);
  border: 1px solid rgba(var(--content-color), 0.24);
  gap: 10px;
  padding-block: 12px;
  border-radius: 50px;
}
@media (max-width: 600px) {
  .fitness-auth-button-section .social-media-list li a {
    padding-block: calc(10px + 2 * (100vw - 320px) / 280);
  }
}
.fitness-auth-button-section .social-media-list li a img {
  width: 30px;
  height: 30px;
}
@media (max-width: 600px) {
  .fitness-auth-button-section .social-media-list li a img {
    width: calc(20px + 10 * (100vw - 320px) / 280);
    height: calc(20px + 10 * (100vw - 320px) / 280);
  }
}
.fitness-auth-button-section .social-media-list li a span {
  font-size: 18px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .fitness-auth-button-section .social-media-list li a span {
    font-size: calc(16px + 2 * (100vw - 320px) / 280);
  }
}

/* =================  furniture auth CSS ====================*/
.auth-furniture-header {
  position: relative;
}
.auth-furniture-header img {
  position: absolute;
  right: 0;
  top: 0;
}

.furniture-auth-header {
  margin-top: 218px;
}
@media (max-width: 600px) {
  .furniture-auth-header {
    margin-top: calc(120px + 98 * (100vw - 320px) / 280);
  }
}
.furniture-auth-header h4 {
  font-size: 22px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .furniture-auth-header h4 {
    font-size: calc(18px + 4 * (100vw - 320px) / 280);
  }
}
.furniture-auth-header h5 {
  margin-top: 2px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .furniture-auth-header h5 {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
  }
}

.furniture-auth-form {
  margin-top: 30px;
}
@media (max-width: 600px) {
  .furniture-auth-form {
    margin-top: calc(15px + 15 * (100vw - 320px) / 280);
  }
}
.furniture-auth-form .form-group {
  margin-top: 0;
}
.furniture-auth-form .form-group + .form-group {
  margin-top: 15px;
}
@media (max-width: 600px) {
  .furniture-auth-form .form-group + .form-group {
    margin-top: calc(12px + 18 * (100vw - 320px) / 280);
  }
}
.furniture-auth-form .form-group textarea {
  padding-inline: 12px !important;
}
.furniture-auth-form .form-group .form-check-label {
  margin-bottom: 6px;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .furniture-auth-form .form-group .form-check-label {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
    margin-bottom: calc(4px + 4 * (100vw - 320px) / 280);
  }
}
.furniture-auth-form .form-group .form-control {
  position: relative;
  padding: 14px 35px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--bg-color), 1);
  border-radius: 6px;
  border-left: 4px solid rgba(var(--theme-color), 1);
  border-right: none;
  border-block: none;
}
@media (max-width: 600px) {
  .furniture-auth-form .form-group .form-control {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
    padding-block: calc(12px + 2 * (100vw - 320px) / 280);
  }
}
.furniture-auth-form .form-group .form-control::-moz-placeholder {
  color: rgba(var(--content-color), 1);
}
.furniture-auth-form .form-group .form-control::placeholder {
  color: rgba(var(--content-color), 1);
}
[dir=rtl] .furniture-auth-form .form-group .form-control {
  text-align: right;
}
.furniture-auth-form .form-group .form-control.search {
  border: none;
  padding: 14px 12px 14px 40px;
}
[dir=rtl] .furniture-auth-form .form-group .form-control.search {
  padding-inline: 40px 12px;
}
.furniture-auth-form .form-group .form-control.search-control {
  max-width: calc(100% - 48px - 12px);
}
.furniture-auth-form .form-group .form-control:focus {
  border-color: rgba(var(--theme-color), 1);
}
.furniture-auth-form .form-group .form-control::-moz-placeholder {
  color: rgba(var(--content-color), 1);
}
.furniture-auth-form .form-group .form-control::placeholder {
  color: rgba(var(--content-color), 1);
}
.furniture-auth-form .form-group .search-icon {
  position: absolute;
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 20px;
}
[dir=rtl] .furniture-auth-form .form-group .search-icon {
  left: unset;
  right: 6px;
}
.furniture-auth-form .form-group .filter-btn {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
  background-color: rgba(var(--bg-color), 1);
  padding: 14px;
  border-radius: 6px;
}
[dir=rtl] .furniture-auth-form .form-group .filter-btn {
  right: unset;
  left: 0;
}
.furniture-auth-form .form-group .icon {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 20px;
  z-index: 1;
}
[dir=rtl] .furniture-auth-form .form-group .icon {
  right: 10px;
  left: unset;
}
.furniture-auth-form .flex-spacing {
  display: flex;
  align-items: center;
  margin-top: 16px;
  justify-content: space-between;
}
.furniture-auth-form .flex-spacing .custom-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  cursor: pointer;
  margin-top: 0;
}
.furniture-auth-form .flex-spacing .custom-checkbox input {
  display: none;
}
.furniture-auth-form .flex-spacing .custom-checkbox .checkmark {
  width: 20px;
  height: 20px;
  margin: 0;
  border-radius: 6px;
  display: inline-block;
  position: relative;
  background-color: rgba(var(--title-color), 0.1);
  transition: background-color 0.3s, border-color 0.3s;
  border: none;
}
.furniture-auth-form .flex-spacing .custom-checkbox input:checked + .checkmark {
  background-color: rgba(var(--theme-color), 1);
}
.furniture-auth-form .flex-spacing .custom-checkbox input:checked + .checkmark::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 12px;
  top: 2px;
  left: 7px;
  border: solid rgba(var(-- white), 1);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
body.dark-mode .furniture-auth-form .flex-spacing .custom-checkbox input:checked + .checkmark::after {
  border-color: rgba(var(--title-color), 1);
}
.furniture-auth-form .flex-spacing a {
  color: rgba(var(--error-color), 1);
  font-size: 13px;
  font-weight: 400;
}

.sign-link {
  padding-block: 30px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .sign-link {
    padding-block: calc(20px + 10 * (100vw - 320px) / 280);
  }
}
.sign-link a {
  color: rgba(var(--title-color), 1);
}

.furniture-media-wrapper .division2 {
  position: relative;
  text-align: center;
}
.furniture-media-wrapper .division2 span {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  background-color: rgba(var(--white), 1);
  color: rgba(var(--content-color), 1);
  padding: 0 10px;
}
.furniture-media-wrapper .division2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  background: linear-gradient(270deg, rgba(155, 166, 184, 0) -2.05%, rgb(155, 166, 184) 50.93%, rgba(155, 166, 184, 0) 101.74%);
  z-index: -1;
  height: 1px;
}
.furniture-media-wrapper .furniture-media-list {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.furniture-media-wrapper .furniture-media-list li {
  width: 100%;
}
body.dark-mode .furniture-media-wrapper .furniture-media-list li:nth-child(3) img {
  filter: brightness(0) invert(1);
}
.furniture-media-wrapper .furniture-media-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--title-color), 0.06);
  border-radius: 6px;
  padding-block: 15px;
}
.furniture-media-wrapper .furniture-media-list li a img {
  width: 34px;
  height: 34px;
}

/* =================  jewellery auth CSS ====================*/
.jewellery-auth-form {
  margin-top: 25px;
}
.jewellery-auth-form .form-group {
  margin-top: 0;
}
.jewellery-auth-form .form-group + .form-group {
  margin-top: 20px;
}
@media (max-width: 600px) {
  .jewellery-auth-form .form-group + .form-group {
    margin-top: calc(15px + 5 * (100vw - 320px) / 280);
  }
}
.jewellery-auth-form .form-group .reset {
  float: right;
  margin-top: 11px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  margin-bottom: 25px;
}
.jewellery-auth-form .form-group label {
  display: block;
  margin-bottom: 6px;
  color: rgba(var(--title-color), 1);
  font-size: 16px;
  font-weight: 400;
}
.jewellery-auth-form .form-group textarea {
  width: 100%;
  padding: 10px;
  background-color: rgba(var(--white), 1);
  border-radius: 10px;
  color: rgba(var(--title-color), 1);
  border: 1px solid rgba(var(--content-color), 0.23);
}
body.dark-mode .jewellery-auth-form .form-group textarea {
  background-color: rgba(var(--bg-color), 1);
}
.jewellery-auth-form .form-group textarea:focus {
  outline: none;
}
.jewellery-auth-form .form-group .form-control {
  position: relative;
  padding: 14px 45px 14px 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--white), 1);
  border-radius: 10px;
  border: 1px solid rgba(var(--content-color), 0.23);
}
[dir=rtl] .jewellery-auth-form .form-group .form-control {
  padding-right: 14px;
}
body.dark-mode .jewellery-auth-form .form-group .form-control {
  background-color: rgba(var(--bg-color), 1);
  border-color: rgba(77, 102, 255, 0.1);
}
@media (max-width: 600px) {
  .jewellery-auth-form .form-group .form-control {
    padding-block: calc(12px + 2 * (100vw - 320px) / 280);
    padding-left: calc(15px + 5 * (100vw - 320px) / 280);
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
[dir=rtl] .jewellery-auth-form .form-group .form-control {
  text-align: right;
}
.jewellery-auth-form .form-group .form-control:focus {
  border: 1px solid rgba(var(--content-color), 0.23);
}
.jewellery-auth-form .form-group .form-control::-moz-placeholder {
  color: rgba(var(--content-color), 1);
}
.jewellery-auth-form .form-group .form-control::placeholder {
  color: rgba(var(--content-color), 1);
}
.jewellery-auth-form .form-group .form-control.number-control {
  padding-left: 20px;
}
.jewellery-auth-form .form-group .form-control.search {
  padding-block: 14px;
  padding-inline: 48px 50px;
  font-size: 14px;
  font-weight: 400;
  background-color: rgba(var(--white), 1);
}
body.dark-mode .jewellery-auth-form .form-group .form-control.search {
  background-color: rgba(var(--body-color), 1);
}
@media (max-width: 600px) {
  .jewellery-auth-form .form-group .form-control.search {
    padding-block: calc(12px + 2 * (100vw - 320px) / 280);
  }
}
.jewellery-auth-form .form-group .icon {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 20px;
}
[dir=rtl] .jewellery-auth-form .form-group .icon {
  left: 16px;
  right: unset;
}
.jewellery-auth-form .search-i {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 20px;
}
[dir=rtl] .jewellery-auth-form .search-i {
  left: unset;
  right: 15px;
}
.jewellery-auth-form .filter-btn {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  padding-left: 15px;
  border-left: 1px solid rgba(var(--content-color), 0.6);
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
  border-radius: 0;
  background-color: transparent;
}
[dir=rtl] .jewellery-auth-form .filter-btn {
  right: unset;
  left: 15px;
  border-left: unset;
  border-right: 1px solid rgba(var(--content-color), 0.6);
  padding-left: unset;
  padding-right: 5px;
}

.gold-button h5 {
  text-align: center;
  margin-top: 22px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.gold-button .division2 {
  position: relative;
  text-align: center;
  margin-top: 26px;
}
.gold-button .division2 span {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  background-color: rgba(var(--white), 1);
  color: rgba(var(--content-color), 1);
  padding: 0 12px;
  z-index: 2;
}
body.dark-mode .gold-button .division2 span {
  background-color: rgba(var(--body-color), 1);
}
.gold-button .division2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  border: 1px dashed rgba(var(--content-color), 0.3);
}

.gold-social-list {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.gold-social-list li {
  width: 100%;
}
.gold-social-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--bg-color), 1);
  padding-block: 15px;
  border-radius: 14px;
  gap: 5px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .gold-social-list li a {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
    padding-block: calc(12px + 3 * (100vw - 320px) / 280);
  }
}
.gold-social-list li a img {
  width: 22px;
  height: 22px;
}

/* ================ salon auth CSS ==============*/
.salon-auth-form {
  margin-top: 40px;
}
@media (max-width: 600px) {
  .salon-auth-form {
    margin-top: calc(15px + 25 * (100vw - 320px) / 280);
  }
}
.salon-auth-form .form-group {
  margin-top: 0;
}
.salon-auth-form .form-group + .form-group {
  margin-top: 19px;
}
@media (max-width: 600px) {
  .salon-auth-form .form-group + .form-group {
    margin-top: calc(12px + 7 * (100vw - 320px) / 280);
  }
}
.salon-auth-form .form-group textarea {
  width: 100%;
  background-color: rgba(var(--bg-color), 1);
  border: 1.8px solid rgba(var(--content-color), 0.35);
  color: rgba(var(--content-color), 1);
  font-size: 14px;
  font-weight: 400;
  padding: 10px;
}
.salon-auth-form .form-group textarea:focus {
  outline: none;
}
.salon-auth-form .form-group .form-check-label {
  margin-bottom: 10px;
  padding: 0;
  font-size: 15px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .salon-auth-form .form-group .form-check-label {
    font-size: calc(14px + 4 * (100vw - 320px) / 280);
    margin-bottom: calc(4px + 4 * (100vw - 320px) / 280);
  }
}
.salon-auth-form .form-group .form-control {
  position: relative;
  padding: 15px 23px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  background-color: rgba(var(--white), 1);
  color: rgba(var(--content-color), 1);
  border-radius: 50px;
  border: 1px solid rgba(var(--content-color), 0.35);
}
@media (max-width: 600px) {
  .salon-auth-form .form-group .form-control {
    padding: calc(12px + 3 * (100vw - 320px) / 280) calc(15px + 8 * (100vw - 320px) / 280);
  }
}
[dir=rtl] .salon-auth-form .form-group .form-control {
  text-align: right;
}
.salon-auth-form .form-group .form-control:focus {
  border-color: rgba(var(--content-color), 0.35);
}
.salon-auth-form .form-group .form-control::-moz-placeholder {
  color: rgba(var(--content-color), 1);
}
.salon-auth-form .form-group .form-control::placeholder {
  color: rgba(var(--content-color), 1);
}
.salon-auth-form .form-group .form-control.search-control {
  border: 0;
  padding-left: 47px;
  border-radius: 6px;
  background-color: rgba(var(--bg-color), 1);
  max-width: 90%;
}
[dir=rtl] .salon-auth-form .form-group .form-control.search-control {
  padding-right: 47px;
  padding-left: 0;
}
@media (max-width: 600px) {
  .salon-auth-form .form-group .form-control.search-control {
    max-width: calc(82% + 8 * (100vw - 320px) / 1600);
  }
}
.salon-auth-form a {
  margin-top: 9px;
  color: rgba(var(--content-color), 1);
  font-size: 14px;
  font-weight: 400;
  float: right;
}
.salon-auth-form .search-icon {
  position: absolute;
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 20px;
  background-color: transparent;
}
[dir=rtl] .salon-auth-form .search-icon {
  left: unset;
  right: 6px;
}
.salon-auth-form .filter-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
  background-color: rgba(var(--bg-color), 1);
  padding: 14px;
  border-radius: 6px;
  margin: 0;
}
[dir=rtl] .salon-auth-form .filter-btn {
  left: 0;
  right: unset;
}
@media (max-width: 600px) {
  .salon-auth-form .filter-btn {
    padding: calc(11px + 3 * (100vw - 320px) / 280);
  }
}

.salon-auth-button-section {
  margin-top: 60px;
  text-align: center;
}
.salon-auth-button-section h5 {
  margin-top: 32px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .salon-auth-button-section h5 {
    margin-top: calc(15px + 17 * (100vw - 320px) / 280);
  }
}
.salon-auth-button-section h5 a {
  color: rgba(var(--theme-color), 1);
  text-decoration: underline;
}
.salon-auth-button-section .division2 {
  position: relative;
  text-align: center;
  margin-top: 27px;
}
@media (max-width: 600px) {
  .salon-auth-button-section .division2 {
    margin-top: calc(20px + 7 * (100vw - 320px) / 280);
  }
}
.salon-auth-button-section .division2 span {
  position: relative;
  font-size: 13px;
  font-weight: 400;
  background-color: rgba(var(--white), 1);
  color: rgba(var(--content-color), 1);
  padding: 0 10px;
}
.dark-mode .salon-auth-button-section .division2 span {
  background-color: rgba(var(--body-color), 1);
}
.salon-auth-button-section .division2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background-color: rgba(var(--content-color), 0.3);
  z-index: -1;
  height: 1px;
}
.salon-auth-button-section .media-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-top: 41px;
}
@media (max-width: 600px) {
  .salon-auth-button-section .media-list {
    margin-top: calc(20px + 21 * (100vw - 320px) / 280);
  }
}
.dark-mode .salon-auth-button-section .media-list li:nth-child(3) img {
  filter: brightness(0) invert(1);
}
.salon-auth-button-section .media-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--content-color), 0.24);
  border-radius: 100%;
}
@media (max-width: 600px) {
  .salon-auth-button-section .media-list li a {
    width: calc(50px + 14 * (100vw - 320px) / 280);
    height: calc(50px + 14 * (100vw - 320px) / 280);
  }
}
.salon-auth-button-section .media-list li a img {
  width: 30px;
  height: 30px;
}
@media (max-width: 600px) {
  .salon-auth-button-section .media-list li a img {
    width: calc(20px + 10 * (100vw - 320px) / 280);
    height: calc(20px + 10 * (100vw - 320px) / 280);
  }
}

/* ============ movie CSS ===============*/
.movie-auth-section .movie-social-media li {
  width: 100%;
}
.movie-auth-section .movie-social-media li + li {
  margin-top: 15px;
}
.movie-auth-section .movie-social-media li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-block: 14px;
  border-radius: 6px;
  background-color: rgba(var(--title-color), 0.06);
  backdrop-filter: blur(4px);
  font-size: 16px;
  font-weight: 300;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .movie-auth-section .movie-social-media li a {
    padding-block: calc(8px + 6 * (100vw - 320px) / 280);
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.movie-auth-section .division2 {
  position: relative;
  text-align: center;
  margin-top: 32px;
}
.movie-auth-section .division2 span {
  position: relative;
  font-size: 14px;
  font-weight: 300;
  background-color: #151320;
  color: rgba(var(--content-color), 1);
  padding: 0 10px;
}
.movie-auth-section .division2::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(270deg, rgba(155, 166, 184, 0) -2.05%, rgba(155, 166, 184, 0.34) 50.93%, rgba(155, 166, 184, 0) 101.74%);
  z-index: -1;
}
.movie-auth-section .movie-auth-btn {
  margin-top: 52px;
}
.movie-auth-section .movie-auth-btn h5 {
  text-align: center;
  margin-top: 99px;
  font-size: 14px;
  font-weight: 300;
  color: rgba(var(--content-color), 1);
}
.movie-auth-section .movie-auth-btn h5 a {
  font-weight: 500;
  color: rgba(var(--border), 1);
}

.movie-auth-form {
  margin-top: 32px;
}
@media (max-width: 600px) {
  .movie-auth-form {
    margin-top: calc(15px + 17 * (100vw - 320px) / 280);
  }
}
.movie-auth-form .form-group {
  margin-top: 0;
}
.movie-auth-form .form-group + .form-group {
  margin-top: 25px;
}
@media (max-width: 600px) {
  .movie-auth-form .form-group + .form-group {
    margin-top: calc(12px + 13 * (100vw - 320px) / 280);
  }
}
.movie-auth-form .form-group .form-check-label {
  margin-bottom: 8px;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .movie-auth-form .form-group .form-check-label {
    font-size: calc(15px + 1 * (100vw - 320px) / 280);
    margin-bottom: calc(4px + 4 * (100vw - 320px) / 280);
  }
}
.movie-auth-form .form-group .form-control {
  position: relative;
  padding: 15px 20px 15px 56px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--white), 0.06);
  border-radius: 6px;
  border: none;
}
[dir=rtl] .movie-auth-form .form-group .form-control {
  padding-inline: 56px 15px;
}
.movie-auth-form .form-group .form-control::-moz-placeholder {
  color: rgba(var(--content-color), 1);
}
.movie-auth-form .form-group .form-control::placeholder {
  color: rgba(var(--content-color), 1);
}
[dir=rtl] .movie-auth-form .form-group .form-control {
  text-align: right;
}
body.dark .movie-auth-form .form-group .form-control {
  background-color: rgba(var(--light-bg), 1) !important;
}
.movie-auth-form .form-group .form-control.search {
  padding: 13px 50px;
}
.movie-auth-form .form-group .form-control::-moz-placeholder {
  color: rgba(var(--content-color), 1);
}
.movie-auth-form .form-group .form-control::placeholder {
  color: rgba(var(--content-color), 1);
}
.movie-auth-form .form-group .icon {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 24px;
  border-right: 1px solid rgba(var(--content-color), 1);
  padding-right: 10px;
}
[dir=rtl] .movie-auth-form .form-group .icon {
  right: 12px;
  left: unset;
}
.movie-auth-form a {
  float: right;
  text-align: right;
  font-size: 14px;
  font-weight: 300;
  color: rgba(var(--content-color), 1);
  margin-top: 10px;
}
.movie-auth-form .search-icon {
  position: absolute;
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
  background-color: transparent;
}
[dir=rtl] .movie-auth-form .search-icon {
  left: unset;
  right: 10px;
}
.movie-auth-form .filter-btn {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  padding-left: 10px;
  border-left: 1px solid rgba(var(--content-color), 1);
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
  margin: 0;
}
[dir=rtl] .movie-auth-form .filter-btn {
  right: unset;
  left: 14px;
  border-left: unset;
  border-right: 1px solid rgba(var(--content-color), 1);
  padding-left: unset;
  padding-right: 5px;
}

/*=====================
    3.2 Button CSS
=======================*/
.btn {
  padding: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  border-radius: 6px;
  border: none;
}
body.dark-mode .btn {
  color: rgba(var(--title-color), 1) !important;
}
.btn:hover {
  color: rgba(var(--white), 1) !important;
  background-color: rgba(var(--theme-color), 1) !important;
}
.btn:active {
  color: rgba(var(--white), 1) !important;
  background-color: rgba(var(--theme-color), 1) !important;
}
.btn-sm {
  padding: 5px 10px !important;
}
@media (max-width: 600px) {
  .btn {
    padding: calc(12px + 2 * (100vw - 320px) / 280);
    font-size: calc(13px + 3 * (100vw - 320px) / 280);
  }
}
.btn.solid-btn {
  color: rgba(var(--white), 1);
  background-color: rgba(var(--theme-color), 1);
}
.btn.rounded-btn {
  color: rgb(255, 255, 255);
  background-color: rgba(var(--theme-color), 1);
  border-radius: 100px;
}

/**** ecommerce button CSS ****/
.ecommerce-btn {
  font-weight: 600;
  color: rgba(var(--white), 1);
  background-color: rgba(var(--theme-color), 1);
  text-transform: uppercase;
}

/**** plant button CSS ****/
.plant-btn,
.pet-btn {
  font-weight: 700;
  font-size: 16px;
  color: rgba(var(--white), 1);
  background-color: rgba(var(--theme-color), 1);
  text-transform: capitalize;
  border-radius: 100px;
}
@media (max-width: 600px) {
  .plant-btn,
  .pet-btn {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}

.pet-btn {
  margin-top: 40px;
  text-transform: uppercase;
}

.plant-cart-btn {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 6px 12px;
  color: rgba(var(--white), 1);
  background-color: rgba(var(--theme-color), 1);
}
.plant-cart-btn:hover {
  color: rgba(var(--white), 1);
  background-color: rgba(var(--theme-color), 1);
}

/**** grocery button CSS ****/
.grocery-btn {
  font-weight: 600;
  color: rgba(var(--white), 1);
  background-color: rgba(var(--theme-color), 1);
  text-transform: uppercase;
}
.grocery-btn:hover {
  color: rgba(var(--white), 1);
  background-color: rgba(var(--theme-color), 1) !important;
}

/*========= food button ============*/
.login-btn {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-top: 44px;
  color: rgba(var(--dark-bg), 1);
}
@media (max-width: 600px) {
  .login-btn {
    margin-top: calc(20px + 24 * (100vw - 320px) / 280);
    font-size: calc(16px + 2 * (100vw - 320px) / 280);
  }
}

.food-btn {
  position: sticky;
  width: 100%;
  font-weight: 500;
  padding: 14px;
  background-color: rgba(var(--theme-color), 1);
  border-radius: 8px;
  border: none;
  color: rgba(var(--dark-bg), 1);
}
.food-btn:hover, .food-btn:active {
  color: rgba(var(--dark-bg), 1) !important;
}
.dark-mode .food-btn {
  color: rgba(var(--bg-color), 1);
}

.map-btn {
  margin-block: 20px;
  background-color: rgba(var(--bg-color), 1);
}
body.dark-mode .map-btn {
  color: rgba(var(--white), 1) !important;
}

@media (max-width: 600px) {
  .m_top-30 {
    margin-top: calc(12px + 18 * (100vw - 320px) / 280);
  }
}

.location-btn {
  margin-top: 20px;
  font-weight: 500;
  padding: 16px;
  background-color: rgba(var(--bg-color), 1);
  border-radius: 8px;
  color: rgba(var(--dark-bg), 1);
}

.chatting-btn {
  margin-top: 40px;
  font-size: 18px;
  font-weight: 600;
  color: rgba(var(--white), 1);
  background: var(--theme-color);
  border-radius: 8px;
  width: 100%;
}
@media (max-width: 600px) {
  .chatting-btn {
    font-size: calc(16px + 2 * (100vw - 320px) / 280);
    margin-top: calc(35px + 5 * (100vw - 320px) / 280);
  }
}

.google-btn {
  margin-top: 23px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--contant-color), 0.15);
  box-shadow: 0 2px 15px 0 rgba(var(--title-color), 0.08);
}
body.dark-mode .google-btn {
  background-color: rgba(var(--body-color), 1);
}
@media (max-width: 600px) {
  .google-btn {
    margin-top: calc(15px + 8 * (100vw - 320px) / 280);
  }
}

.chatting-fixed-button {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  max-width: 600px;
  padding: 10px 20px;
  background-color: rgba(var(--white), 1);
  width: 100%;
}
body.dark-mode .chatting-fixed-button {
  background-color: rgba(var(--body-color), 1);
}
.chatting-fixed-button a {
  margin-top: 0;
}

/* ============= Hotel Booking CSS ============ */
.hotel-button {
  width: 100%;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--white), 1);
  background-color: rgba(var(--theme-color), 1);
  border-radius: 6px;
  margin-bottom: 18px;
}
@media (max-width: 600px) {
  .hotel-button {
    font-size: calc(15px + 1 * (100vw - 320px) / 280);
    margin-top: calc(20px + 10 * (100vw - 320px) / 280);
    margin-bottom: calc(10px + 8 * (100vw - 320px) / 280);
  }
}

.download-button {
  position: fixed;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  max-width: 600px;
  padding: 12px 20px;
  bottom: 0;
  background-color: rgba(var(--white), 1);
}
body.dark-mode .download-button {
  background-color: rgba(var(--body-color), 1);
}
body.dark-mode .download-button a {
  color: rgba(var(--title-color), 1);
}
.download-button a {
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--white), 1);
  background-color: rgba(var(--theme-color), 1);
  border-radius: 6px;
}
@media (max-width: 600px) {
  .download-button a {
    font-size: calc(15px + 1 * (100vw - 320px) / 280);
    margin-top: calc(20px + 10 * (100vw - 320px) / 280);
  }
}

/*============= Blog Button CSS ===========*/
.blog-fix-btn {
  background-color: rgba(var(--white), 1);
  padding: 18px 20px;
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 600px;
}
body.dark-mode .blog-fix-btn {
  background-color: rgba(var(--body-color), 1);
}
@media (max-width: 600px) {
  .blog-fix-btn {
    padding-inline: calc(15px + 5 * (100vw - 320px) / 280);
  }
}

.blog-btn {
  width: 100%;
  padding-block: 12px;
  background-color: rgba(var(--theme-color), 1);
  color: rgba(var(--white), 1);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  border-radius: 8px;
}

/*============= Learning Button CSS ==============*/
.learning-btn {
  width: 100%;
  background-color: rgba(var(--theme-color), 1);
  color: rgba(var(--white), 1);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  border-radius: 30px;
  padding-block: 15px;
}
@media (max-width: 600px) {
  .learning-btn {
    font-size: calc(16px + 2 * (100vw - 320px) / 280);
    padding-block: calc(12px + 3 * (100vw - 320px) / 280);
  }
}

.learn-skip {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
  display: block;
  margin-top: 20px;
}
@media (max-width: 600px) {
  .learn-skip {
    margin-top: calc(15px + 5 * (100vw - 320px) / 280);
  }
}

.learn-account {
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .learn-account {
    margin-top: calc(10px + 5 * (100vw - 320px) / 280);
  }
}
.learn-account a {
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}

.bottom-button {
  position: fixed;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  max-width: 600px;
  bottom: 0;
  padding: 20px;
  background-color: rgba(var(--white), 0.15);
  border: none;
}
body.dark-mode .bottom-button {
  background-color: rgb(49, 49, 49);
}

.learn-logout {
  padding: 10px 0;
  width: 100%;
  max-width: 249px;
  background-color: rgba(var(--white), 1);
  bottom: 0;
  position: fixed;
}
.learn-logout .icon {
  margin-right: 4px;
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-size: 20px;
}

/*============== Cab Booking Button CSS ===============*/
.cab-bottom-btn {
  width: 100%;
  max-width: 600px;
  left: 50%;
  transform: translateX(-50%);
  position: fixed;
  bottom: 0px;
  padding: 10px 20px 25px 20px;
  background-color: rgba(var(--white), 1);
}

.cab-main-btn {
  text-align: center;
  position: relative;
  width: 100%;
  border-radius: 16px;
  background: rgba(var(--theme-color), 1);
  padding-block: 16px;
  color: rgba(var(--white), 1);
}
.cab-main-btn:hover, .cab-main-btn:active {
  background: var(--theme-color);
}
@media (max-width: 600px) {
  .cab-main-btn {
    border-radius: calc(8px + 8 * (100vw - 320px) / 280);
  }
}
body.dark-mode .cab-main-btn .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
}
.cab-main-btn .icon {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
[dir=rtl] .cab-main-btn .icon {
  right: unset;
  left: 20px;
}

.cab-btn {
  color: rgba(var(--white), 1);
  background: var(--title2-color);
}
.cab-btn:hover, .cab-btn:active {
  background: var(--title2-color);
}
body.dark-mode .cab-btn {
  background-color: #222;
}

.cab-sidebar-btn {
  padding: 10px 0;
  width: 100%;
  max-width: 250px;
  background-color: rgba(var(--white), 1);
  bottom: 0;
  position: fixed;
}
.cab-sidebar-btn a {
  text-align: start;
}

.cab-add-card {
  margin-top: 25px;
  width: 100%;
  border: 1px solid rgba(var(--theme-color), 1);
  border-radius: 4px;
  text-align: center;
  color: rgba(var(--theme-color), 1);
  font-size: 16px;
  font-weight: 500;
  padding-block: 19px;
}

/*=========== Fitness button CSS =============*/
.fitness-body-button {
  padding-inline: 20px;
  z-index: 1;
  position: fixed;
  width: 100%;
  max-width: 600px;
  margin: 0;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.fitness-btn {
  border-radius: 50px;
  background-color: rgba(var(--theme-color), 1);
  padding-block: 13px;
  color: rgba(var(--bg-color), 1);
  font-size: 20px;
  font-weight: 600;
  width: 100%;
}
@media (max-width: 600px) {
  .fitness-btn {
    font-size: calc(17px + 3 * (100vw - 320px) / 280);
    padding-block: calc(11px + 2 * (100vw - 320px) / 280);
  }
}
.fitness-btn:hover, .fitness-btn:active {
  color: rgba(var(--bg-color), 1) !important;
}

/*=============== furniture button ============*/
.furniture-fix-button {
  position: fixed;
  bottom: 0;
  background-color: rgba(var(--white), 1);
  padding: 20px;
  width: 100%;
  max-width: 600px;
}
@media (max-width: 600px) {
  .furniture-fix-button {
    padding: calc(12px + 8 * (100vw - 320px) / 280);
  }
}

.furniture-btn {
  width: 100%;
  border-radius: 50px;
  background-color: rgba(var(--theme-color), 1);
  color: rgba(var(--white), 1);
  font-size: 18px;
  font-weight: 500;
  padding-block: 12px;
  line-height: 1.2;
}
.furniture-btn.fur-btn2 {
  background-color: rgba(var(--title-color), 1);
  color: rgba(var(--white), 1);
  border: none;
}
body.dark-mode .furniture-btn.fur-btn2 {
  background-color: rgba(var(--bg-color), 1);
}
body.dark-mode .furniture-btn.fur-btn2:hover {
  background-color: rgba(var(--bg-color), 1);
}
.furniture-btn.fur-btn2:hover {
  background-color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .furniture-btn {
    font-size: calc(16px + 2 * (100vw - 320px) / 280);
    padding-block: calc(10px + 2 * (100vw - 320px) / 280);
  }
}

/*============= jewellery  button ==============*/
.jewellery-button {
  position: fixed;
  bottom: 0;
  background-color: rgba(var(--white), 1);
  padding: 15px 20px;
  width: 100%;
  max-width: 600px;
  left: 50%;
  transform: translateX(-50%);
}
body.dark-mode .jewellery-button {
  background-color: rgba(var(--body-color), 1);
}
.jewellery-button .reset-btn {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
  padding: 14px;
  border-radius: 6px;
  background-color: rgba(var(--white), 1);
  text-align: center;
  display: block;
}
body.dark-mode .jewellery-button .reset-btn {
  background-color: rgba(var(--body-color), 1);
}
.jewellery-button .apply-btn {
  width: 100%;
  border-radius: 6px;
  background-color: rgba(var(--theme-color), 1);
  color: rgba(var(--white), 1);
  font-size: 17px;
  font-weight: 500;
  padding-block: 12px;
  display: block;
  text-align: center;
}

.gold-btn {
  width: 100%;
  border-radius: 6px;
  background-color: rgba(var(--secondary-color), 1);
  color: rgba(var(--white), 1);
  font-size: 17px;
  font-weight: 500;
  padding-block: 12px;
  display: block;
  text-align: center;
}
.gold-btn:active, .gold-btn:hover {
  background-color: rgba(var(--secondary-color), 1) !important;
  border: none;
}
@media (max-width: 600px) {
  .gold-btn {
    font-size: calc(15px + 2 * (100vw - 320px) / 280);
  }
}
body.dark-mode .gold-btn:active, body.dark-mode .gold-btn:hover {
  background-color: rgba(var(--secondary-color), 1) !important;
  border: none;
}

/*============== salon  button ==============*/
.salon-fix-button {
  max-width: 600px;
  width: 100%;
  background-color: rgba(var(--white), 1);
  position: fixed;
  bottom: 0;
  padding: 15px 20px;
  left: 50%;
  transform: translateX(-50%);
}
.dark-mode .salon-fix-button {
  background-color: rgba(var(--body), 1);
}

.salon-btn {
  width: 100%;
  border-radius: 50px;
  background-color: rgba(var(--theme-color), 1);
  color: rgba(var(--white), 1);
  font-size: 16px;
  font-weight: 600;
  padding-block: 15px;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .salon-btn {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
    padding-block: calc(12px + 3 * (100vw - 320px) / 280);
  }
}

/*================ Movie button ==============*/
.movie-fix-btn {
  width: 100%;
  max-width: 600px;
  padding: 20px;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(var(--baby-color), 1);
}

.movie-btn {
  width: 100%;
  padding-block: 12px;
  border-radius: 8px;
  border: 1.25px solid rgba(var(--title-color), 0.08);
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
  background: var(--button-color) padding-box, linear-gradient(92deg, rgba(255, 255, 255, 0.4) 6.08%, rgba(255, 255, 255, 0) 133.84%) border-box;
  border: 1.25px solid rgba(0, 0, 0, 0);
}

/*=====================
   3.3  Form CSS
=======================*/
input[type=date i]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 80%;
  height: 20px;
  left: 40px;
  opacity: 0;
  cursor: pointer;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}

.form-group {
  position: relative;
  width: 100%;
  margin-top: 35px;
}
@media (max-width: 600px) {
  .form-group {
    margin-top: calc(15px + 20 * (100vw - 320px) / 280);
  }
}
.form-group.floating-label-input {
  position: relative;
}
.form-group.floating-label-input > .form-check-label {
  position: absolute;
  top: 50%;
  left: 16px;
  color: rgba(var(--content-color), 1);
  transform: translateY(-50%);
  cursor: text;
  transition: all 0.2s ease-out;
  background: transparent;
  padding: 0 5px;
  font-size: 16px;
}
.form-group.floating-label-input .input-text {
  width: 100%;
  font-size: 14px;
  padding: 12px;
  border: 1px solid rgba(var(--border-color), 1);
  border-radius: 100px;
  background: transparent;
}
.form-group.floating-label-input .input-text::-moz-placeholder {
  opacity: 0;
}
.form-group.floating-label-input .input-text::placeholder {
  opacity: 0;
}
.form-group.floating-label-input .input-text:not(:-moz-placeholder) {
  outline: 2px solid rgba(var(--content-color), 1);
}
.form-group.floating-label-input .input-text:focus, .form-group.floating-label-input .input-text:not(:placeholder-shown) {
  outline: 2px solid rgba(var(--content-color), 1);
}
.form-group.floating-label-input .input-text:not(:-moz-placeholder) + .form-check-label {
  top: 0;
  left: 15px;
  background: rgba(var(--white), 1);
  padding-inline: 8px;
  font-size: 12px;
  color: rgba(var(--content-color), 1);
}
.form-group.floating-label-input .input-text:focus + .form-check-label, .form-group.floating-label-input .input-text:not(:placeholder-shown) + .form-check-label {
  top: 0;
  left: 15px;
  background: rgba(var(--white), 1);
  padding-inline: 8px;
  font-size: 12px;
  color: rgba(var(--content-color), 1);
}
.form-group.floating-label-input .input-text:focus + .form-check-label, .form-group.floating-label-input .input-text:valid + .form-check-label {
  top: 0;
  left: 15px;
  background: rgba(var(--white), 1);
  padding-inline: 8px;
  font-size: 12px;
  color: rgba(var(--content-color), 1);
}

.search-form .form-group .form-input {
  display: flex;
  align-items: center;
  gap: 8px;
}
.search-form .form-group .form-input .form-control {
  position: relative;
  width: calc(100% - 40px - 8px);
  padding: 15px 15px 15px 40px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--content-color), 0.2);
  border-radius: 50px;
}
.search-form .form-group .form-input .form-control.wo-icon {
  padding: 15px;
}
@media (max-width: 600px) {
  .search-form .form-group .form-input .form-control.wo-icon {
    padding: calc(12px + 3 * (100vw - 320px) / 0) 40px;
  }
}
.search-form .form-group .form-input .form-control.wo-filter {
  width: 100%;
}
.search-form .form-group .form-input .form-control::-moz-placeholder {
  color: rgba(var(--content-color), 1);
  font-weight: 400 !important;
}
.search-form .form-group .form-input .form-control::placeholder {
  color: rgba(var(--content-color), 1);
  font-weight: 400 !important;
}
.search-form .form-group .form-input .form-control.search {
  max-width: calc(100% - 46px - 9px);
}
body.dark-mode .search-form .form-group .form-input .form-control.search {
  background-color: rgba(var(--body-color), 1);
  border-color: rgba(var(--theme-color), 0.3);
}
.search-form .form-group .form-input .search-icon {
  position: absolute;
  top: 50%;
  left: 6px;
  background-color: transparent;
  transform: translateY(-50%);
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
}
[dir=rtl] .search-form .form-group .form-input .search-icon {
  left: 64px;
  right: unset;
}
.search-form .form-group .form-input .filter-btn {
  width: 46px;
  height: 46px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(var(--theme-color), 1);
  border: none;
  border-radius: 100%;
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 20px;
  transform: rotate(180deg);
}
@media (max-width: 600px) {
  .search-form .form-group .form-input .filter-btn {
    width: calc(40px + 6 * (100vw - 320px) / 280);
    height: calc(40px + 6 * (100vw - 320px) / 280);
    --Iconsax-Size: calc(16px + (20 - 16) * ((100vw - 320px) / (600 - 320)));
  }
}
[dir=rtl] .search-form .form-group .form-input .filter-btn {
  left: 0;
  right: unset;
}
.search-form.ecommerce-search .form-group .form-input .form-control {
  width: 100%;
  border: 1px solid rgba(var(--border-color), 1);
}
body.dark-mode .search-form.ecommerce-search .form-group .form-input .form-control {
  background-color: rgba(var(--body-color), 1);
  border-color: rgba(var(--theme-color), 0.3);
}
[dir=rtl] .search-form.ecommerce-search .form-group .form-input .search-icon {
  left: 10px;
  right: unset;
}

.forgot {
  font-size: 13px;
  margin-top: 10px;
  float: right;
  color: rgba(var(--theme-color), 1);
}

.division {
  position: relative;
  text-align: center;
  margin-block: 40px;
  z-index: 0;
}
.division span {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  background-color: rgba(var(--white), 1);
  color: rgba(var(--content-color), 1);
  padding: 0 10px;
}
.dark-mode .division span {
  background-color: rgba(var(--body-color), 1);
}
.division::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  background: linear-gradient(270deg, rgba(155, 166, 184, 0) -2.05%, rgb(155, 166, 184) 50.93%, rgba(155, 166, 184, 0) 101.74%);
  z-index: -1;
  height: 2px;
}

.grocery-division {
  margin-block: 25px;
}

.login-list {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
body.dark-mode .login-list li:nth-child(3) img {
  filter: brightness(0) invert(1);
}
.login-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--content-color), 0.26);
  border-radius: 100%;
  width: 70px;
  height: 70px;
}
body.dark-mode .login-list li a {
  background-color: rgba(var(--body-color), 1);
}
@media (max-width: 600px) {
  .login-list li a {
    width: calc(50px + 20 * (100vw - 320px) / 280);
    height: calc(50px + 20 * (100vw - 320px) / 280);
  }
}
.login-list li a .login-icon {
  width: 32px;
  height: 32px;
}
@media (max-width: 600px) {
  .login-list li a .login-icon {
    height: calc(25px + 7 * (100vw - 320px) / 280);
    width: calc(25px + 7 * (100vw - 320px) / 280);
  }
}
.login-list.plant-login .login-box {
  border-radius: 14px;
  box-shadow: 2px 3px 6px 0px rgba(0, 0, 0, 0.07);
}
.login-list.plant-login .login-box a {
  border: none;
}

.form-select {
  position: relative;
  padding: 14px 28px 14px 14px;
  border: 1px solid rgba(var(--border-color), 1);
  color: rgba(var(--title-color), 1);
  font-size: 14px;
  border-radius: 8px !important;
  background-color: rgba(var(--light-bg), 1);
  border: none;
  background-image: url(3a798c8ef446eda77c2f.svg);
}
body.dark-mode .form-select {
  background-color: rgba(var(--bg-color), 1);
  background-image: url(20536fe172873a8f8d07.svg);
}
[dir=rtl] .form-select {
  background-position: left 12px center;
  padding: 14px 14px 14px 28px;
}
.form-select:focus {
  box-shadow: none;
  background-color: rgba(var(--light-bg), 1);
}
body.dark-mode .form-select:focus {
  background-color: rgba(var(--bg-color), 1);
}
.form-select.rounded-select {
  border-radius: 40px;
}
.form-select.auth-select {
  width: auto;
}
body.dark-mode .form-select.auth-select {
  background-color: rgba(var(--light-bg), 1);
}
.form-select.grocery-select {
  background-color: rgba(var(--white), 1);
}
.dark-mode .form-select.grocery-select {
  background-color: rgba(var(--body), 1);
}

.otp-form {
  margin-top: 20px;
}
.otp-form .form-group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 25px;
}
.otp-form .form-group .form-label {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.otp-form .form-group .form-label::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 25px;
  top: 0;
  left: -20px;
  transform: translateX(-50%);
  background-color: rgba(var(--theme-color), 1);
  border-radius: 4px;
}
.otp-form .form-group .form-input::-webkit-outer-spin-button, .otp-form .form-group .form-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.otp-form .form-group .form-input .form-control {
  position: relative;
  width: 65px;
  height: 65px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--border-color), 1);
  border-radius: 100%;
}
body.dark-mode .otp-form .form-group .form-input .form-control {
  background-color: rgba(var(--light-bg), 1);
}
@media (max-width: 600px) {
  .otp-form .form-group .form-input .form-control {
    width: calc(45px + 20 * (100vw - 320px) / 280);
    height: calc(45px + 20 * (100vw - 320px) / 280);
  }
}
.otp-form .form-group .form-input .form-control::-moz-placeholder {
  color: rgba(var(--content-color), 1);
  font-weight: 500 !important;
}
.otp-form .form-group .form-input .form-control::placeholder {
  color: rgba(var(--content-color), 1);
  font-weight: 500 !important;
}
.otp-form .form-group .form-input .form-control:focus {
  box-shadow: none;
  border: 1px solid rgba(var(--theme-color), 1);
}
.otp-form .form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.otp-form .form-check .form-check-input {
  width: 20px;
  height: 20px;
  float: unset;
  margin: 0;
  background: transparent;
  filter: none;
}
.otp-form .form-check .form-check-input:checked {
  background-color: rgba(var(--theme-color), 1);
  border-color: rgba(var(--theme-color), 1);
}
.otp-form .form-check [type=radio] {
  border-radius: 100%;
  position: relative;
}
.otp-form .form-check [type=radio]::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: rgba(var(--theme-color), 1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 100%;
  transition: all 0.12s ease;
}
.otp-form .form-check [type=radio]:checked {
  background-color: transparent;
  border-color: rgba(var(--theme-color), 1);
}
.otp-form .form-check [type=radio]:checked::after {
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.12s ease;
}
.otp-form .form-check .form-check-label {
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}

.auth-input-form .form-group {
  position: relative;
  margin-top: 30px;
}
.auth-input-form .form-group .form-check-label {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.auth-input-form .form-group .form-control {
  position: relative;
  padding: 14px 14px 14px 40px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--light-bg), 1);
  border: none;
  border-radius: 8px;
  text-align: start;
}
body.dark .auth-input-form .form-group .form-control {
  background-color: rgba(var(--light-bg), 1);
}
.auth-input-form .form-group .form-control.wo-icon {
  padding: 14px;
  background-color: rgba(var(--light-bg), 1);
}
.auth-input-form .form-group .form-control.search {
  position: relative;
  width: 100%;
  padding: 14px 40px;
  font-size: 16px;
  line-height: 1;
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--light-bg), 1);
  border: none;
  border-radius: 8px;
}
@media (max-width: 600px) {
  .auth-input-form .form-group .form-control.search {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.auth-input-form .form-group .form-control.textarea-form-control {
  border-radius: 8px;
}
.auth-input-form .form-group .form-control:focus {
  border-color: rgba(var(--border-color), 1);
}
.auth-input-form .form-group .form-control::-moz-placeholder {
  color: rgba(var(--content-color), 1);
  font-weight: 400;
}
.auth-input-form .form-group .form-control::placeholder {
  color: rgba(var(--content-color), 1);
  font-weight: 400;
}
.auth-input-form .form-group .icon {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 20px;
}
.auth-input-form .form-group .search-icon {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
  background-color: transparent;
}
[dir=rtl] .auth-input-form .form-group .search-icon {
  left: unset;
  right: 5px;
}
.auth-input-form .form-group .mic-icon {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  --Iconsax-Color: rgba(var(--theme-color), 1);
  --Iconsax-Size: 20px;
}
[dir=rtl] .auth-input-form .form-group .mic-icon {
  right: unset;
  left: 12px;
}
.auth-input-form .form-group .filter-btn {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  padding-left: 10px;
  border-left: 1px solid rgb(210, 210, 210);
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
}
[dir=rtl] .auth-input-form .form-group .filter-btn {
  right: unset;
  left: 10px;
  border-left: unset;
  border-right: 1px solid rgb(210, 210, 210);
  padding-left: unset;
  padding-right: 10px;
}

.plant-form .form-group {
  margin-top: 20px;
}
.dark-mode .plant-form .form-group .form-control {
  background-color: rgba(var(--light-bg), 1);
}

.grocery-form {
  position: relative;
}
.grocery-form .form-group .form-control {
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--border-color), 0.14);
}
body.dark-mode .grocery-form .form-group .form-control {
  background-color: rgba(var(--body-color), 1);
}
body.dark-mode .grocery-form .form-group .grocery-select {
  background-color: rgba(var(--body-color), 1);
}

.plant-otp-form .form-group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 16px;
  margin-top: 25px;
}
.plant-otp-form .form-group .form-control {
  position: relative;
  width: 100%;
  padding: 15px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--light-bg), 1);
  border-radius: 8px;
  border: 1px solid transparent;
}
body.dark-mode .plant-otp-form .form-group .form-control {
  background-color: rgba(var(--light-bg), 1);
}
[dir=rtl] .plant-otp-form .form-group .form-control {
  text-align: center;
}
@media (max-width: 600px) {
  .plant-otp-form .form-group .form-control {
    padding: calc(8px + 3 * (100vw - 320px) / 280);
    font-size: calc(16px + 4 * (100vw - 320px) / 280);
  }
}
.plant-otp-form .form-group .form-control::-moz-placeholder {
  color: rgba(var(--content-color), 1);
  font-weight: 400 !important;
}
.plant-otp-form .form-group .form-control::placeholder {
  color: rgba(var(--content-color), 1);
  font-weight: 400 !important;
}
.plant-otp-form .form-group .form-control:focus {
  box-shadow: none;
  border: 1px solid rgba(var(--theme-color), 1);
}
.plant-otp-form .form-group .form-control::-webkit-outer-spin-button, .plant-otp-form .form-group .form-control::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pet-otp-form .form-group {
  margin-top: 25px;
}
.pet-otp-form .form-group .form-control {
  position: relative;
  width: 100%;
  height: 65px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--light-bg), 1);
  border: none;
  border-radius: 8px;
}
@media (max-width: 600px) {
  .pet-otp-form .form-group .form-control {
    height: calc(45px + 20 * (100vw - 320px) / 280);
  }
}
.pet-otp-form .form-group .form-control::-moz-placeholder {
  color: rgba(var(--content-color), 1);
  font-weight: 400 !important;
}
.pet-otp-form .form-group .form-control::placeholder {
  color: rgba(var(--content-color), 1);
  font-weight: 400 !important;
}
.pet-otp-form .form-group .form-control:focus {
  box-shadow: none;
  border: 1px solid rgba(var(--theme-color), 1);
}
.pet-otp-form .form-group .form-control::-webkit-outer-spin-button, .pet-otp-form .form-group .form-control::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

body.dark-mode .ecommerce-form .form-group.floating-label-input .input-text {
  border-color: rgba(var(--theme-color), 0.8);
  color: rgba(var(--title-color), 1);
}
body.dark-mode .ecommerce-form .form-group.floating-label-input label {
  background-color: rgba(var(--body-color), 1) !important;
}
.ecommerce-form .form-group.floating-label-input .input-text {
  border-color: rgba(var(--content-color), 1);
}
.ecommerce-form .form-group.floating-label-input .input-text:focus {
  outline: none;
}
.ecommerce-form .division::after {
  background: rgba(var(--border-color), 1);
}
body.dark-mode .ecommerce-form .division::after {
  background: rgba(var(--border-color), 0.14);
}
body.dark-mode .ecommerce-form .division span {
  background-color: rgba(var(--body-color), 1);
}
.ecommerce-form .division span {
  font-size: 13px;
  background-color: rgba(var(--white), 1);
}
.ecommerce-form h6 {
  margin-top: 32px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.ecommerce-form h6 a {
  text-decoration: underline;
  color: rgba(var(--title-color), 1);
}

/* ==================== food form ==================*/
.food-input-form .form-group {
  position: relative;
  margin-top: 20px;
}
.food-input-form .form-group .form-check-label {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.food-input-form .form-group .form-control {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--light-bg), 1);
  border: none;
  border-radius: 8px;
  -webkit-text-security: none;
  text-security: none;
}
.dark-mode .food-input-form .form-group .form-control {
  background-color: rgba(var(--bg-color), 1) !important;
}
.food-input-form .form-group .form-control.wo-icon {
  padding: 14px;
  background-color: rgba(var(--light-bg), 1);
}
.food-input-form .form-group .form-control.search {
  position: relative;
  width: 100%;
  padding-block: 14px;
  padding-left: 40px;
  font-size: 16px;
  line-height: 1;
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--light-bg), 1);
  border: none;
  border-radius: 8px;
}
@media (max-width: 600px) {
  .food-input-form .form-group .form-control.search {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
[dir=rtl] .food-input-form .form-group .form-control.search {
  padding-right: 40px;
  padding-left: 10px;
}
.food-input-form .form-group .form-control.search-space {
  position: relative;
  width: 100%;
  padding-block: 14px;
  padding-inline: 40px;
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  line-height: 1;
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--light-bg), 1);
  border: none;
  border-radius: 8px;
}
.food-input-form .form-group .form-control.textarea-form-control {
  border-radius: 8px !important;
}
.food-input-form .form-group .form-control:focus {
  border-color: rgba(var(--border-color), 1);
}
.food-input-form .form-group .form-control::-moz-placeholder {
  color: rgba(var(--content-color), 1);
  font-weight: 400 !important;
}
.food-input-form .form-group .form-control::placeholder {
  color: rgba(var(--content-color), 1);
  font-weight: 400 !important;
}
.food-input-form .form-group .icon {
  width: 28px;
  height: 28px;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  stroke: rgba(var(--content-color), 0.62);
}
.food-input-form .form-group .search-icon {
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
  background-color: transparent;
}
[dir=rtl] .food-input-form .form-group .search-icon {
  left: unset;
  right: 10px;
}
.food-input-form .form-group .filter-btn {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  padding-left: 10px;
  border-left: 1px solid rgb(210, 210, 210);
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
}
[dir=rtl] .food-input-form .form-group .filter-btn {
  right: unset;
  left: 10px;
  border-left: unset;
  border-right: 1px solid rgb(210, 210, 210);
  padding-left: unset;
  padding-right: 10px;
}
.food-input-form .form-group .email-error {
  margin-top: 15px;
  text-align: right;
}
.food-input-form .form-group .email-error p {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
  text-align: left;
}
.food-input-form .form-group .email-error p span {
  color: rgba(var(--dark-bg), 1);
  font-weight: 700;
}
.food-input-form .form-group .email-error .email-button {
  background-color: transparent;
  color: rgba(var(--error-color), 1);
  border: 2px solid rgba(var(--error-color), 1);
  border-radius: 5px;
  padding: 5px;
  font-size: 14px;
  font-weight: 500;
}
.food-input-form .form-group .password-box {
  display: flex;
  align-items: center;
  background-color: rgba(var(--bg-color), 1);
  border-radius: 8px;
  position: relative;
}
.food-input-form .form-group .password-box a {
  color: rgba(var(--error-color), 1);
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
  margin-right: 12px;
}
[dir=rtl] .food-input-form .form-group .password-box a {
  margin-right: unset;
  margin-left: 12px;
}
.food-input-form .form-group .password-box a svg {
  --Iconsax-Color: rgba(var(--error-color), 1);
  --Iconsax-Size: 16px;
  margin-left: 5px;
}
.food-input-form .form-group .password-box .toggle-password {
  display: none;
}
.food-input-form .form-group .password-box .password-icon {
  display: flex;
  align-items: center;
  margin-right: 12px;
  cursor: pointer;
  padding: 0;
}
[dir=rtl] .food-input-form .form-group .password-box .password-icon {
  margin-right: unset;
  margin-left: 12px;
}
.food-input-form .form-group .password-box .password-icon svg {
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 20px;
}
.food-input-form .form-group .password-box .password-icon .eye-icon {
  display: none;
}
.food-input-form .form-group .password-box .password-icon .eye-slash {
  display: inline;
}

/* ==============
food page CSS
=================*/
.button-header {
  display: flex;
  gap: 16px;
  overflow: auto;
}
.button-header li {
  width: 100%;
  background-color: rgba(var(--bg-color), 1);
  padding: 10px 15px;
  border-radius: 7px;
}
.button-header li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.button-header li a svg {
  width: 16px;
  height: 16px;
  fill: rgba(var(--content-color), 1);
}
.button-header li.active {
  background-color: rgba(var(--theme-color), 1);
}
.button-header li.active a {
  color: rgba(var(--dark-bg), 1);
}
.button-header li.active svg {
  fill: rgba(var(--dark-bg), 1);
}

.food-form {
  margin-top: 25px;
}
.food-form label {
  width: 100%;
}
.food-form input {
  font-weight: 400;
}
.food-form .form-group + .form-group {
  margin-top: 18px;
}
.food-form .form-group .flex-common {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.food-form .form-group .food-input-text {
  background-color: rgba(var(--bg-color), 1);
  padding: 15px;
  border-radius: 7px;
  margin-top: 8px;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--dark-bg), 1);
  cursor: pointer;
  margin-top: 15px;
}
.custom-checkbox + .custom-checkbox {
  margin-top: 20px;
}
@media (max-width: 600px) {
  .custom-checkbox + .custom-checkbox {
    margin-top: calc(20px + -8 * (100vw - 320px) / 280);
  }
}
.custom-checkbox input {
  display: none;
}
.custom-checkbox .checkmark {
  height: 16px;
  width: 16px;
  border-radius: 4px;
  display: inline-block;
  margin-right: 6px;
  position: relative;
  border: 1px solid rgba(var(--border-color), 1);
  transition: background-color 0.3s, border-color 0.3s;
}
[dir=rtl] .custom-checkbox .checkmark {
  margin-right: unset;
  margin-left: 8px;
}
.custom-checkbox input:checked + .checkmark {
  background-color: rgba(var(--theme-color), 1);
  border-color: rgba(var(--theme-color), 1);
}
.custom-checkbox input:checked + .checkmark::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 5px;
  width: 5px;
  height: 10px;
  border: solid rgba(var(--dark-bg), 1);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.theme-box .checkmark {
  margin-left: auto;
}
[dir=rtl] .theme-box .checkmark {
  margin-inline: auto 0;
}

/* ==================== chatting form ==================*/
.chatting-search {
  margin-top: -55px;
}

.chatting-input-form .form-group {
  position: relative;
  margin-top: 33px;
}
@media (max-width: 600px) {
  .chatting-input-form .form-group {
    margin-top: calc(20px + 13 * (100vw - 320px) / 280);
  }
}
.chatting-input-form .form-group + .form-group {
  margin-top: 15px;
}
@media (max-width: 600px) {
  .chatting-input-form .form-group + .form-group {
    margin-top: calc(12px + 3 * (100vw - 320px) / 280);
  }
}
.chatting-input-form .form-group .form-check-label {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .chatting-input-form .form-group .form-check-label {
    font-size: calc(15px + 1 * (100vw - 320px) / 280);
  }
}
.chatting-input-form .form-group .form-control {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 16px;
  background-color: rgba(var(--content-color), 0.05);
  border: 1px solid rgba(var(--content-color), 0.15);
  border-radius: 8px;
  -webkit-text-security: none;
  margin-top: 6px;
}
body.dark-mode .chatting-input-form .form-group .form-control {
  background-color: rgba(var(--white), 1);
  color: rgba(var(--title-color), 1);
}
.chatting-input-form .form-group .form-control::-moz-placeholder {
  color: rgba(var(--content-color), 1);
  font-weight: 400;
}
.chatting-input-form .form-group .form-control::placeholder {
  color: rgba(var(--content-color), 1);
  font-weight: 400;
}
@media (max-width: 600px) {
  .chatting-input-form .form-group .form-control {
    padding: calc(12px + 4 * (100vw - 320px) / 280);
  }
}
.chatting-input-form .form-group .form-control.search {
  padding-block: 14px;
  padding-left: 40px;
  font-size: 16px;
  background-color: rgba(var(--white), 1);
  z-index: 0;
}
@media (max-width: 600px) {
  .chatting-input-form .form-group .form-control.search {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
[dir=rtl] .chatting-input-form .form-group .form-control.search {
  padding-left: unset;
  padding-right: 40px;
}
.chatting-input-form .form-group .form-control.textarea-form-control {
  border-radius: 8px !important;
}
.chatting-input-form .form-group .form-control:focus {
  border-color: rgba(var(--content-color), 0.15);
}
.chatting-input-form .form-group .form-control::-moz-placeholder {
  color: rgba(var(--content-color), 1);
  font-weight: 400 !important;
}
.chatting-input-form .form-group .form-control::placeholder {
  color: rgba(var(--content-color), 1);
  font-weight: 400 !important;
}
.chatting-input-form .form-group .search-icon {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 20px;
  z-index: 2;
  background-color: transparent;
}
[dir=rtl] .chatting-input-form .form-group .search-icon {
  left: unset;
  right: 10px;
}
.chatting-input-form .form-group .reset {
  float: right;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  background: var(--theme-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.chatting-input-form .form-group .emoji-box {
  display: flex;
  align-items: center;
  background-color: rgba(var(--bg-color), 1);
  border-radius: 8px;
  position: relative;
}
.chatting-input-form .form-group .emoji-box img {
  position: absolute;
  right: 16px;
  width: 20px;
  height: 20px;
}

/* ==============
Hotel form CSS
=================*/
.hotel-auth-form {
  margin-top: 30px;
}
@media (max-width: 600px) {
  .hotel-auth-form {
    margin-top: calc(15px + 15 * (100vw - 320px) / 280);
  }
}
.hotel-auth-form .form-group {
  margin-top: 0;
}
.hotel-auth-form .form-group + .form-group {
  margin-top: 15px;
}
@media (max-width: 600px) {
  .hotel-auth-form .form-group + .form-group {
    margin-top: calc(12px + 18 * (100vw - 320px) / 280);
  }
}
.hotel-auth-form .form-group .form-check-label {
  margin-bottom: 8px;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .hotel-auth-form .form-group .form-check-label {
    font-size: calc(15px + 1 * (100vw - 320px) / 280);
    margin-bottom: calc(4px + 4 * (100vw - 320px) / 280);
  }
}
.hotel-auth-form .form-group .form-control {
  position: relative;
  padding: 14px 36px 14px 33px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--white), 1);
  border-radius: 10px;
  border: 1px solid rgba(var(--theme-color), 0.1);
  box-shadow: 0 2px 12px 0 rgba(5, 30, 71, 0.08);
}
.hotel-auth-form .form-group .form-control::-moz-placeholder {
  color: rgba(var(--content-color), 1);
}
.hotel-auth-form .form-group .form-control::placeholder {
  color: rgba(var(--content-color), 1);
}
[dir=rtl] .hotel-auth-form .form-group .form-control {
  text-align: right;
}
body.dark .hotel-auth-form .form-group .form-control {
  background-color: rgba(var(--light-bg), 1) !important;
}
.hotel-auth-form .form-group .form-control.search {
  padding: 14px 40px;
}
.hotel-auth-form .form-group .form-control:focus {
  background-color: rgba(var(--white), 1);
  border-color: rgba(var(--theme-color), 0.1);
}
.hotel-auth-form .form-group .form-control::-moz-placeholder {
  color: rgba(var(--content-color), 1);
  font-weight: 400 !important;
}
.hotel-auth-form .form-group .form-control::placeholder {
  color: rgba(var(--content-color), 1);
  font-weight: 400 !important;
}
.hotel-auth-form .form-group .guest-input {
  padding-inline: 19px;
}
.hotel-auth-form .form-group .icon {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
}
[dir=rtl] .hotel-auth-form .form-group .icon {
  right: 10px;
  left: unset;
}
.hotel-auth-form .form-group .toggle-password {
  display: none;
}
.hotel-auth-form .form-group .password-icon {
  padding: 0;
  position: absolute;
  bottom: 30%;
  right: 12px;
  transform: translateY(50%);
}
[dir=rtl] .hotel-auth-form .form-group .password-icon {
  left: 12px;
  right: unset;
}
.hotel-auth-form .form-group .password-icon svg {
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 20px;
}
.hotel-auth-form .form-group .password-icon .eye-icon {
  display: none;
}
.hotel-auth-form .form-group .password-icon .eye-slash {
  display: inline;
}
.hotel-auth-form .flex-spacing {
  display: flex;
  align-items: center;
  margin-top: 10px;
  justify-content: space-between;
}
.hotel-auth-form .flex-spacing .custom-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
  cursor: pointer;
  margin-top: 5px;
}
.hotel-auth-form .flex-spacing .custom-checkbox input {
  display: none;
}
.hotel-auth-form .flex-spacing .custom-checkbox .checkmark {
  width: 20px;
  height: 20px;
  margin: 0;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  border: 1px solid rgba(var(--theme-color), 0.3);
  transition: background-color 0.3s, border-color 0.3s;
}
.hotel-auth-form .flex-spacing .custom-checkbox input:checked + .checkmark {
  background-color: rgba(var(--theme-color), 1);
  border-color: rgba(var(--theme-color), 1);
}
.hotel-auth-form .flex-spacing .custom-checkbox input:checked + .checkmark::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 12px;
  top: 1px;
  left: 6px;
  border: solid rgba(var(--white), 1);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.hotel-auth-form .flex-spacing a {
  color: rgba(var(--theme-color), 1);
  font-size: 13px;
  font-weight: 500;
}
.hotel-auth-form .search-icon {
  position: absolute;
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
}
[dir=rtl] .hotel-auth-form .search-icon {
  left: unset;
  right: 10px;
}
.hotel-auth-form .filter-btn {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  padding-left: 10px;
  border-left: 1px solid rgb(210, 210, 210);
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
}
[dir=rtl] .hotel-auth-form .filter-btn {
  right: unset;
  left: 10px;
  border-left: unset;
  border-right: 1px solid rgb(210, 210, 210);
  padding-left: unset;
  padding-right: 5px;
}

.hotel-button-section {
  margin-top: 140px;
}
@media (max-width: 600px) {
  .hotel-button-section {
    margin-top: calc(52px + 88 * (100vw - 320px) / 280);
  }
}
.hotel-button-section h5 {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.hotel-button-section h5 a {
  color: rgba(var(--title-color), 1);
  font-weight: 600;
}
.hotel-button-section .division2 {
  position: relative;
  text-align: center;
  margin-top: 25px;
}
@media (max-width: 600px) {
  .hotel-button-section .division2 {
    margin-top: calc(15px + 10 * (100vw - 320px) / 280);
  }
}
.hotel-button-section .division2 span {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  background-color: rgba(var(--white), 1);
  color: rgba(var(--content-color), 1);
  padding: 0 10px;
}
.dark-mode .hotel-button-section .division2 span {
  background-color: rgba(var(--body-color), 1);
}
.hotel-button-section .division2::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(270deg, rgba(155, 166, 184, 0) -2.05%, rgb(155, 166, 184) 50.93%, rgba(155, 166, 184, 0) 101.74%);
  z-index: -1;
}

.hotel-social-box {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 15px;
}
@media (max-width: 600px) {
  .hotel-social-box {
    margin-top: calc(15px + 11 * (100vw - 320px) / 280);
    gap: calc(10px + 5 * (100vw - 320px) / 280);
  }
}
.hotel-social-box li {
  width: 102px;
  height: 101px;
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--theme-color), 0.1);
  border-radius: 10px;
  width: 100%;
  padding: 20px 28px;
  box-shadow: 0 2px 12px 0 rgba(var(--theme-color), 0.04);
}
@media (max-width: 600px) {
  .hotel-social-box li {
    padding: calc(10px + 10 * (100vw - 320px) / 280) calc(10px + 18 * (100vw - 320px) / 280);
    height: calc(80px + 22 * (100vw - 320px) / 280);
  }
}
body.dark-mode .hotel-social-box li:nth-child(3) a img {
  filter: brightness(0) invert(1);
}
.hotel-social-box li a {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  color: rgba(var(--title-color), 1);
  font-size: 14px;
  font-weight: 600;
  width: 100%;
}

.add-guest-button {
  background-color: rgba(var(--content-color), 0.09);
  width: 100%;
  padding-block: 15px;
  border-radius: 6px;
  color: rgba(var(--theme-color), 1);
  font-size: 16px;
  font-weight: 500;
  margin-top: 30px;
}

.hotel-form-check {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 15px;
}
@media (max-width: 600px) {
  .hotel-form-check {
    margin-top: calc(5px + 10 * (100vw - 320px) / 280);
  }
}
.hotel-form-check .fill-circle {
  padding: 0;
  display: flex;
  align-items: center;
  font-size: 16px;
  gap: 10px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.hotel-form-check .fill-circle input[type=radio] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  display: block;
  accent-color: rgba(var(--theme-color), 1);
  transition: all 0.25s ease-in-out;
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 100%;
  border: 1px solid rgba(var(--border-color), 1);
}
.hotel-form-check .fill-circle input[type=radio]::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: rgba(var(--theme-color), 1);
  border-radius: 100%;
  transition: all 0.25s ease-in-out;
}
.hotel-form-check .fill-circle input[type=radio]:checked {
  border-color: rgba(var(--theme-color), 1);
}
.hotel-form-check .fill-circle input[type=radio]:checked::before {
  transform: translate(-50%, -50%) scale(1);
}

/* =================
Blog post page CSS 
====================*/
.new-post-form {
  margin-top: 10px;
}
.new-post-form .post-compose-box input {
  color: rgba(var(--title-color), 1);
  font-size: 16px;
  font-weight: 500;
  padding: 0 0 10px 0;
  border: none;
  background-color: transparent;
}
@media (max-width: 600px) {
  .new-post-form .post-compose-box input {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.new-post-form .post-compose-box input::-moz-placeholder {
  color: rgba(var(--content-color), 1);
}
.new-post-form .post-compose-box input::placeholder {
  color: rgba(var(--content-color), 1);
}
.new-post-form .post-compose-box input:focus {
  outline: 0;
}
.new-post-form .post-compose-box .add-post-page {
  position: relative;
  overflow: hidden;
}
.new-post-form .post-compose-box .add-post-page .post-text {
  width: 100%;
  height: calc(100vh - 50px - 34px - 100px) !important;
  padding-top: 10px;
  color: rgba(var(--title-color), 1);
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-top: 1px solid rgba(var(--content-color), 0.18);
  background-color: transparent;
}
.new-post-form .post-compose-box .add-post-page .post-text:focus {
  outline: 0;
}
@media (max-width: 600px) {
  .new-post-form .post-compose-box .add-post-page .post-text {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.new-post-form .post-compose-box .add-post-page .add-image-section {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.6;
}
.new-post-form .post-compose-box .add-post-page .add-image-section svg {
  width: 255px;
  height: 202px;
}

/************ Learning OTP CSS ************/
.learn-otp .form-group .form-control {
  font-size: 26px;
  font-weight: 500;
  box-shadow: 2px 2px 0 0 rgba(var(--title-color), 1);
  padding-block: 8px;
  border: none;
}
body.dark-mode .learn-otp .form-group .form-control {
  box-shadow: 2px 2px 0 0 rgba(var(--black), 1);
}
@media (max-width: 600px) {
  .learn-otp .form-group .form-control {
    font-size: calc(20px + 6 * (100vw - 320px) / 280);
  }
}
.learn-otp .form-group .form-control:focus {
  box-shadow: 2px 2px 0 0 rgba(var(--title-color), 1);
  border: none;
}

/************** fitness OTP CSS *****************/
.fitness-otp-form {
  margin-top: 47px;
}
.fitness-otp-form .form-group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 16px;
  margin-top: 25px;
}
.fitness-otp-form .form-group .form-control {
  position: relative;
  width: 100%;
  padding: 15px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--bg-color), 1);
  border-radius: 100%;
  border: 1px solid rgba(var(--content-color), 0.24);
  max-width: 64px;
}
@media (max-width: 600px) {
  .fitness-otp-form .form-group .form-control {
    padding: calc(5px + 10 * (100vw - 320px) / 280);
  }
}
.fitness-otp-form .form-group .form-control::-moz-placeholder {
  color: rgba(var(--content-color), 1);
  font-weight: 400 !important;
}
.fitness-otp-form .form-group .form-control::placeholder {
  color: rgba(var(--content-color), 1);
  font-weight: 400 !important;
}
.fitness-otp-form .form-group .form-control:focus {
  box-shadow: none;
  border: 1px solid rgba(var(--theme-color), 1);
}
.fitness-otp-form .form-group .form-control::-webkit-outer-spin-button, .fitness-otp-form .form-group .form-control::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ========== Movie OTP CSS ==========*/
.movie-otp-form .form-group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 16px;
  padding-top: 63px;
}
@media (max-width: 600px) {
  .movie-otp-form .form-group {
    padding-top: calc(15px + 48 * (100vw - 320px) / 280);
  }
}
.movie-otp-form .form-group .form-control {
  position: relative;
  width: 100%;
  padding: 15px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--white), 0.06);
  border-radius: 8px;
  border: 2px solid transparent;
}
@media (max-width: 600px) {
  .movie-otp-form .form-group .form-control {
    padding: calc(10px + 5 * (100vw - 320px) / 280);
  }
}
.movie-otp-form .form-group .form-control::-moz-placeholder {
  color: rgba(var(--white), 1);
}
.movie-otp-form .form-group .form-control::placeholder {
  color: rgba(var(--white), 1);
}
.movie-otp-form .form-group .form-control:focus {
  box-shadow: none;
  background: linear-gradient(112.85deg, #221D2B 100%, #221D2B 100%) padding-box, var(--theme-color) border-box;
  border: 2px solid transparent;
}
.movie-otp-form .form-group .form-control::-webkit-outer-spin-button, .movie-otp-form .form-group .form-control::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/*=====================
  3.4  Offcanvas CSS
==========================*/
.offcanvas.addtohome-popup {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  height: auto;
  border-top: none;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background-color: transparent;
}
.offcanvas.addtohome-popup .btn-close {
  position: absolute;
  right: 10px;
  top: 10px;
  opacity: 1;
  font-size: 12px;
  border-radius: 100%;
  background-color: transparent;
  box-shadow: none;
}
.offcanvas.addtohome-popup .btn-close.close {
  filter: invert(1);
}
.dark-mode .offcanvas.addtohome-popup .btn-close {
  filter: invert(1);
}
[dir=rtl] .offcanvas.addtohome-popup .btn-close {
  left: 10px;
  right: unset;
}
.offcanvas.addtohome-popup .offcanvas-body {
  text-align: right;
  background-color: rgba(var(--white), 1);
  padding: 15px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.offcanvas.addtohome-popup .offcanvas-body.fit {
  background-color: rgb(34, 34, 34);
}
.offcanvas.addtohome-popup .offcanvas-body.dark-theme {
  background-color: rgba(var(--body-color), 1);
}
.offcanvas.addtohome-popup .offcanvas-body.dark-theme .install-app {
  color: rgba(var(--black), 1);
}
.offcanvas.addtohome-popup .offcanvas-body.dark-theme .install-app:hover {
  color: rgba(var(--black), 1) !important;
}
[dir=rtl] .offcanvas.addtohome-popup .offcanvas-body {
  text-align: left;
}
.offcanvas.addtohome-popup .offcanvas-body .app-info {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  text-align: left;
}
[dir=rtl] .offcanvas.addtohome-popup .offcanvas-body .app-info {
  text-align: right;
}
.offcanvas.addtohome-popup .offcanvas-body .app-info .content {
  padding-left: 15px;
}
[dir=rtl] .offcanvas.addtohome-popup .offcanvas-body .app-info .content {
  padding-left: 0;
  padding-right: 15px;
}
.offcanvas.addtohome-popup .offcanvas-body .app-info .content h3 {
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.offcanvas.addtohome-popup .offcanvas-body .app-info .content a {
  color: rgba(var(--content-color), 1);
  transition: all 0.3s ease-in-out;
}
.offcanvas.addtohome-popup .offcanvas-body .app-info .content a:hover {
  color: rgba(var(--theme-color), 1);
  text-decoration: underline;
}
.offcanvas.addtohome-popup .offcanvas-body .install-app {
  display: inline-block;
  background-color: rgba(var(--theme-color), 1);
  color: rgba(var(--white), 1);
}
.offcanvas.addtohome-popup .offcanvas-body .install-app.theme-btn {
  background: var(--theme-color);
}
.offcanvas.addtohome-popup {
  animation: slideUp 0.4s ease;
}
@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.offcanvas.sidebar-offcanvas {
  width: 280px;
  background-color: rgba(var(--white), 1);
}
body.dark-mode .offcanvas.sidebar-offcanvas {
  background-color: rgba(var(--body-color), 1);
}
[dir=rtl] .offcanvas.sidebar-offcanvas {
  left: 0;
  right: unset;
  transform: translateX(-100%);
}
.offcanvas.sidebar-offcanvas .offcanvas-header {
  padding: 20px;
}
.offcanvas.sidebar-offcanvas .offcanvas-header .sidebar-logo {
  margin: 0 auto;
}
.offcanvas.sidebar-offcanvas .offcanvas-header .sidebar-logo .logo {
  display: block;
  width: 80px;
}
.offcanvas.sidebar-offcanvas .offcanvas-header .sidebar-logo .logo-dark {
  display: none;
}
.offcanvas.sidebar-offcanvas .offcanvas-body {
  padding: 0;
}
.offcanvas.sidebar-offcanvas .offcanvas-body .profile-background {
  border-radius: 6px;
  margin-top: 80px;
  background-color: rgba(var(--light-bg), 1);
}
.offcanvas.sidebar-offcanvas .offcanvas-body .profile-background .profile-part {
  padding: 0 20px 20px;
  text-align: center;
  background-color: rgba(var(--bg-color), 1);
}
.offcanvas.sidebar-offcanvas .offcanvas-body .profile-background .profile-part .profile-pic {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
  margin-top: -40px;
}
.offcanvas.sidebar-offcanvas .offcanvas-body .profile-background .profile-part h3 {
  margin-top: 6px;
  color: rgba(var(--title-color), 1);
}
.offcanvas.sidebar-offcanvas .offcanvas-body .profile-background .profile-part h4 {
  margin-top: 2px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
.offcanvas.sidebar-offcanvas .offcanvas-body .profile-list {
  margin-top: 25px;
  padding-bottom: 100px;
}
.offcanvas.sidebar-offcanvas .offcanvas-body .profile-list li {
  width: 100%;
  padding-block: 12px;
  border-bottom: 1px solid rgba(var(--border-color), 1);
}
.offcanvas.sidebar-offcanvas .offcanvas-body .profile-list li:first-child {
  padding-top: 0;
}
.offcanvas.sidebar-offcanvas .offcanvas-body .profile-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.offcanvas.sidebar-offcanvas .offcanvas-body .profile-list li .setting-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.offcanvas.sidebar-offcanvas .offcanvas-body .profile-list li .setting-box .setting-icon .main-icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
}
.offcanvas.sidebar-offcanvas .offcanvas-body .profile-list li .setting-box .setting-icon .main-icon.main-img {
  width: 20px;
}
.offcanvas.sidebar-offcanvas .offcanvas-body .profile-list li .setting-box .setting-content {
  width: calc(100% - 24px - 10px);
}
.offcanvas.sidebar-offcanvas .offcanvas-body .profile-list li .setting-box .setting-content h5 {
  line-height: 1;
  font-weight: 400;
  font-size: 14px;
  color: rgba(var(--title-color), 1);
}
.offcanvas.sidebar-offcanvas .offcanvas-body .profile-list li .setting-box .setting-content h6 {
  margin-top: 3px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.offcanvas.sidebar-offcanvas .offcanvas-body .profile-list li .setting-box .setting-content .arrow-icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 18px;
}
.offcanvas.sidebar-offcanvas .offcanvas-body .profile-list li .setting-box .setting-content .switch-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}
.offcanvas.sidebar-offcanvas .offcanvas-body .profile-list li .setting-box .setting-content .switch-btn input[type=checkbox] {
  position: relative;
  width: 32px;
  height: 20px;
  margin-top: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  --bs-form-check-bg-image: none;
  background-color: rgba(var(--light-bg), 1);
  border: 1px solid rgba(var(--border-color), 1);
  box-shadow: none;
  border-radius: 50px;
  cursor: pointer;
}
.offcanvas.sidebar-offcanvas .offcanvas-body .profile-list li .setting-box .setting-content .switch-btn input[type=checkbox]:checked {
  background-color: rgba(var(--theme-color), 1);
}
.offcanvas.sidebar-offcanvas .offcanvas-body .profile-list li .setting-box .setting-content .switch-btn input[type=checkbox]:checked::before {
  transform: translateX(80%) translateY(-50%);
  background-color: rgba(var(--white), 1);
}
.offcanvas.sidebar-offcanvas .offcanvas-body .profile-list li .setting-box .setting-content .switch-btn input[type=checkbox]:before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(var(--content-color), 0.5);
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
  transition: 0.3s;
}
.offcanvas.sidebar-offcanvas .offcanvas-body .hotel-list li {
  padding-block: 15px;
  border-bottom: 1px dashed rgba(var(--border-color), 1);
}
.offcanvas.sidebar-offcanvas .offcanvas-body .bottom-sidebar {
  position: fixed;
  bottom: 0;
  padding: 20px 0;
  width: 100%;
  max-width: 249px;
  background-color: rgba(var(--white), 1);
}
.dark-mode .offcanvas.sidebar-offcanvas .offcanvas-body .bottom-sidebar {
  background-color: rgba(var(--body-color), 1);
}
.offcanvas.sidebar-offcanvas .offcanvas-body .bottom-sidebar i {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 20px;
}

.filter-offcanvas {
  height: auto !important;
  padding: 20px;
  background-color: rgba(var(--white), 1);
  border-radius: 20px 20px 0 0;
}
.filter-offcanvas .offcanvas-header {
  padding-top: 0;
  padding-inline: 0;
  border-bottom: 1px solid rgba(var(--border-color), 1);
}
.filter-offcanvas .offcanvas-body {
  padding-inline: 0;
  padding-bottom: 0;
}

/*=========================
food returns page offcanvas 
============================*/
.offcanvas.theme-offcanvas {
  max-width: 600px;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  height: auto;
  max-height: none;
  margin: auto;
  z-index: 7;
  border: none;
}
.offcanvas.theme-offcanvas .offcanvas-body {
  overflow: hidden;
}
body.dark-mode .offcanvas.theme-offcanvas {
  background-color: rgba(var(--bg-color), 1);
}
body.dark-mode .offcanvas.theme-offcanvas .theme-header .offcanvas-close {
  filter: invert(1);
  border: none;
}
body.dark-mode .offcanvas.theme-offcanvas .food-product-content h5 {
  color: rgba(var(--white), 1);
}
body.dark-mode .offcanvas.theme-offcanvas .food-product-content p {
  color: rgba(var(--content-color), 1);
}
body.dark-mode .offcanvas.theme-offcanvas .food-product-content .plus-minus {
  background-color: rgba(var(--second-color), 1);
}
body.dark-mode .offcanvas.theme-offcanvas .food-product-content .plus-minus input {
  background-color: transparent;
}
body.dark-mode .offcanvas.theme-offcanvas .input-form textarea {
  background-color: rgba(var(--second-color), 1);
}

.input-form h5 {
  font-size: 14px;
  font-weight: 600;
  color: rgba(var(--dark-bg), 1);
  margin-bottom: 5px;
}
.input-form textarea {
  border-radius: 5px;
  padding-inline: 10px;
  padding-bottom: 24px;
  padding-top: 8px;
  width: 100%;
  background-color: rgba(var(--bg-color), 1);
  color: rgba(var(--content-color), 1);
  border: none;
}
.input-form textarea:focus {
  outline: none;
}

.filter-wrapper {
  position: relative;
  display: flex;
}
.filter-wrapper .offcanvas-header {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
}
.filter-wrapper .offcanvas-header a {
  width: 150px;
}
.filter-wrapper .offcanvas-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .filter-wrapper .offcanvas-header h3 {
    font-size: calc(18px + 2 * (100vw - 320px) / 280);
  }
}
.filter-wrapper .offcanvas-header .offcanvas-close {
  border: 1px solid rgba(var(--title-color), 1);
  border-radius: 100%;
  font-size: 10px;
  box-shadow: none;
  opacity: 1;
  padding: 5px;
}
[dir=rtl] .filter-wrapper .offcanvas-header .offcanvas-close {
  margin-right: auto;
  margin-left: 0;
}
body.dark-mode .filter-wrapper .offcanvas-header .offcanvas-close {
  filter: brightness(0) invert(1);
}
.filter-wrapper .filter-box {
  background-color: rgba(var(--bg-color), 1);
  width: 150px;
  border-top-left-radius: 20px;
  padding-top: 35px;
}
body.dark-mode .filter-wrapper .filter-box {
  background-color: rgba(var(--second-color), 1);
}
.filter-wrapper .filter-box .offcanvas-body .filter-left-box li {
  width: 100%;
}
.filter-wrapper .filter-box .offcanvas-body .filter-left-box li + li {
  border-top: 1px solid rgba(var(--border-color), 1);
}
.filter-wrapper .filter-box .offcanvas-body .filter-left-box li a {
  padding-block: 20px;
  padding-left: 16px;
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
[dir=rtl] .filter-wrapper .filter-box .offcanvas-body .filter-left-box li a {
  padding-inline: 16px 0;
}
.filter-wrapper .filter-box .offcanvas-body .filter-left-box .active {
  color: rgba(var(--dark-bg), 1);
}
body.dark-mode .filter-wrapper .filter-box .offcanvas-body .filter-left-box .active {
  color: rgba(var(--title-color), 1);
}
.filter-wrapper .filter-right-box {
  width: calc(100% - 150px);
  padding: 46px 15px 20px 15px;
}
@media (max-width: 600px) {
  .filter-wrapper .filter-right-box {
    padding-inline: calc(10px + 5 * (100vw - 320px) / 280);
  }
}

.filter-button {
  display: flex;
  gap: 12px;
  flex-direction: row;
  margin-block: 10px 20px;
}
.filter-button .clear-button {
  text-align: center;
  width: 100%;
  padding-block: 14px;
  border-radius: 8px;
  color: rgba(var(--white), 1);
  background-color: rgba(var(--dark-bg), 1);
}
body.dark-mode .filter-button .clear-button {
  background-color: rgba(var(--second-color), 1);
  color: rgb(255, 255, 255);
}

.offcanvas-backdrop {
  z-index: 6;
}

/* =================
 home page right offcanvas
 ==================== */
.offcanvas.food-profile-offcanvas {
  width: 280px;
  background-color: rgba(var(--white), 1);
}
body.dark-mode .offcanvas.food-profile-offcanvas {
  background-color: rgba(var(--bg-color), 1);
}
[dir=rtl] .offcanvas.food-profile-offcanvas {
  left: 0;
  right: unset;
  transform: translateX(-100%);
}
[dir=rtl] .offcanvas.food-profile-offcanvas.show:not(.hiding), [dir=rtl] .offcanvas.food-profile-offcanvas.showing {
  transform: none;
}
@media (max-width: 600px) {
  .offcanvas.food-profile-offcanvas {
    width: calc(238px + 42 * (100vw - 320px) / 280) !important;
  }
}

.right-profile-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 24px 15px 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(var(--bg-color), 1);
}
.right-profile-box .right-profile-image img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
}
@media (max-width: 600px) {
  .right-profile-box .right-profile-image img {
    width: calc(50px + 10 * (100vw - 320px) / 280);
    height: calc(50px + 10 * (100vw - 320px) / 280);
  }
}
.right-profile-box .right-profile-content h3 {
  font-size: 15px;
  font-weight: 600;
  color: rgba(var(--dark-bg), 1);
}
@media (max-width: 600px) {
  .right-profile-box .right-profile-content h3 {
    font-size: calc(14px + 1 * (100vw - 320px) / 280);
  }
}
.right-profile-box .right-profile-content h4 {
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.right-profile-box .right-profile-content a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(var(--theme-color), 1);
  border-bottom: 1px solid rgba(var(--theme-color), 1);
  margin-top: 3px;
}

.right-profile-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: auto;
  padding-inline: 15px;
  margin-top: 0;
  height: calc(100vh - 93px - 2rem - 52px - 20px);
}
@media (max-width: 600px) {
  .right-profile-list {
    gap: calc(14px + 6 * (100vw - 320px) / 280);
  }
}
.right-profile-list::-webkit-scrollbar {
  width: 5px;
}
.right-profile-list::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: rgba(var(--content-color), 0.2);
}
.right-profile-list::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: rgba(var(--theme-color), 1);
}
.right-profile-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
}
.right-profile-list li a .link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: rgba(var(--bg-color), 1);
}
.right-profile-list li a .link-icon .menu-icon {
  --Iconsax-Color: rgba(var(--dark-bg), 1);
  --Iconsax-Size: 25px;
}
@media (max-width: 600px) {
  .right-profile-list li a .link-icon {
    width: calc(35px + 5 * (100vw - 320px) / 280);
    height: calc(35px + 5 * (100vw - 320px) / 280);
  }
  .right-profile-list li a .link-icon .menu-icon {
    --Iconsax-Size: calc(18px + (25 - 18) * ((100vw - 320px) / (600 - 320)));
  }
}
.right-profile-list li a .right-profile-list-contant h5 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--dark-bg), 1);
}
@media (max-width: 600px) {
  .right-profile-list li a .right-profile-list-contant h5 {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}

.bottom-sidebar-btn {
  position: relative;
  padding: 15px;
  background-color: rgba(var(--white), 1);
  width: 100%;
  inset: unset;
}
body.dark-mode .bottom-sidebar-btn {
  background-color: rgba(var(--bg-color), 1);
}
body.dark-mode .bottom-sidebar-btn .logout-icon {
  --Iconsax-Color: rgba(var(--bg-color), 1);
}
.bottom-sidebar-btn .logout-icon {
  --Iconsax-Color: rgba(var(--dark-bg), 1);
  --Iconsax-Size: 24px;
}

/*===============
mood change theme box
==================*/
.theme-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
}
@media (max-width: 600px) {
  .theme-header .theme-header {
    font-size: calc(18px + 6 * (100vw - 320px) / 280);
  }
}
.theme-header button {
  border: none;
  background-color: transparent;
}
.theme-header .offcanvas-close {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(var(--dark-bg), 1);
  border-radius: 100%;
  font-size: 10px;
  box-shadow: none;
  opacity: 1;
  margin: 0;
  padding: 2px;
}
.theme-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: rgba(var(--dark-bg), 1);
}
@media (max-width: 600px) {
  .theme-header h3 {
    font-size: calc(18px + 2 * (100vw - 320px) / 280);
  }
}

/* ===========
 food add tips CSS 
=============*/
.tips-box p {
  font-weight: 500;
  color: rgba(var(--content-color), 1);
  margin-top: 12px;
}
.tips-box .add-tips-wrapper {
  background-color: rgba(var(--white), 1);
  padding: 12px 10px;
  border-radius: 12px;
  box-shadow: 7px 5px 14px 0 rgba(var(--bg-color), 1);
  display: flex;
  align-items: center;
  gap: 12px;
}
body.dark-mode .tips-box .add-tips-wrapper {
  background-color: rgba(var(--second-color), 1);
}
.tips-box .add-tips-wrapper div .iconsax {
  width: 42px;
  height: 42px;
  background-color: rgba(var(--bg-color), 1);
  border-radius: 6px;
  --Iconsax-Color: rgba(var(--theme-color), 1);
  --Iconsax-Size: 24px;
  display: grid;
  place-content: center;
}
.tips-box .add-tips-wrapper div h5 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--dark-bg), 1);
}
.tips-box .add-tips-wrapper div h6 {
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  margin-top: 2px;
}
.tips-box .timing-wrapper {
  margin-top: 20px;
}
.tips-box .timing-wrapper h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}
.tips-box .timing-wrapper .custom-radio-list {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 8px;
}
.tips-box .timing-wrapper .custom-radio-list li input {
  display: none;
}
.tips-box .timing-wrapper .custom-radio-list li label {
  display: inline-block;
  padding: 5px 8px 4px;
  font-size: 14px;
  color: rgba(var(--dark-bg), 1);
  border: 1px solid rgba(var(--theme-color), 1);
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.tips-box .timing-wrapper .custom-radio-list li label svg {
  width: 14px;
  height: 14px;
  fill: rgba(var(--theme-color), 1);
  margin-right: 4px;
  margin-top: -2px;
}
.tips-box .timing-wrapper .custom-radio-list li input:checked + label {
  background-color: rgba(var(--theme-color), 1);
  color: rgba(var(--white), 1);
}
.tips-box .timing-wrapper .custom-radio-list li input:checked + label svg {
  fill: rgba(var(--white), 1);
}

/* ===============
chatting CSS finger 
==================*/
.select-file {
  display: flex;
  gap: 20px;
}
.select-file .choose-file {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(var(--light-blue), 0.07);
  border-radius: 100%;
}
.select-file .choose-file input[type=file] {
  display: none;
}
.select-file .choose-file .edit-icon {
  --Iconsax-Color: rgba(var(--light-blue), 1);
  --Iconsax-Size: 24px;
}
.select-file .choose-file:hover {
  background-color: rgba(var(--light-blue), 0.15);
}

.finger-success {
  text-align: center;
}
.finger-success h4 {
  font-size: 24px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .finger-success h4 {
    font-size: calc(20px + 4 * (100vw - 320px) / 280);
  }
}
.finger-success h6 {
  font-size: 18px;
  font-weight: 400;
  color: rgba(var(--contant-color), 1);
  margin-top: 5px;
}
@media (max-width: 600px) {
  .finger-success h6 {
    font-size: calc(16px + 2 * (100vw - 320px) / 280);
  }
}
body.dark-mode .finger-success h6 {
  color: rgba(var(--title-color), 1);
}
.finger-success img {
  margin-block: 30px;
  height: 100px;
}
@media (max-width: 600px) {
  .finger-success img {
    margin-block: calc(10px + 15 * (100vw - 320px) / 280);
    height: calc(70px + 30 * (100vw - 320px) / 280);
  }
}

.offcanvas.chatting-share {
  border-top-right-radius: 20px !important;
  border-top-left-radius: 20px !important;
}
body.dark-mode .offcanvas.chatting-share .theme-header h3 {
  color: rgba(var(--title-color), 1);
}
.offcanvas.chatting-share .blog-link-section .share-link-content .form-group .link-icon {
  background: var(--theme-color);
}
body.dark-mode .offcanvas.chatting-share {
  background-color: rgba(var(--body-color), 1);
}

/*=============
rating CSS 
===============*/
.rating-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
.rating-section img {
  height: 300px;
}
.rating-section h4 {
  font-size: 24px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
.rating-section h5 {
  margin-top: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  background: var(--theme-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rating-section .msg-emojis-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rating-section .msg-emojis-wrapper .star-widget {
  margin: 0;
}
.rating-section .msg-emojis-wrapper .star-widget input {
  display: none;
}
.rating-section .msg-emojis-wrapper .star-widget label {
  font-size: 35px;
  color: rgba(var(--contant-color), 0.2);
  padding: 0 10px;
  float: right;
  margin: 0;
  transition: all 0.2s ease;
}
@media (max-width: 1500px) and (min-width: 401px) {
  .rating-section .msg-emojis-wrapper .star-widget label {
    font-size: 30px;
  }
}
@media (max-width: 400px) {
  .rating-section .msg-emojis-wrapper .star-widget label {
    font-size: 25px;
    padding: 0 8px;
  }
}
.rating-section .msg-emojis-wrapper form {
  display: none;
}
.rating-section input:checked ~ form {
  display: block;
  margin-top: 45px;
}
.rating-section .star-widget input:not(:checked) ~ label:hover,
.rating-section .star-widget input:not(:checked) ~ label:hover ~ label {
  color: rgba(var(--rating-color), 1);
}
.rating-section .star-widget input:checked ~ label {
  color: rgba(var(--rating-color), 1);
}
.rating-section input#rate-5:checked ~ label {
  color: rgba(var(--rating-color), 0.2);
  text-shadow: 0 0 20px rgba(var(--rating-color), 0.5);
}
.rating-section #rate-1:checked ~ form header:before {
  content: "Smile ";
}
.rating-section #rate-2:checked ~ form header:before {
  content: "Good";
}
.rating-section #rate-3:checked ~ form header:before {
  content: "Happy";
}
.rating-section #rate-4:checked ~ form header:before {
  content: "Wow";
}
.rating-section #rate-5:checked ~ form header:before {
  content: "Beautiful";
}
.rating-section form header {
  width: 100%;
  font-size: 18px;
  color: rgba(var(--contant-color), 1);
  font-weight: 500;
  margin: 0;
  text-align: center;
  transition: all 0.2s ease;
}

/* ================
reset offcanvas CSS
====================*/
.reset-contant {
  padding-top: 12px;
}
.reset-contant h3 {
  font-size: 20px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
.reset-contant p {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
  margin-top: 5px;
}
.reset-contant .button-reset {
  display: flex;
  margin-top: 16px;
  padding-top: 16px;
  font-size: 18px;
  border-top: 1px solid rgba(var(--border-color), 1);
  gap: 14px;
}
.reset-contant .button-reset .btn {
  margin-top: 0;
  width: 100%;
  border: none;
}
.reset-contant .button-reset .btn:active {
  color: rgba(var(--white), 1);
}
body.dark-mode .reset-contant .button-reset .btn:active {
  color: rgba(var(--title-color), 1);
}

/* ====================
Hotel Booking Offcanvas 
========================*/
.offcanvas.filter-theme-offcanvas {
  max-width: 600px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  height: auto;
  max-height: none;
  margin: auto;
  z-index: 7;
  border: none;
  padding-inline: 15px;
  background-color: rgba(var(--white), 1);
}
.dark-mode .offcanvas.filter-theme-offcanvas {
  background-color: rgba(var(--body-color), 1);
}
@media (max-width: 600px) {
  .offcanvas.filter-theme-offcanvas {
    border-top-left-radius: calc(18px + 32 * (100vw - 320px) / 280);
    border-top-right-radius: calc(18px + 32 * (100vw - 320px) / 280);
  }
}
.offcanvas.filter-theme-offcanvas .offcanvas-body {
  padding: 35px;
  padding-inline: 6px;
}
@media (max-width: 600px) {
  .offcanvas.filter-theme-offcanvas .offcanvas-body {
    padding-top: calc(22px + 13 * (100vw - 320px) / 280);
  }
}

.hotel-theme-header {
  border-bottom: 1px dashed rgba(var(--content-color), 0.4);
  display: flex;
  justify-content: center;
}
.hotel-theme-header h5 {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}

.sort-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sort-group .sort-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(var(--content-color), 0.4);
  border-radius: 6px;
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.sort-group .sort-box input[type=radio] {
  display: none;
}
.sort-group .sort-box .custom-radio {
  width: 20px;
  height: 20px;
  margin-left: auto;
  border: 1px solid rgba(var(--theme-color), 1);
  border-radius: 100%;
  position: relative;
}
[dir=rtl] .sort-group .sort-box .custom-radio {
  margin-inline: auto 0;
}
.sort-group .sort-box .text {
  font-size: 15px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.sort-group .sort-box .icon {
  color: rgba(var(--content-color), 1);
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 16px;
}
.sort-group .sort-box:has(input[type=radio]:checked) {
  border-color: rgba(var(--theme-color), 1);
}
.sort-group .sort-box:has(input[type=radio]:checked) .text {
  color: rgba(var(--title-color), 1);
}
.sort-group input[type=radio]:checked ~ .custom-radio::after {
  width: 10px;
  height: 10px;
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  background-color: rgba(var(--theme-color), 1);
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
}

.hotel-filter-wrapper {
  margin-top: 20px;
}
.hotel-filter-wrapper + .hotel-filter-wrapper {
  padding-bottom: 85px;
}
.hotel-filter-wrapper h3 {
  font-size: 18px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.hotel-filter-wrapper .hotel-star-rating {
  display: flex;
  align-items: center;
  margin-top: 12px;
  gap: 6px;
}
.hotel-filter-wrapper .hotel-star-rating li {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
  gap: 5px;
  padding: 6px 10px;
  background-color: rgba(var(--content-color), 0.1);
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.hotel-filter-wrapper .hotel-star-rating li.active {
  background-color: rgba(var(--theme-color), 1);
  color: rgba(var(--white), 1);
}
.hotel-filter-wrapper .hotel-star-rating li img {
  width: 15px;
  height: 15px;
}
.hotel-filter-wrapper .checkbox-section {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
}
.hotel-filter-wrapper .checkbox-section::-webkit-scrollbar {
  width: 0;
}
@media (max-width: 600px) {
  .hotel-filter-wrapper .checkbox-section {
    gap: calc(10px + 6 * (100vw - 320px) / 280);
  }
}
.hotel-filter-wrapper .checkbox-section .native-checkbox {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
  white-space: nowrap;
  cursor: pointer;
}
@media (max-width: 600px) {
  .hotel-filter-wrapper .checkbox-section .native-checkbox {
    font-size: calc(13px + 3 * (100vw - 320px) / 280);
  }
}
.hotel-filter-wrapper .checkbox-section .native-checkbox input[type=checkbox] {
  width: 20px;
  height: 20px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  accent-color: rgba(var(--theme-color), 1);
  border: 1px solid rgba(var(--content-color), 0.2);
  position: relative;
}
@media (max-width: 600px) {
  .hotel-filter-wrapper .checkbox-section .native-checkbox input[type=checkbox] {
    width: calc(18px + 2 * (100vw - 320px) / 280);
    height: calc(18px + 2 * (100vw - 320px) / 280);
  }
}
.hotel-filter-wrapper .checkbox-section .native-checkbox input[type=checkbox]::before {
  width: 6px;
  height: 12px;
  content: "";
  position: absolute;
  right: 48%;
  top: 50%;
  border: solid rgba(var(--white), 1);
  border-width: 0 2px 2px 0;
  margin: -1px -1px 0 -1px;
  transform: rotate(45deg) translate(-50%, -50%) scale(0, 0);
  z-index: 2;
  transition: all 0.3s ease-in-out;
}
.hotel-filter-wrapper .checkbox-section .native-checkbox input[type=checkbox]:checked {
  background-color: rgba(var(--theme-color), 1);
}
.hotel-filter-wrapper .checkbox-section .native-checkbox input[type=checkbox]:checked::before {
  transform: rotate(45deg) translate(-50%, -50%) scale(1, 1);
}

.link-section {
  margin-top: 20px;
}
.link-section h5 {
  text-align: center;
  color: rgba(var(--content-color), 1);
  font-size: 14px;
  font-weight: 600;
}
.link-section .share-link-content .form-group {
  margin-top: 15px;
}
.link-section .share-link-content .form-group label {
  color: rgba(var(--title-color), 1);
  font-weight: 700;
  font-size: 14px;
}
.link-section .share-link-content .form-group input {
  position: relative;
  padding: 14px 40px 14px 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--white), 1);
  border-radius: 10px;
  border: 1px solid rgba(var(--theme-color), 0.1);
  box-shadow: 0 2px 12px 0 rgba(5, 30, 71, 0.08);
  margin-top: 6px;
}
.link-section .share-link-content .form-group input::-moz-placeholder {
  color: rgba(var(--content-color), 1);
}
.link-section .share-link-content .form-group input::placeholder {
  color: rgba(var(--content-color), 1);
}
.link-section .share-link-content .form-group .link-icon {
  position: absolute;
  top: 28px;
  right: 15px;
  transform: translateY(50%);
}
.link-section .share-link-content .form-group .link-icon .icon {
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 20px;
}
.link-section .share-icon {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.link-section .share-icon li a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: rgba(var(--content-color), 0.1);
}
.link-section .share-icon li a img {
  width: 30px;
  height: 30px;
}

.booking-search-bar .icon {
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 20px;
}
@media (max-width: 600px) {
  .booking-search-bar .icon {
    --Iconsax-Size: calc(18px + (20 - 18) * ((100vw - 320px) / (600 - 320)));
  }
}
.booking-search-bar .booking-location {
  background-color: rgba(var(--white), 0.1);
  box-shadow: 0px 2px 12px 0px rgba(5, 30, 71, 0.039);
  border: 1px solid rgba(var(--theme-color), 0.2);
  border-radius: 8px;
  padding: 14px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(var(--title-color), 1);
  cursor: pointer;
}
@media (max-width: 600px) {
  .booking-search-bar .booking-location {
    padding: calc(10px + 4 * (100vw - 320px) / 280) calc(6px + 4 * (100vw - 320px) / 280);
  }
}
.booking-search-bar .booking-location h6 {
  font-size: 16px;
  font-weight: 400;
}
.booking-search-bar .hotel-booking-date {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}
.booking-search-bar .booking-date {
  position: relative;
}
.booking-search-bar .booking-date input {
  width: 100%;
  background-color: rgba(var(--white), 0.1);
  box-shadow: 0px 2px 12px 0px rgba(5, 30, 71, 0.039);
  border: 1px solid rgba(var(--theme-color), 0.2);
  border-radius: 8px;
  padding: 14px 14px 14px 42px;
}
@media (max-width: 600px) {
  .booking-search-bar .booking-date input {
    padding: calc(10px + 4 * (100vw - 320px) / 280) calc(10px + 4 * (100vw - 320px) / 280) calc(10px + 4 * (100vw - 320px) / 280) calc(36px + 6 * (100vw - 320px) / 280);
  }
}
.booking-search-bar .booking-date .iconsax {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 12px;
}

.destination-wrapper .icon {
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 20px;
}
.destination-wrapper .search-header {
  background-color: rgba(var(--white), 0.1);
  box-shadow: 0px 2px 12px 0px rgba(5, 30, 71, 0.039);
  border: 1px solid rgba(var(--theme-color), 0.2);
  border-radius: 8px;
  padding: 14px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
@media (max-width: 600px) {
  .destination-wrapper .search-header {
    padding: calc(10px + 4 * (100vw - 320px) / 280) calc(6px + 4 * (100vw - 320px) / 280);
  }
}
.destination-wrapper .search-header .btn {
  padding: 0;
  background-color: transparent;
  border: none;
}
.destination-wrapper .search-header input {
  width: 100%;
  border: none;
  background: transparent;
}
.destination-wrapper .search-header input:focus {
  outline: none;
}
.destination-wrapper .auto-type-text {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.destination-wrapper .auto-type-text span {
  font-weight: 600;
  color: rgba(var(--theme-color), 1);
}
.destination-wrapper .current-location-gps {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}
.destination-wrapper .current-location-gps .icon {
  --Iconsax-Size: 24px;
}
.destination-wrapper .current-location-gps h5 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.destination-wrapper .current-location-gps h6 {
  margin-top: 2px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.destination-wrapper .popular-city {
  margin-top: 20px;
}
@media (max-width: 600px) {
  .destination-wrapper .popular-city {
    margin-top: calc(15px + 5 * (100vw - 320px) / 280);
  }
}
.destination-wrapper .popular-city h3 {
  background-color: rgba(var(--content-color), 0.07);
  color: rgba(var(--title-color), 1);
  padding: 10px 8px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
}
.destination-wrapper .popular-city ul {
  margin-top: 15px;
}
@media (max-width: 600px) {
  .destination-wrapper .popular-city ul {
    margin-top: calc(5px + 10 * (100vw - 320px) / 280);
  }
}
.destination-wrapper .popular-city ul li {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-block: 10px;
}
.destination-wrapper .popular-city ul li + li {
  border-top: 1px dashed rgba(var(--content-color), 0.42);
}
.destination-wrapper .popular-city ul li a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
  padding: 12px 6px;
}
.destination-wrapper .popular-city ul li a .icon {
  --Iconsax-Color: rgba(var(--theme-color), 1);
  --Iconsax-Size: 18px;
}
.destination-wrapper .guest-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.destination-wrapper .guest-detail + .guest-detail {
  margin-top: 12px;
}
.destination-wrapper .guest-detail h4 {
  font-size: 18px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .destination-wrapper .guest-detail h4 {
    font-size: calc(16px + 2 * (100vw - 320px) / 280);
  }
}
.destination-wrapper .guest-detail h6 {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .destination-wrapper .guest-detail h6 {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
    margin-top: calc(3px + -3 * (100vw - 320px) / 280);
  }
}
.destination-wrapper .guest-detail .form-select {
  max-width: 75px;
  padding: 10px;
  font-size: 18px;
  background-color: rgba(var(--white), 0.1);
  box-shadow: 0px 2px 12px 0px rgba(5, 30, 71, 0.039);
  border: 1px solid rgba(var(--theme-color), 0.2);
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .destination-wrapper .guest-detail .form-select {
    padding: calc(7px + 3 * (100vw - 320px) / 280) 10px;
    font-size: calc(16px + 2 * (100vw - 320px) / 280);
    border-radius: calc(6px + 2 * (100vw - 320px) / 280);
  }
}

/* ======================
Blog Theme offcanvas CSS 
=========================*/
.offcanvas.blog-theme-offcanvas {
  width: 100%;
  max-width: 600px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  height: auto;
  max-height: none;
  margin: auto;
  z-index: 7;
  border: none;
  padding-inline: 20px;
  background-color: rgba(var(--white), 1);
}
@media (max-width: 600px) {
  .offcanvas.blog-theme-offcanvas {
    padding-inline: calc(12px + 8 * (100vw - 320px) / 280);
    border-top-left-radius: calc(24px + 26 * (100vw - 320px) / 280);
    border-top-right-radius: calc(24px + 26 * (100vw - 320px) / 280);
  }
}
.offcanvas.blog-theme-offcanvas .blog-theme-header {
  padding: 15px 0;
  border-bottom: 1px solid rgba(var(--content-color), 0.12);
}
.offcanvas.blog-theme-offcanvas .blog-theme-header h5 {
  font-size: 20px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.offcanvas.blog-theme-offcanvas .blog-theme-header .btn-close {
  border: 1px solid rgba(var(--title-color), 1);
  border-radius: 100%;
  box-shadow: none;
  padding: 5px;
  font-size: 10px;
}
body.dark-mode .offcanvas.blog-theme-offcanvas .blog-theme-header .btn-close {
  filter: invert(1);
  border: none;
}
@media (max-width: 600px) {
  .offcanvas.blog-theme-offcanvas .blog-theme-header .btn-close {
    font-size: calc(8px + 2 * (100vw - 320px) / 280);
  }
}
.offcanvas.blog-theme-offcanvas .blog-link-section h5 {
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.offcanvas.blog-theme-offcanvas .blog-link-section .share-link-content .form-group {
  margin-top: 18px;
}
@media (max-width: 600px) {
  .offcanvas.blog-theme-offcanvas .blog-link-section .share-link-content .form-group {
    margin-top: calc(10px + 8 * (100vw - 320px) / 280);
  }
}
.offcanvas.blog-theme-offcanvas .blog-link-section .share-link-content .form-group .form-control {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  border: 1px solid rgba(var(--content-color), 0.12);
  padding: 10px 80px 10px 10px;
}
.offcanvas.blog-theme-offcanvas .blog-link-section .share-link-content .form-group .form-control:-moz-read-only {
  font-size: 14px;
  font-weight: 400;
}
.offcanvas.blog-theme-offcanvas .blog-link-section .share-link-content .form-group .form-control:read-only {
  font-size: 14px;
  font-weight: 400;
}
.offcanvas.blog-theme-offcanvas .blog-link-section .share-link-content .form-group .form-control:focus {
  background-color: rgba(var(--body-color), 1);
  border: 1px solid rgba(var(--content-color), 0.12);
}
.offcanvas.blog-theme-offcanvas .blog-link-section .share-link-content .form-group .link-icon {
  cursor: pointer;
  position: absolute;
  height: calc(100% - 10px);
  top: 50%;
  transform: translateY(-50%);
  right: 3px;
  color: rgba(var(--white), 1);
  font-size: 16px;
  font-weight: 500;
  background-color: rgba(var(--theme-color), 1);
  border-radius: 5px;
  padding: 3px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.dark-mode .offcanvas.blog-theme-offcanvas .blog-link-section .share-link-content .form-group .link-icon {
  color: rgba(var(--title-color), 1);
}
body.dark-mode .offcanvas.blog-theme-offcanvas .blog-link-section .share-link-content .form-group .link-icon .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
}
.offcanvas.blog-theme-offcanvas .blog-link-section .share-link-content .form-group .link-icon .icon {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 18px;
}
.offcanvas.blog-theme-offcanvas .blog-link-section .nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  border: none;
  margin-top: 18px;
}
.offcanvas.blog-theme-offcanvas .blog-link-section .nav-tabs .nav-item .nav-link {
  width: 40px;
  height: 40px;
  font-weight: 400;
  font-size: 14px;
  background-color: transparent;
  border: none;
  background-color: rgba(var(--content-color), 0.11);
  border-radius: 8px;
  padding: 0;
}
@media (max-width: 600px) {
  .offcanvas.blog-theme-offcanvas .blog-link-section .nav-tabs .nav-item .nav-link {
    width: calc(35px + 5 * (100vw - 320px) / 280);
    height: calc(35px + 5 * (100vw - 320px) / 280);
  }
}
.offcanvas.blog-theme-offcanvas .blog-link-section .nav-tabs .nav-item .nav-link img {
  width: 25px;
  height: 25px;
}
@media (max-width: 600px) {
  .offcanvas.blog-theme-offcanvas .blog-link-section .nav-tabs .nav-item .nav-link img {
    width: calc(20px + 5 * (100vw - 320px) / 280);
    height: calc(20px + 5 * (100vw - 320px) / 280);
  }
}
.offcanvas.blog-theme-offcanvas .blog-link-section .nav-tabs .nav-item .nav-link:hover {
  border: none;
}
.offcanvas.blog-theme-offcanvas .blog-link-section .nav-tabs .nav-item .nav-link:focus {
  border-color: transparent;
}

/* ========================
left Offcanvas Blog Theme 
===========================*/
.offcanvas.left-sidebar-offcanvas {
  width: 280px;
  background-color: rgba(var(--white), 1);
}
.offcanvas.left-sidebar-offcanvas .offcanvas-body .profile-background {
  border-bottom: 1px solid rgba(var(--content-color), 0.2);
  padding-block: 25px;
  background-color: rgba(var(--content-color), 0.09);
  border-radius: 18px;
}
@media (max-width: 600px) {
  .offcanvas.left-sidebar-offcanvas .offcanvas-body .profile-background {
    padding-block: calc(15px + 10 * (100vw - 320px) / 280);
    border-radius: calc(8px + 10 * (100vw - 320px) / 280);
  }
}
.offcanvas.left-sidebar-offcanvas .offcanvas-body .profile-background .user-profile-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.offcanvas.left-sidebar-offcanvas .offcanvas-body .profile-background .user-profile-content img {
  width: 90px;
  height: 90px;
  border-radius: 100%;
  box-shadow: 0px 1px 10px rgba(var(--title-color), 0.45);
}
@media (max-width: 600px) {
  .offcanvas.left-sidebar-offcanvas .offcanvas-body .profile-background .user-profile-content img {
    width: calc(75px + 15 * (100vw - 320px) / 280);
    height: calc(75px + 15 * (100vw - 320px) / 280);
  }
}
.offcanvas.left-sidebar-offcanvas .offcanvas-body .profile-background .user-profile-content h4 {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .offcanvas.left-sidebar-offcanvas .offcanvas-body .profile-background .user-profile-content h4 {
    font-size: calc(14px + 4 * (100vw - 320px) / 280);
  }
}
.offcanvas.left-sidebar-offcanvas .offcanvas-body .profile-background .user-profile-content a {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  display: block;
}
@media (max-width: 600px) {
  .offcanvas.left-sidebar-offcanvas .offcanvas-body .profile-background .user-profile-content a {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
  }
}
.offcanvas.left-sidebar-offcanvas .offcanvas-body .profile-collection {
  margin-top: 30px;
}
.offcanvas.left-sidebar-offcanvas .offcanvas-body .profile-collection li {
  width: 100%;
}
.offcanvas.left-sidebar-offcanvas .offcanvas-body .profile-collection li + li {
  border-top: 1px solid rgba(var(--content-color), 0.27);
  margin-top: 12px;
  padding-top: 12px;
}
.offcanvas.left-sidebar-offcanvas .offcanvas-body .profile-collection li:hover {
  transition: all 0.3s ease;
}
.offcanvas.left-sidebar-offcanvas .offcanvas-body .profile-collection li .setting-box {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}
.offcanvas.left-sidebar-offcanvas .offcanvas-body .profile-collection li .setting-box .setting-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(var(--content-color), 0.11);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offcanvas.left-sidebar-offcanvas .offcanvas-body .profile-collection li .setting-box .setting-icon .main-icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
}
.offcanvas.left-sidebar-offcanvas .offcanvas-body .profile-collection li .setting-box .setting-content {
  width: calc(100% - 10px - 40px);
}
.offcanvas.left-sidebar-offcanvas .offcanvas-body .profile-collection li .setting-box .setting-content h5 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .offcanvas.left-sidebar-offcanvas .offcanvas-body .profile-collection li .setting-box .setting-content h5 {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.offcanvas.left-sidebar-offcanvas .offcanvas-body .profile-collection li .setting-box .setting-content h6 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.offcanvas.left-sidebar-offcanvas .offcanvas-body .sidebar-btn {
  position: fixed;
  bottom: 0;
  padding: 20px 0;
  width: 100%;
  max-width: 260px;
  background-color: rgba(var(--white), 1);
}
.offcanvas.left-sidebar-offcanvas .offcanvas-body .sidebar-btn a {
  border-radius: 50px;
}
.offcanvas.left-sidebar-offcanvas .offcanvas-body .sidebar-btn a .icon {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 20px;
  margin-right: 3px;
}
body.dark-mode .offcanvas.left-sidebar-offcanvas .offcanvas-body .sidebar-btn a .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
}

/* =============
learn offcanvas 
===============*/
.offcanvas.learn-offcanvas {
  max-width: 280px;
  height: auto;
  max-height: none;
  margin: auto;
  z-index: 7;
  border: none;
  padding: 20px;
  background-color: rgba(var(--white), 1);
}
.offcanvas.learn-offcanvas .offcanvas-header {
  display: block;
  padding: 0;
}
.offcanvas.learn-offcanvas .offcanvas-body {
  padding: 0;
}
.offcanvas.learn-offcanvas .offcanvas-body .learn-sidebar-list {
  padding-top: 25px;
}
.offcanvas.learn-offcanvas .offcanvas-body .learn-sidebar-list li {
  width: 100%;
}
.offcanvas.learn-offcanvas .offcanvas-body .learn-sidebar-list li + li {
  margin-top: 14px;
  border-top: 1px solid rgba(var(--content-color), 0.2);
  padding-top: 14px;
}
@media (max-width: 600px) {
  .offcanvas.learn-offcanvas .offcanvas-body .learn-sidebar-list li + li {
    margin-top: calc(8px + 6 * (100vw - 320px) / 280);
    padding-top: calc(8px + 6 * (100vw - 320px) / 280);
  }
}
.offcanvas.learn-offcanvas .offcanvas-body .learn-sidebar-list li a {
  display: flex;
  align-items: center;
  gap: 18px;
}
.offcanvas.learn-offcanvas .offcanvas-body .learn-sidebar-list li a .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
  background-color: rgba(var(--white), 1);
  border-radius: 100%;
  box-shadow: 2px 3px 6px 0px rgba(var(--black), 0.06);
}
.offcanvas.learn-offcanvas .offcanvas-body .learn-sidebar-list li a .rotate {
  transform: rotate(180deg);
}
.offcanvas.learn-offcanvas .offcanvas-body .learn-sidebar-list li a h5 {
  font-size: 17px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}

/*=================
Bottom offcanvas 
===================*/
.offcanvas.learn-bottom-offcanvas {
  max-width: 600px;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  height: auto;
  max-height: none;
  margin: auto;
  z-index: 7;
  border: none;
}
.offcanvas.learn-bottom-offcanvas .offcanvas-body {
  overflow: hidden;
}
.offcanvas.learn-bottom-offcanvas .learn-header {
  justify-content: center;
  border-bottom: 1px solid rgba(var(--content-color), 0.26);
}
.offcanvas.learn-bottom-offcanvas .learn-header h5 {
  font-size: 20px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.offcanvas.learn-bottom-offcanvas .download-image-list {
  margin-top: 18px;
}
.offcanvas.learn-bottom-offcanvas .download-image-list li {
  width: 100%;
  border: 1px solid rgba(var(--content-color), 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 16px;
}
.offcanvas.learn-bottom-offcanvas .download-image-list li + li {
  margin-top: 20px;
}
.offcanvas.learn-bottom-offcanvas .download-image-list li img {
  width: 24px;
  height: 24px;
}
.offcanvas.learn-bottom-offcanvas .download-image-list li .download-img-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 24px - 10px);
}
.offcanvas.learn-bottom-offcanvas .download-image-list li .download-img-content h4 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.offcanvas.learn-bottom-offcanvas .download-image-list li .download-img-content input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(var(--theme-color), 1);
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  position: relative;
}
.offcanvas.learn-bottom-offcanvas .download-image-list li .download-img-content input[type=radio]::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(var(--theme-color), 1);
  position: absolute;
  top: 2px;
  left: 2px;
  display: none;
}
.offcanvas.learn-bottom-offcanvas .download-image-list li .download-img-content input[type=radio]:checked::before {
  display: block;
}

/* ==================
Cab booking offcanvas
======================*/
[dir=rtl] .offcanvas.offcanvas-start {
  left: unset;
  right: 0;
  transform: translateX(100%);
}
[dir=rtl] .offcanvas.offcanvas-start.show:not(.hiding), [dir=rtl] .offcanvas.offcanvas-start.showing {
  transform: none;
}
.offcanvas.cab-offcanvas {
  max-width: 291px;
  width: 100%;
  height: auto;
  max-height: none;
  margin: auto;
  z-index: 7;
  border: none;
  padding: 20px;
  background-color: rgba(var(--white), 1);
}
.offcanvas.cab-offcanvas .cab-sidebar-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
}
.offcanvas.cab-offcanvas .cab-sidebar-header img {
  width: 68px;
  height: 68px;
  border-radius: 100%;
}
.offcanvas.cab-offcanvas .cab-sidebar-header h5 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title2-color), 1);
}
.offcanvas.cab-offcanvas .cab-sidebar-header h6 {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.offcanvas.cab-offcanvas .cab-sidebar-body {
  padding: 0;
}
.offcanvas.cab-offcanvas .cab-sidebar-body .cab-sidebar-list {
  padding-top: 33px;
}
.offcanvas.cab-offcanvas .cab-sidebar-body .cab-sidebar-list li {
  width: 100%;
}
.offcanvas.cab-offcanvas .cab-sidebar-body .cab-sidebar-list li + li {
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid rgba(var(--content-color), 0.2);
}
@media (max-width: 600px) {
  .offcanvas.cab-offcanvas .cab-sidebar-body .cab-sidebar-list li + li {
    padding-top: calc(14px + 8 * (100vw - 320px) / 280);
    margin-top: calc(12px + 0 * (100vw - 320px) / 280);
  }
}
.offcanvas.cab-offcanvas .cab-sidebar-body .cab-sidebar-list li a {
  display: flex;
  align-items: center;
  gap: 14px;
}
.offcanvas.cab-offcanvas .cab-sidebar-body .cab-sidebar-list li a .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 24px;
}
.offcanvas.cab-offcanvas .cab-sidebar-body .cab-sidebar-list li a h5 {
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}

/* =============
Fitness CSS 
=============*/
.offcanvas.fitness-theme {
  background-color: rgba(var(--body-color), 1);
}
.offcanvas.fitness-theme .btn-close {
  background-color: rgba(var(--white), 1);
  opacity: 1;
}
.offcanvas.fitness-theme .form-group input {
  background-color: rgba(var(--bg-color), 1);
}

/* ==========
furniture CSS 
==============*/
.offcanvas.furniture-theme-offcanvas {
  max-width: 600px;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  height: auto;
  max-height: none;
  margin: auto;
  z-index: 7;
  border: none;
  background-color: rgba(var(--white), 1);
}
.offcanvas.furniture-theme-offcanvas .offcanvas-body {
  overflow: hidden;
}
.offcanvas.furniture-theme-offcanvas .filter-wrapper {
  padding-bottom: 60px;
}
.offcanvas.furniture-theme-offcanvas .filter-right-box {
  padding-top: 60px;
}
.offcanvas.furniture-theme-offcanvas .filter-right-box label {
  width: 100%;
  display: flex;
  gap: 15px;
}
.offcanvas.furniture-theme-offcanvas .filter-right-box label span {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  color: rgba(var(--title-color), 1);
  font-size: 14px;
  font-weight: 400;
}
.offcanvas.furniture-theme-offcanvas .filter-right-box label + label {
  margin-top: 25px;
}
@media (max-width: 600px) {
  .offcanvas.furniture-theme-offcanvas .filter-right-box label + label {
    margin-top: calc(15px + 10 * (100vw - 320px) / 280);
  }
}
.offcanvas.furniture-theme-offcanvas .del-address-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.offcanvas.furniture-theme-offcanvas .del-address-section .delete-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--error-color), 0.2);
  width: 50px;
  height: 50px;
  border-radius: 100%;
}
.offcanvas.furniture-theme-offcanvas .del-address-section .delete-icon .icon {
  --Iconsax-Size: 24px;
  --Iconsax-Color: rgba(var(--error-color), 1);
}
.offcanvas.furniture-theme-offcanvas .del-address-section .del-content {
  margin-top: 5px;
  text-align: center;
}
.offcanvas.furniture-theme-offcanvas .del-address-section .del-content h3 {
  font-size: 18px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.offcanvas.furniture-theme-offcanvas .del-address-section .del-content p {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.offcanvas.furniture-theme-offcanvas .del-address-section .del-content .del-buttons {
  border: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.offcanvas.furniture-theme-offcanvas .del-address-section .del-content .del-buttons .del-1 {
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--content-color), 0.07);
}
.offcanvas.furniture-theme-offcanvas .del-address-section .del-content .del-buttons .del-1:hover {
  background-color: rgba(var(--content-color), 0.07);
}
.offcanvas.furniture-theme-offcanvas .del-address-section .del-content .del-buttons .del-2 {
  background-color: rgba(var(--error-color), 1);
  color: rgba(var(--white), 1);
}
.offcanvas.furniture-theme-offcanvas .del-address-section .del-content .del-buttons .del-2:hover {
  background-color: rgba(var(--error-color), 1);
}
.offcanvas.furniture-start {
  background-color: rgba(var(--white), 1);
  max-width: 285px;
}
.offcanvas.furniture-start .bottom-sidebar {
  position: fixed;
  bottom: 0;
  padding: 20px 0;
  width: 100%;
  max-width: 249px;
  background-color: rgba(var(--white), 1);
}
.offcanvas.furniture-start .bottom-sidebar .icon {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 24px;
  margin-left: 5px;
}

/* =====================
Jewellery CSS 
=======================*/
.offcanvas.gold-theme-offcanvas {
  max-width: 600px;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  height: auto;
  max-height: none;
  margin: auto;
  z-index: 7;
  border: none;
  background-color: rgba(var(--white), 1);
}
body.dark-mode .offcanvas.gold-theme-offcanvas {
  background-color: rgba(var(--bg-color), 1);
}
.offcanvas.gold-theme-offcanvas .offcanvas-header {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(var(--content-color), 0.2);
}
.offcanvas.gold-theme-offcanvas .offcanvas-header h5 {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.offcanvas.gold-theme-offcanvas .offcanvas-body {
  padding-top: 10px;
}
.offcanvas.gold-theme-offcanvas .offcanvas-body .gold-title h3 {
  font-weight: 500;
}
.offcanvas.gold-theme-offcanvas .offcanvas-body .size-selector {
  margin-top: 15px;
}
.offcanvas.gold-theme-offcanvas .offcanvas-body .price-selector {
  margin-top: 20px;
}

/* ===========================
salon Offcanvas
==========================*/
.offcanvas.salon-theme {
  max-width: 600px;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  height: auto;
  max-height: none;
  margin: auto;
  z-index: 7;
  border: none;
  background-color: rgba(var(--white), 1);
}
.offcanvas.salon-theme .offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.offcanvas.salon-theme .offcanvas-header .back {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 22px;
}
.offcanvas.salon-theme .offcanvas-header h5 {
  font-size: 20px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.offcanvas.salon-theme .offcanvas-header .btn-close {
  font-size: 10px;
  border: 1px solid rgba(var(--title-color), 1);
  opacity: 1;
  border-radius: 100%;
  margin: 0;
  box-shadow: none;
}
.dark-mode .offcanvas.salon-theme .offcanvas-header .btn-close {
  filter: brightness(0) invert(1);
}
.offcanvas.salon-theme .theme-filter-btn {
  display: flex;
  align-items: center;
  gap: 19px;
  margin-top: 43px;
}
.offcanvas.salon-theme .theme-filter-btn .fill-btn {
  width: 100%;
  background-color: rgba(var(--content-color), 0.07);
  color: rgba(var(--theme-color), 1);
  font-size: 16px;
  font-weight: 700;
  color: rgba(var(--theme-color), 1);
  padding-block: 13px;
  border-radius: 50px;
}

/* ================
Movie Offcanvas
================= */
.offcanvas.movie-offcanvas {
  max-width: 600px;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  height: auto;
  max-height: none;
  margin: auto;
  z-index: 7;
  border: none;
  background: rgba(var(--body-color), 1);
  overflow: hidden;
}
.offcanvas.movie-offcanvas::before, .offcanvas.movie-offcanvas::after {
  content: "";
  position: absolute;
  width: 117px;
  height: 176px;
  filter: blur(145px);
  border-radius: 100%;
  z-index: -1;
  animation: floatGlow 6s ease-in-out infinite alternate;
}
.offcanvas.movie-offcanvas::before {
  top: 4px;
  right: 50px;
  background-color: #2c5cd8;
  animation-delay: 0s;
}
.offcanvas.movie-offcanvas::after {
  top: 4px;
  left: -17px;
  background-color: rgb(133, 41, 109);
  animation-delay: 2s;
}
.offcanvas.movie-offcanvas .link-icon {
  background: var(--theme-color);
}
.offcanvas.movie-offcanvas .offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.offcanvas.movie-offcanvas .offcanvas-header h5 {
  font-size: 20px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.offcanvas.movie-offcanvas .offcanvas-header .back-icon {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 22px;
}
.offcanvas.movie-offcanvas .offcanvas-header .close-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(var(--white), 1);
  width: 25px;
  height: 25px;
  border-radius: 100%;
  margin: 0;
  opacity: 1;
  background: transparent;
}
.offcanvas.movie-offcanvas .offcanvas-header .close-icon .icon {
  transform: rotate(45deg);
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 20px;
}
.offcanvas.movie-offcanvas .download-list li {
  background-color: rgba(var(--white), 0.06);
  display: flex;
  align-items: center;
  gap: 17px;
  border-radius: 6px;
  padding: 8px 14px;
}
.offcanvas.movie-offcanvas .download-list li + li {
  margin-top: 13px;
}
.offcanvas.movie-offcanvas .download-list li .play-btn {
  background: var(--button-color);
  width: 28px;
  height: 28px;
  border-radius: 100%;
  position: relative;
}
.offcanvas.movie-offcanvas .download-list li .play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid rgba(var(--body-color), 1);
}
.offcanvas.movie-offcanvas .download-list li .download-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 28px - 6px);
}
.offcanvas.movie-offcanvas .download-list li .download-content h4 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.offcanvas.movie-offcanvas .download-list li .download-content h5 {
  margin-top: 2px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.offcanvas.movie-offcanvas .download-list li .download-content h5 span {
  font-weight: 500;
  margin-left: 2px;
  color: rgba(var(--content-color), 0.6);
}
.offcanvas.movie-offcanvas .download-list li .download-content .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
}
.offcanvas.movie-offcanvas .download-list li .download-content .star-img {
  position: relative;
}
.offcanvas.movie-offcanvas .download-list li .download-content .star-img img {
  width: 35px;
  height: 20px;
}
.offcanvas.movie-offcanvas .download-list li .download-content .star-img::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  background-color: rgba(var(--rating), 1);
  filter: blur(13px);
  top: 0px;
  left: 0;
}
.offcanvas.movie-offcanvas .genre-box + .genre-box {
  margin-top: 20px;
}
.offcanvas.movie-offcanvas .genre-box .genre-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.offcanvas.movie-offcanvas .genre-box .genre-container label {
  cursor: pointer;
}
.offcanvas.movie-offcanvas .genre-box .genre-container label input {
  display: none;
}
.offcanvas.movie-offcanvas .genre-box .genre-container label span {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 18px;
  border-radius: 50px;
  background-color: rgba(var(--white), 0.06);
  color: rgba(var(--content-color), 1);
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
}
@media (max-width: 600px) {
  .offcanvas.movie-offcanvas .genre-box .genre-container label span {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.offcanvas.movie-offcanvas .genre-box .genre-container input:checked + span {
  background: var(--button-color);
  color: rgba(var(--white), 1);
}
.offcanvas .complete-content {
  padding-top: 47px;
  text-align: center;
}
.offcanvas .complete-content img {
  height: 143px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
}
.offcanvas .complete-content h4 {
  font-size: 20px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.offcanvas .complete-content p {
  margin-top: 3px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  padding-bottom: 51px;
}

.offcanvas.movie-sidebar {
  width: 300px;
  background: rgba(var(--body-color), 1);
}
.offcanvas.movie-sidebar .profile-part {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-bottom: 1px solid rgba(var(--content-color), 1);
  padding-bottom: 21px;
}
.offcanvas.movie-sidebar .profile-part img {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
}
.offcanvas.movie-sidebar .profile-part h3 {
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--white), 1);
  margin-top: 10px;
}
.offcanvas.movie-sidebar .profile-part a {
  margin-top: 2px;
  font-size: 14px;
  font-weight: 300;
  color: rgba(var(--title-color), 0.69);
}
.offcanvas.movie-sidebar .profile-list {
  padding: 25px 10px;
}
.offcanvas.movie-sidebar .profile-list li {
  width: 100%;
}
.offcanvas.movie-sidebar .profile-list li + li {
  margin-top: 25px;
}
.offcanvas.movie-sidebar .profile-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.offcanvas.movie-sidebar .profile-list li a .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 40px;
  background-color: rgba(var(--white), 0.06);
  border-radius: 6px;
}
.offcanvas.movie-sidebar .profile-list li a .icon .main-icon {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 20px;
}
.offcanvas.movie-sidebar .profile-list li a .setting-content {
  width: 100%;
}
.offcanvas.movie-sidebar .profile-list li a .setting-content h5 {
  font-size: 15px;
  font-weight: 400;
  color: rgba(var(--white), 1);
}
.offcanvas.movie-sidebar .profile-list li a .setting-content p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  margin-top: 2px;
}
.offcanvas.movie-sidebar .bottom-sidebar {
  position: fixed;
  bottom: 15px;
  width: 100%;
  max-width: 266px;
}
.offcanvas.movie-sidebar .bottom-sidebar .movie-btn .sidebar-icon {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 20px;
  margin-right: 5px;
}

/*=========================
 3.5 Onboarding CSS
===========================*/
/*<================== ecommerce onboarding =================>*/
.ecommerce-onboarding-section {
  position: relative;
  overflow: hidden;
}
.ecommerce-onboarding-section .ecommerce-onboarding-title {
  font-family: "Anton", serif;
  font-size: 42px;
  text-transform: capitalize;
  font-weight: 500;
  letter-spacing: 2px;
  background: url(58301172741e562f8cb5.png) center top/cover no-repeat;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  text-align: center;
  background-color: rgba(var(--title-color), 1);
  position: absolute;
  top: 25px;
  right: 2px;
  z-index: 1;
}
@media (max-width: 400px) {
  .ecommerce-onboarding-section .ecommerce-onboarding-title {
    max-width: 80%;
  }
}
@media (max-width: 375px) {
  .ecommerce-onboarding-section .ecommerce-onboarding-title {
    max-width: 96%;
  }
}
.ecommerce-onboarding-section .onboarding-image {
  position: relative;
  height: 548px;
  z-index: 0;
}
.ecommerce-onboarding-section .onboarding-image .line-img {
  width: 779px;
  height: 423px;
  transform: rotate(176deg) scale(1.1);
  margin-top: 47px;
}
body.dark-mode .ecommerce-onboarding-section .onboarding-image .line-img {
  filter: brightness(0.5);
}
.ecommerce-onboarding-section .onboarding-image > div {
  position: absolute;
}
.ecommerce-onboarding-section .onboarding-image .image-1 {
  overflow: hidden;
  top: 95px;
  left: 35px;
  z-index: 0;
  text-align: center;
}
@media (max-width: 600px) {
  .ecommerce-onboarding-section .onboarding-image .image-1 {
    top: calc(70px + 25 * (100vw - 320px) / 280);
    left: calc(15px + 20 * (100vw - 320px) / 280);
  }
}
.ecommerce-onboarding-section .onboarding-image .image-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  z-index: -1;
  left: 0;
  width: 100%;
  height: 187px;
  background-color: #DFDFDF;
  border-radius: 100px 100px 0 0;
}
.ecommerce-onboarding-section .onboarding-image .image-1 img {
  width: 111px;
  height: 248px;
  margin-inline: 14px;
  margin-bottom: -10px;
}
@media (max-width: 600px) {
  .ecommerce-onboarding-section .onboarding-image .image-1 img {
    margin-inline: calc(10px + 4 * (100vw - 320px) / 280);
  }
}
.ecommerce-onboarding-section .onboarding-image .image-2 {
  bottom: 0;
  right: -25px;
  margin-bottom: -8px;
  z-index: 0;
}
.ecommerce-onboarding-section .onboarding-image .image-2::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -150px;
  width: 338px;
  height: 308px;
  border-radius: 500px 500px 0 0;
  background-color: #526866;
  z-index: -1;
}
@media (max-width: 600px) {
  .ecommerce-onboarding-section .onboarding-image .image-2::before {
    right: calc(-121px + -29 * (100vw - 320px) / 280);
    width: calc(290px + 48 * (100vw - 320px) / 280);
  }
}
.ecommerce-onboarding-section .onboarding-image .image-2 img {
  width: 200px;
}
@media (max-width: 600px) {
  .ecommerce-onboarding-section .onboarding-image .image-2 img {
    width: calc(182px + 18 * (100vw - 320px) / 280);
  }
}
.ecommerce-onboarding-section .onboarding-image .image-3 {
  width: 125px;
  height: 125px;
  bottom: 33px;
  left: 41px;
}
@media (max-width: 600px) {
  .ecommerce-onboarding-section .onboarding-image .image-3 {
    width: calc(102px + 23 * (100vw - 320px) / 280);
    height: calc(102px + 23 * (100vw - 320px) / 280);
    bottom: calc(23px + 10 * (100vw - 320px) / 280);
    left: calc(15px + 26 * (100vw - 320px) / 280);
  }
}
.ecommerce-onboarding-section .onboarding-content-box {
  position: relative;
  text-align: center;
  padding-block: 30px;
  background-color: rgba(var(--white), 1);
  z-index: 1;
  box-shadow: 0px -18px 34px 0px rgba(82, 104, 102, 0.16);
}
body.dark-mode .ecommerce-onboarding-section .onboarding-content-box {
  background-color: rgb(29, 38, 37);
  box-shadow: 0 -18px 34px 0 rgba(var(--theme-color), 0.16);
}
@media (max-width: 600px) {
  .ecommerce-onboarding-section .onboarding-content-box {
    padding-block: calc(20px + 10 * (100vw - 320px) / 280);
  }
}
.ecommerce-onboarding-section .onboarding-content-box h2 {
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .ecommerce-onboarding-section .onboarding-content-box h2 {
    font-size: calc(20px + 2 * (100vw - 320px) / 280);
  }
}
.ecommerce-onboarding-section .onboarding-content-box h5 {
  font-weight: 400;
  line-height: 1.3;
  margin-top: 10px;
  padding-inline: 20px;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .ecommerce-onboarding-section .onboarding-content-box h5 {
    padding-inline: calc(10px + 10 * (100vw - 320px) / 280);
  }
}
.ecommerce-onboarding-section .onboarding-content-box h6 {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(var(--content-color), 1);
}
.ecommerce-onboarding-section .onboarding-content-box h6 a {
  color: rgba(var(--content-color), 1);
  text-decoration: underline;
}
.ecommerce-onboarding-section .onboarding-content-box .ecommerce-onboarding-btn {
  margin-top: 40px;
  font-weight: 600;
  color: rgba(var(--white), 1);
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .ecommerce-onboarding-section .onboarding-content-box .ecommerce-onboarding-btn {
    margin-top: calc(20px + 20 * (100vw - 320px) / 280);
  }
}
.ecommerce-onboarding-section .onboarding-content-box span {
  text-align: center;
  margin-top: 15px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
.ecommerce-onboarding-section .onboarding-content-box span a {
  font-weight: 600;
  text-decoration: underline;
  color: rgba(var(--theme-color), 1);
}

/*<================== plant onboarding =================>*/
.plant-onboarding-section {
  padding-top: 0;
  height: 100vh;
  width: 100%;
  background: linear-gradient(180deg, #48927a 0%, #0d9769 100%) !important;
}
.plant-onboarding-section .onboarding-image {
  position: relative;
  padding-top: 45px;
  text-align: center;
  z-index: 1;
}
.plant-onboarding-section .onboarding-image .img {
  height: 440px;
}
@media (max-width: 600px) {
  .plant-onboarding-section .onboarding-image .img {
    height: calc(400px + 40 * (100vw - 320px) / 280);
  }
}
.plant-onboarding-section .onboarding-content-box {
  position: relative;
  padding-top: 45px;
  text-align: center;
  z-index: 1;
}
.plant-onboarding-section .onboarding-content-box h2 {
  position: relative;
  width: 75%;
  margin: auto;
  padding-bottom: 15px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
  color: rgba(var(--white), 1);
}
.plant-onboarding-section .onboarding-content-box h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  background-color: rgba(var(--white), 0.3);
  height: 2px;
  border-radius: 100px;
}
.plant-onboarding-section .onboarding-content-box h3 {
  padding-top: 15px;
  padding-inline: 35px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(var(--white), 1);
}
.plant-onboarding-section .onboarding-content-box .arrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 15px auto;
  width: 56px;
  height: 56px;
  background-color: rgba(var(--white), 1);
  border-radius: 100%;
  --Iconsax-Size: 24px;
  --Iconsax-Color: rgba(var(--theme-color), 1);
  z-index: 1;
}
@media (max-width: 600px) {
  .plant-onboarding-section .onboarding-content-box .arrow-icon {
    width: calc(46px + 10 * (100vw - 320px) / 280);
    height: calc(46px + 10 * (100vw - 320px) / 280);
  }
}
.plant-onboarding-section .rounded-circle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -114px;
  z-index: 0;
}
@media (max-width: 600px) {
  .plant-onboarding-section .rounded-circle {
    bottom: calc(-4px + -110 * (100vw - 320px) / 280);
  }
}

/*<================== grocery onboarding =================>*/
.grocery-onboarding-section {
  padding: 0;
}
.grocery-onboarding-section .onboarding-image {
  text-align: center;
}
.grocery-onboarding-section .onboarding-image .img {
  position: relative;
  z-index: 1;
  bottom: -24px;
}
.grocery-onboarding-section .onboarding-content-box-wrapper {
  background-image: url(e2828e61c873ac3301da.png);
  background-repeat: no-repeat;
  width: 100%;
  height: 466px;
  max-width: 600px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
.grocery-onboarding-section .onboarding-content-box-wrapper .onboarding-content-box {
  text-align: center;
}
.grocery-onboarding-section .onboarding-content-box-wrapper .onboarding-content-box .content-box-bg {
  z-index: 2;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -48px;
}
@media (max-width: 362px) {
  .grocery-onboarding-section .onboarding-content-box-wrapper .onboarding-content-box .content-box-bg {
    bottom: -46px;
  }
}
@media (max-width: 348px) {
  .grocery-onboarding-section .onboarding-content-box-wrapper .onboarding-content-box .content-box-bg {
    bottom: -44px;
  }
}
@media (max-width: 334px) {
  .grocery-onboarding-section .onboarding-content-box-wrapper .onboarding-content-box .content-box-bg {
    bottom: -42px;
  }
}
@media (max-width: 328px) {
  .grocery-onboarding-section .onboarding-content-box-wrapper .onboarding-content-box .content-box-bg {
    bottom: -40px;
  }
}
.grocery-onboarding-section .onboarding-content-box-wrapper .onboarding-content-box .box-content {
  position: absolute;
  bottom: 100px;
  width: calc(100% - 30px);
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(var(--white), 1);
  padding: 52px 16px;
  border-radius: 34px;
}
.grocery-onboarding-section .onboarding-content-box-wrapper .onboarding-content-box .box-content .squer-box {
  background-color: rgba(var(--white), 1);
  width: 105px;
  height: 105px;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  border-radius: 100%;
  bottom: -53px;
}
.grocery-onboarding-section .onboarding-content-box-wrapper .onboarding-content-box .box-content .squer-box::before {
  content: "";
  position: absolute;
  top: calc(50% + 17px);
  right: -72px;
  transform: translateY(-50%) rotate(4deg);
  height: 39px;
  width: 74px;
  background-color: rgba(var(--theme-color), 1);
  border-radius: 10px;
}
.grocery-onboarding-section .onboarding-content-box-wrapper .onboarding-content-box .box-content .squer-box::after {
  content: "";
  position: absolute;
  top: calc(50% + 17px);
  left: -72px;
  transform: translateY(-50%) rotate(-4deg);
  height: 39px;
  width: 74px;
  background-color: #41a7a7;
  border-radius: 10px;
}
.grocery-onboarding-section .onboarding-content-box-wrapper .onboarding-content-box .box-content h2 {
  font-weight: 800;
  font-size: 20px;
  color: rgba(var(--title-color), 1);
  text-transform: capitalize;
}
body.dark-mode .grocery-onboarding-section .onboarding-content-box-wrapper .onboarding-content-box .box-content h2 {
  color: #313131;
}
.grocery-onboarding-section .onboarding-content-box-wrapper .onboarding-content-box .box-content h3 {
  margin-top: 30px;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.3;
  color: rgba(var(--content-color), 1);
}
.grocery-onboarding-section .onboarding-content-box-wrapper .onboarding-content-box .box-content .arrow-icon {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--theme-color), 1);
  border-radius: 100%;
  --Iconsax-Size: 24px;
  --Iconsax-Color: rgba(var(--white), 1);
  z-index: 3;
}
@media (max-width: 600px) {
  .grocery-onboarding-section .onboarding-content-box-wrapper .onboarding-content-box .box-content .arrow-icon {
    width: calc(46px + 10 * (100vw - 320px) / 280);
    height: calc(46px + 10 * (100vw - 320px) / 280);
    bottom: calc(-22px + -6 * (100vw - 320px) / 280);
  }
}

/*<================== pet onboarding =================>*/
.pet-onboarding-section {
  padding: 0;
  position: relative;
  height: 100%;
}
.pet-onboarding-section .stroke-text {
  position: absolute;
  top: 10px;
  left: 15px;
  z-index: 1;
}
.pet-onboarding-section .stroke-text h1 {
  font-size: 64px;
  font-weight: 800;
  background: linear-gradient(to bottom, rgba(var(--white), 1) 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-text-stroke-width: 1.17px;
  -webkit-text-stroke-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  color: rgba(var(--theme-color), 1);
}
.pet-onboarding-section .stroke-text img {
  position: absolute;
  top: -10px;
  right: -81px;
}
@media (max-width: 600px) {
  .pet-onboarding-section .stroke-text img {
    right: calc(-30px + -51 * (100vw - 320px) / 1600);
  }
}
.pet-onboarding-section .image-part {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: calc(100vh - 195px);
  overflow: hidden;
  background-color: transparent;
  z-index: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media (max-width: 375px) {
  .pet-onboarding-section .image-part {
    height: calc(100vh - 214px);
  }
}
.pet-onboarding-section .image-part .shape-effect {
  width: 944px;
  height: 100vh;
  border-radius: 100%;
  background-color: rgba(var(--theme-color), 1);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.pet-onboarding-section .image-part .shape-effect img {
  margin-bottom: -90px;
  width: 62%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 375px) {
  .pet-onboarding-section .image-part .shape-effect img {
    width: calc(50% + 12 * (100vw - 320px) / 1600);
  }
}
.pet-onboarding-section .onboarding-content-box-wrapper .box-content {
  text-align: center;
  padding-top: 25px;
  clip-path: circle(100% at 50% 0);
}
.pet-onboarding-section .onboarding-content-box-wrapper .box-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .pet-onboarding-section .onboarding-content-box-wrapper .box-content h2 {
    font-size: calc(20px + 2 * (100vw - 320px) / 280);
  }
}
.pet-onboarding-section .onboarding-content-box-wrapper .box-content h5 {
  margin-top: 6px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(var(--content-color), 1);
}
.pet-onboarding-section .onboarding-content-box-wrapper .box-content .pet-btn {
  margin-top: 20px;
}
.pet-onboarding-section .onboarding-content-box-wrapper .slide-drag-part {
  text-align: center;
  height: 100%;
  display: inline-block;
  width: 100%;
  margin-top: 35px;
}
.pet-onboarding-section .onboarding-content-box-wrapper .slide-drag-part .swipe-text {
  margin-bottom: 6px;
  font-weight: 400;
  font-size: 14px;
  color: rgba(var(--title-color), 1);
}

/*=======================  Food Onboarding CSS ===============*/
.food-onboarding {
  background: rgba(var(--dark-bg), 1);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.dark-mode .food-onboarding {
  background-color: rgba(var(--second-color), 1);
}
.food-onboarding .bg-blur {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 250px;
  background-color: rgba(var(--theme-color), 1);
  border-radius: 100%;
  filter: blur(165px);
}
.food-onboarding .onboarding-image .round-animated {
  position: absolute;
  left: 32px;
  animation: round 2s linear infinite;
}
.food-onboarding .onboarding-image .bonus-animated {
  position: absolute;
  top: 10%;
  right: 12%;
  animation: bonus 2s ease-in-out infinite alternate;
}
.food-onboarding .onboarding-image .food-animated {
  position: absolute;
  top: 26rem;
  left: 60px;
  animation: bonus 2s ease-in-out infinite alternate;
  animation-delay: 1s;
}
@media (max-width: 600px) {
  .food-onboarding .onboarding-image .food-animated {
    left: calc(10px + 50 * (100vw - 320px) / 280);
  }
}
.food-onboarding .onboarding-image .chilli-animated {
  position: absolute;
  width: 82px;
  bottom: 14rem;
  right: 18px;
  z-index: -1;
  animation: bonus 2s ease-in-out infinite alternate;
}
@media (max-width: 600px) {
  .food-onboarding .onboarding-image .chilli-animated {
    bottom: calc(11.2rem + 2.8 * (100vw - 320px) / 280);
    right: calc(-11px + 29 * (100vw - 320px) / 280);
    width: calc(60px + 22 * (100vw - 320px) / 280);
  }
}
.food-onboarding .onboarding-image .top-open-box {
  position: relative;
}
.food-onboarding .onboarding-image .top-open-box .open-box {
  text-align: center;
}
.food-onboarding .onboarding-image .top-open-box .open-box svg {
  fill: transparent;
  width: 120px;
  height: 100px;
}
.food-onboarding .onboarding-image .top-open-box .onboarding-round {
  width: 10px;
  height: 10px;
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translateX(-50%) translateY(17px);
  background-color: rgba(var(--theme-color), 0.17);
  outline: 2px solid rgba(var(--theme-color), 0.17);
  outline-offset: 3px;
  border-radius: 100%;
}
.food-onboarding .onboarding-image .top-open-box::after {
  content: "";
  position: absolute;
  top: -13px;
  margin-left: -6px;
  transform: translateY(-50%);
  left: 50%;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 18px solid rgba(var(--theme-color), 0.17);
}
.food-onboarding .onboarding-image .open {
  position: absolute;
  right: 41.1%;
  margin-top: 43px;
  padding-top: 25px;
  animation: left-to-right 8s infinite alternate;
}
.food-onboarding .onboarding-image .open h3 {
  position: relative;
  display: inline-block;
  border: 2px solid rgba(var(--theme-color), 0.17);
  border-radius: 6px;
  padding: 10px 40px;
  color: rgba(var(--theme-color), 0.15);
  font-family: "Righteous", sans-serif;
  font-size: 22px;
  font-weight: 400;
  rotate: 10deg;
}
.food-onboarding .onboarding-image .open::before {
  content: "";
  position: absolute;
  bottom: -18px;
  width: 100%;
  height: 62px;
  border-left: 2px solid rgba(var(--theme-color), 0.17);
  rotate: 63deg;
  left: 11%;
}
.food-onboarding .onboarding-image .open::after {
  content: "";
  position: absolute;
  bottom: -11px;
  width: 100%;
  height: 62px;
  border-right: 2px solid rgba(var(--theme-color), 0.17);
  rotate: -41deg;
  right: 13%;
}
.food-onboarding .onboarding-contant {
  padding-top: 11px;
}
.food-onboarding .onboarding-contant h1 {
  color: rgba(var(--white), 1);
  font-family: "Righteous", sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 46px;
}
@media (max-width: 600px) {
  .food-onboarding .onboarding-contant h1 {
    font-size: calc(32px + 4 * (100vw - 320px) / 280);
  }
}
.food-onboarding .onboarding-contant h1 span {
  padding-left: 24px;
}
.food-onboarding .food-button {
  width: 100%;
  margin-top: 64px;
}
@media (max-width: 600px) {
  .food-onboarding .food-button {
    margin-top: calc(42px + 22 * (100vw - 320px) / 280);
  }
}
.food-onboarding .food-button .food-send-button {
  padding: 16px;
  width: 100%;
  display: block;
  background-color: rgba(var(--theme-color), 1);
  border-radius: 8px;
  color: #222;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}
.food-onboarding .food-button .skip {
  font-weight: 600;
  font-size: 18px;
  color: rgba(var(--white), 1);
  display: block;
  text-align: center;
  margin-top: 23px;
}
.food-onboarding .onboarding-main-image {
  width: 234px;
  margin-left: auto;
  margin-right: 166px;
  margin-top: 105px;
  position: relative;
}
@media (max-width: 600px) {
  .food-onboarding .onboarding-main-image {
    width: calc(208px + 26 * (100vw - 320px) / 280);
    margin-right: calc(29px + 137 * (100vw - 320px) / 280);
    margin-top: calc(63px + 42 * (100vw - 320px) / 280);
  }
}
.food-onboarding .onboarding-main-image svg {
  width: 46px;
  fill: transparent;
  stroke: rgba(var(--white), 1);
  position: absolute;
  top: -132px;
  right: 85px;
}
@media (max-width: 423px) {
  .food-onboarding .onboarding-main-image svg {
    width: 35px;
    top: -118px;
  }
}
@media (max-width: 328px) {
  .food-onboarding .onboarding-main-image svg {
    width: 28px;
    top: -109px;
    right: 121px;
  }
}
.food-onboarding .onboarding-main-image .food-contant-image {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}
.food-onboarding .onboarding-main-image .food-contant-line {
  min-width: 234px;
  animation: round 20s linear infinite;
  min-height: 234px;
}
@media (max-width: 600px) {
  .food-onboarding .onboarding-main-image .food-contant-line {
    min-width: calc(220px + 14 * (100vw - 320px) / 280);
    min-height: calc(220px + 14 * (100vw - 320px) / 280);
    margin-left: calc(-5px + 5 * (100vw - 320px) / 280);
  }
}

.onboarding-main-image {
  width: 234px;
  margin-inline: auto 23%;
  margin-top: 25%;
  position: relative;
}
@media (max-width: 350px) {
  .onboarding-main-image {
    margin-inline: auto 15%;
    margin-top: 85%;
  }
}
.onboarding-main-image .food-contant-image {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}
.onboarding-main-image .food-contant-line {
  min-width: 234px;
  animation: round 20s linear infinite;
  min-height: 234px;
}

/* ====================== chatting page CSS ====================*/
.main-onboarding-wrapper {
  background-color: rgba(var(--secondary), 1);
  min-height: 100vh;
  position: relative;
}
.main-onboarding-wrapper .onboarding-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.main-onboarding-wrapper .onboarding-image img {
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.main-onboarding-wrapper .onboarding-image .onboarding-chat-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
}
.main-onboarding-wrapper .bottom-onboarding-box {
  position: fixed;
  left: 50%;
  transform: translate(-50%);
  width: calc(100% - 30px);
  bottom: 15px;
  max-width: 570px;
}
.main-onboarding-wrapper .bottom-onboarding-box .onboarding-container {
  background: var(--theme-color);
  color: rgba(var(--white), 1);
  text-align: center;
  border-radius: 30px;
  padding-top: 30px;
  padding-bottom: 45px;
}
body.dark-mode .main-onboarding-wrapper .bottom-onboarding-box .onboarding-container h2,
body.dark-mode .main-onboarding-wrapper .bottom-onboarding-box .onboarding-container p {
  color: rgba(var(--title-color), 1);
}
.main-onboarding-wrapper .bottom-onboarding-box .onboarding-container h2 {
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 600px) {
  .main-onboarding-wrapper .bottom-onboarding-box .onboarding-container h2 {
    font-size: calc(18px + 2 * (100vw - 320px) / 280);
  }
}
.main-onboarding-wrapper .bottom-onboarding-box .onboarding-container .onboarding-line-contant {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin-block: 10px;
}
.main-onboarding-wrapper .bottom-onboarding-box .onboarding-container .onboarding-line-contant img {
  width: 8px;
  height: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background-color: rgba(var(--white), 1);
}
.main-onboarding-wrapper .bottom-onboarding-box .onboarding-container .onboarding-line-contant::before, .main-onboarding-wrapper .bottom-onboarding-box .onboarding-container .onboarding-line-contant::after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: rgba(var(--white), 1);
  border-radius: 100px;
}
.main-onboarding-wrapper .bottom-onboarding-box .onboarding-container p {
  font-size: 14px;
  font-weight: 400;
}
.main-onboarding-wrapper .bottom-onboarding-box .onboarding-back-box {
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: -32px;
}
.main-onboarding-wrapper .bottom-onboarding-box .onboarding-back-box a {
  margin: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 100px;
  background-color: rgba(var(--white), 1);
  position: relative;
}
.main-onboarding-wrapper .bottom-onboarding-box .onboarding-back-box a::before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  padding: 2px;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  background: var(--theme-color);
  -webkit-mask: linear-gradient(rgb(255, 255, 255) 0 0) content-box, linear-gradient(rgb(255, 255, 255) 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* ====================== Hotel-Booking CSS ===============*/
.onboarding-hotel-section {
  overflow: hidden;
}
.onboarding-hotel-section .onboarding-back-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translate(-50%);
}
@media (max-width: 375px) {
  .onboarding-hotel-section .onboarding-back-image {
    display: none;
  }
}
.onboarding-hotel-section .onboarding-image {
  width: 113px;
  height: 146px;
  animation: fancyFloat 8s ease-in-out infinite;
}
.onboarding-hotel-section .onboarding-image::before {
  width: 108px;
  height: 149px;
  content: "";
  position: absolute;
  top: 48px;
  left: 8px;
  border: 1px solid rgba(var(--black), 1);
  border-radius: 100%;
  transform: rotate(8deg);
}
.onboarding-hotel-section .onboarding-image img {
  width: 100%;
  height: 100%;
  margin-top: 48px;
  margin-left: -4px;
  border-radius: 100%;
  transform: rotate(8deg);
  -o-object-fit: cover;
     object-fit: cover;
}
.onboarding-hotel-section .onboarding-image2 {
  width: 158px;
  height: 210px;
  position: absolute;
  top: -25px;
  right: 20px;
  transform: rotate(-15deg);
  animation: fancyFloat 8s ease-in-out infinite;
}
@media (max-width: 600px) {
  .onboarding-hotel-section .onboarding-image2 {
    width: calc(120px + 38 * (100vw - 320px) / 280);
    height: calc(170px + 40 * (100vw - 320px) / 280);
  }
}
.onboarding-hotel-section .onboarding-image2::before {
  width: 158px;
  height: 210px;
  content: "";
  position: absolute;
  top: 0px;
  left: -8px;
  border: 1px solid rgba(var(--black), 1);
  border-radius: 100%;
  z-index: -1;
}
@media (max-width: 600px) {
  .onboarding-hotel-section .onboarding-image2::before {
    width: calc(120px + 38 * (100vw - 320px) / 280);
    height: calc(170px + 40 * (100vw - 320px) / 280);
  }
}
.onboarding-hotel-section img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.onboarding-image3 {
  width: 252px;
  height: 336px;
  display: flex;
  justify-content: center;
  transform: rotate(7deg);
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  animation: fancyFloat 8s ease-in-out infinite;
}
@media (max-width: 600px) {
  .onboarding-image3 {
    width: calc(200px + 52 * (100vw - 320px) / 280);
    height: calc(270px + 66 * (100vw - 320px) / 280);
  }
}
.onboarding-image3::before {
  width: 252px;
  height: 336px;
  content: "";
  position: absolute;
  left: 50%;
  border: 1px solid rgba(var(--black), 1);
  border-radius: 100%;
  z-index: -1;
  transform: translate(-45%);
}
@media (max-width: 600px) {
  .onboarding-image3::before {
    width: calc(200px + 52 * (100vw - 320px) / 280);
    height: calc(270px + 66 * (100vw - 320px) / 280);
  }
}
.onboarding-image3 img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.onboarding-content {
  text-align: center;
}
.onboarding-content h1 {
  font-size: 22px;
  font-weight: 700;
  color: rgba(var(--theme-color), 1);
}
@media (max-width: 600px) {
  .onboarding-content h1 {
    font-size: calc(18px + 4 * (100vw - 320px) / 280);
  }
}
.onboarding-content p {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  line-height: 1.5;
}
.onboarding-content .skip {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}

/* ================ Blog onboarding  page CSS ================*/
.blog-onboarding {
  min-height: 100vh;
  background-color: rgba(var(--theme-color), 1);
  position: relative;
  overflow: hidden;
}
.blog-onboarding .intro-top-section h1 {
  font-family: "Signika", sans-serif;
  text-align: center;
  font-size: 100px;
  font-weight: 800;
  color: transparent;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-background-clip: text;
          background-clip: text;
}
@media (max-width: 600px) {
  .blog-onboarding .intro-top-section h1 {
    font-size: calc(80px + 20 * (100vw - 320px) / 280);
  }
}
.blog-onboarding .intro-top-section .blog-image {
  top: 0;
  position: absolute;
  left: 10px;
  width: 100%;
  height: 640px;
}

.onboarding-card-container {
  overflow: hidden;
  max-width: 600px;
  margin-left: 0;
  row-gap: 25px;
}
@media (max-width: 600px) {
  .onboarding-card-container {
    row-gap: calc(15px + 10 * (100vw - 320px) / 280);
  }
}
.onboarding-card-container .first-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.onboarding-card-container .first-card .f-img {
  width: 90px;
  height: 90px;
  animation: round 6s linear infinite;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 600px) {
  .onboarding-card-container .first-card .f-img {
    width: calc(70px + 20 * (100vw - 320px) / 280);
    height: calc(70px + 20 * (100vw - 320px) / 280);
  }
}
.onboarding-card-container .card-circle {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.44) 0%, rgba(255, 255, 255, 0) 100%);
  animation: round 6s linear infinite;
}
.onboarding-card-container .onboarding-card {
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(var(--white), 0.33);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.0403) 100%);
  transform: translateX(40px);
}
[dir=rtl] .onboarding-card-container .onboarding-card {
  transform: translateX(-17px);
}
body.dark-mode .onboarding-card-container .onboarding-card {
  border-color: rgba(var(--title-color), 0.2);
}
@media (max-width: 600px) {
  .onboarding-card-container .onboarding-card {
    gap: calc(8px + 3 * (100vw - 320px) / 280);
    transform: translateX(calc(0px + 40 * (100vw - 320px) / 280));
  }
}
.onboarding-card-container .onboarding-card img {
  border-radius: 5px;
  width: 90px;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 600px) {
  .onboarding-card-container .onboarding-card img {
    width: calc(50px + 40 * (100vw - 320px) / 280);
    height: calc(50px + 20 * (100vw - 320px) / 280);
  }
}
.onboarding-card-container .line-card {
  transform: translateX(-22px);
}
.onboarding-card-container .onboarding-details {
  width: calc(100% - 11px - 90px);
  margin-top: -18px;
}
.onboarding-card-container .onboarding-details .onboarding-line {
  width: 96px;
  height: 4px;
  border-radius: 42px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 25%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.1) 75%);
  background-size: 400% 400%;
  animation: Gradient 2.5s ease infinite;
  position: relative;
}
@media (max-width: 600px) {
  .onboarding-card-container .onboarding-details .onboarding-line {
    width: calc(80px + 16 * (100vw - 320px) / 280);
    height: calc(3px + 1 * (100vw - 320px) / 280);
  }
}
.onboarding-card-container .onboarding-details .onboarding-line + .onboarding-line {
  margin-top: 35px;
}
@media (max-width: 600px) {
  .onboarding-card-container .onboarding-details .onboarding-line + .onboarding-line {
    margin-top: calc(25px + 10 * (100vw - 320px) / 280);
  }
}
.onboarding-card-container .onboarding-details .onboarding-line::after {
  content: "";
  position: absolute;
  width: 68px;
  height: 4px;
  top: 8px;
  left: 0;
  border-radius: 42px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 25%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.1) 75%);
  background-size: 400% 400%;
  animation: Gradient 2.5s ease infinite;
}
@media (max-width: 600px) {
  .onboarding-card-container .onboarding-details .onboarding-line::after {
    width: calc(50px + 18 * (100vw - 320px) / 280);
    height: calc(3px + 1 * (100vw - 320px) / 280);
  }
}
.onboarding-card-container .onboarding-details .onboarding-line::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  top: 16px;
  left: 0;
  border-radius: 42px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 25%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.1) 75%);
  background-size: 400% 400%;
  animation: Gradient 2.5s ease infinite;
}
@media (max-width: 600px) {
  .onboarding-card-container .onboarding-details .onboarding-line::before {
    width: calc(65px + 15 * (100vw - 320px) / 280);
    height: calc(3px + 1 * (100vw - 320px) / 280);
  }
}

.onboarding-atrial-section {
  position: fixed;
  max-width: 600px;
  width: 100%;
  bottom: 0;
  background-color: rgba(var(--white), 1);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}
@media (max-width: 600px) {
  .onboarding-atrial-section {
    max-width: calc(320px + 280 * (100vw - 320px) / 280);
  }
}
.onboarding-atrial-section .onboarding-atrial-content {
  text-align: center;
  padding: 32px 20px;
}
.onboarding-atrial-section .onboarding-atrial-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .onboarding-atrial-section .onboarding-atrial-content h3 {
    font-size: calc(22px + 2 * (100vw - 320px) / 280);
  }
}
.onboarding-atrial-section .onboarding-atrial-content p {
  margin-top: 5px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .onboarding-atrial-section .onboarding-atrial-content p {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.onboarding-atrial-section .onboarding-atrial-content .blog-fixed {
  margin-top: 30px;
}
.onboarding-atrial-section .onboarding-atrial-content .blog-fixed .blog-skip {
  font-size: 18px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
  margin-top: 23px;
  display: block;
}

/* ==================== Learning Onboarding CSS ==================*/
.learning-onboarding-section .learning-img {
  display: flex;
  justify-content: end;
}
.learning-onboarding-section .learning-onboarding-content {
  text-align: center;
  margin-top: 20px;
  padding-inline: 20px;
}
.learning-onboarding-section .learning-onboarding-content h2 {
  font-size: 28px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.learning-onboarding-section .learning-onboarding-content h2 span {
  color: rgba(var(--theme-color), 1);
}
.learning-onboarding-section .learning-onboarding-content p {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  margin-bottom: 43px;
}

.onboarding-content-section {
  z-index: 1;
  position: relative;
}

/* ==================== cab booking CSS ===================*/
.cab-onboarding-section {
  background: linear-gradient(180deg, #2C3E63 -17.12%, #191A20 64.72%);
  height: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.cab-onboarding-section .cab-start-screen {
  height: 100%;
  min-height: 100vh;
}
.cab-onboarding-section .cab-start-screen img {
  mix-blend-mode: overlay;
  width: 100%;
  height: 100%;
  -o-object-position: bottom;
     object-position: bottom;
  min-height: 100vh;
}
.cab-onboarding-section .cab-onboarding-map .map-img {
  height: 350px;
  position: absolute;
  top: 13px;
  right: 50px;
}
@media (max-width: 600px) {
  .cab-onboarding-section .cab-onboarding-map .map-img {
    height: calc(238px + 18 * (100vw - 320px) / 280);
    right: calc(8px + 42 * (100vw - 320px) / 280);
  }
}
.cab-onboarding-details {
  max-width: 600px;
  background-color: rgba(var(--white), 1);
  height: 400px;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
}
body.dark-mode .cab-onboarding-details {
  background-color: rgba(var(--dark-bg), 1);
}
@media (max-width: 600px) {
  .cab-onboarding-details {
    border-top-left-radius: calc(120px + 80 * (100vw - 320px) / 280);
    border-top-right-radius: calc(120px + 80 * (100vw - 320px) / 280);
  }
}
.cab-onboarding-details::after {
  content: "";
  position: absolute;
  width: 235px;
  height: 55px;
  background-color: rgba(var(--content-color), 0.1);
  border-radius: 100%;
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
}
.cab-onboarding-details .car-img {
  display: flex;
  margin-top: -20%;
  margin-inline: auto;
  width: 270px;
}
@media (max-width: 600px) {
  .cab-onboarding-details .car-img {
    width: calc(200px + 70 * (100vw - 320px) / 280);
  }
}
.cab-onboarding-details .cab-content {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  max-width: 600px;
  width: 100%;
  padding-inline: 20px;
  top: 100px;
  text-align: center;
}
.cab-onboarding-details .cab-content h2 {
  font-size: 26px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .cab-onboarding-details .cab-content h2 {
    font-size: calc(20px + 6 * (100vw - 320px) / 280);
  }
}
.cab-onboarding-details .cab-content h4 {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.cab-onboarding-details .cab-content p {
  margin-top: 15px;
  font-size: 13px;
  font-weight: 400;
  color: #607080;
}
.cab-onboarding-details .cab-content p span {
  font-weight: 600;
}

/* ============== Fitness Onboarding CSS ==================*/
.fitness-onboarding-page h1 {
  padding-inline: 28px;
  padding-top: 40px;
  font-size: 52px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
  font-family: "Bebas Neue", sans-serif;
}
@media (max-width: 600px) {
  .fitness-onboarding-page h1 {
    padding-top: calc(18px + 22 * (100vw - 320px) / 280);
    font-size: calc(35px + 17 * (100vw - 320px) / 280);
  }
}
.fitness-onboarding-page h1 span {
  transform: rotate(10deg);
  background-color: rgba(var(--theme-color), 1);
  border-radius: 8px;
  font-size: 38px;
  color: rgba(var(--black), 1);
  padding: 3px 10px 0px 10px;
  display: inline-flex;
}
@media (max-width: 600px) {
  .fitness-onboarding-page h1 span {
    padding-inline: calc(6px + 4 * (100vw - 320px) / 280);
    font-size: calc(30px + 8 * (100vw - 320px) / 280);
  }
}
.fitness-onboarding-page .background-image {
  background-image: url(8386e98c9078b60279a8.png);
  width: 100%;
  height: 100%;
  text-align: center;
}
.fitness-onboarding-page .body-image {
  height: 100%;
  min-height: calc(100vh - 172px);
  -o-object-fit: cover;
     object-fit: cover;
}

/* ================ Furniture CSS ===================*/
.onboarding-furniture-images .background-img {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.onboarding-furniture-images .gulp-img {
  margin-left: 132px;
}
@media (max-width: 600px) {
  .onboarding-furniture-images .gulp-img {
    margin-left: calc(12px + 120 * (100vw - 320px) / 280);
  }
}
.onboarding-furniture-images .cher-img {
  margin-top: -110px;
  margin-inline: auto;
  z-index: -1;
  position: relative;
  height: 510px;
  display: block;
}
@media (max-width: 600px) {
  .onboarding-furniture-images .cher-img {
    margin-top: calc(-60px + -50 * (100vw - 320px) / 280);
    height: calc(360px + 150 * (100vw - 320px) / 280);
  }
}
.onboarding-furniture-images .line-img {
  width: 100%;
  max-height: 100vh;
}

.furniture-intro-section {
  padding-inline: 20px;
  padding-top: 33px;
  text-align: center;
}
@media (max-width: 600px) {
  .furniture-intro-section {
    padding-top: calc(20px + 4 * (100vw - 320px) / 280);
  }
}
.furniture-intro-section h1 {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .furniture-intro-section h1 {
    font-size: calc(40px + 8 * (100vw - 320px) / 280);
  }
}
.furniture-intro-section h1 img {
  border-radius: 100%;
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: rgba(var(--bg-color), 1);
  padding: 5px;
}
.furniture-intro-section p {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}

/* =========== jewellery CSS ==========*/
.jewellery-onboarding-section {
  position: relative;
}
.jewellery-onboarding-section .back-img {
  width: 100%;
  height: 100vh;
}
.jewellery-onboarding-section .girl-img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.jewellery-onboarding-section .jewellery-boarding-content {
  height: 340px;
  position: absolute;
  bottom: 0;
  background-color: rgba(var(--white), 1);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  padding-top: 48px;
  box-shadow: 0px -12px 0px 0px rgba(var(--white), 0.49);
  padding-inline: 25px;
  text-align: center;
}
body.dark-mode .jewellery-onboarding-section .jewellery-boarding-content {
  background-color: rgba(var(--body-color), 1);
  box-shadow: 0px -12px 0px 0px rgba(var(--body-color), 0.49);
}
@media (max-width: 600px) {
  .jewellery-onboarding-section .jewellery-boarding-content {
    padding-inline: calc(20px + 5 * (100vw - 320px) / 280);
    padding-top: calc(35px + 13 * (100vw - 320px) / 280);
    height: calc(315px + 25 * (100vw - 320px) / 280);
  }
}
.jewellery-onboarding-section .jewellery-boarding-content::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 70px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  background-color: rgba(var(--white), 0.26);
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
}
body.dark-mode .jewellery-onboarding-section .jewellery-boarding-content::before {
  background-color: rgba(var(--body-color), 0.2);
}
.jewellery-onboarding-section .jewellery-boarding-content h2 {
  font-size: 20px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
  line-height: 28px;
  position: relative;
}
@media (max-width: 600px) {
  .jewellery-onboarding-section .jewellery-boarding-content h2 {
    font-size: calc(18px + 2 * (100vw - 320px) / 280);
  }
}
.jewellery-onboarding-section .jewellery-boarding-content h2::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: rgba(var(--theme-color), 1);
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
}
.jewellery-onboarding-section .jewellery-boarding-content p {
  margin-top: 32px;
  color: rgba(var(--content-color), 1);
  font-size: 15px;
  font-weight: 400;
}
@media (max-width: 600px) {
  .jewellery-onboarding-section .jewellery-boarding-content p {
    font-size: calc(13px + 2 * (100vw - 320px) / 280);
  }
}

/*===========
salon CSS 
=============*/
.boarding-salon-section {
  padding-top: 0;
}
.boarding-salon-section .boarding-salon-img {
  position: relative;
}
.boarding-salon-section .boarding-salon-img img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.boarding-salon-section .boarding-salon-img:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180.19deg, rgba(0, 0, 0, 0) -15.23%, #000000 77.45%);
  max-height: 463px;
}
.boarding-salon-section .boarding-salon-content {
  position: absolute;
  bottom: 48px;
  width: 100%;
  padding-inline: 15px;
  text-align: center;
}
body.dark-mode .boarding-salon-section .boarding-salon-content p,
body.dark-mode .boarding-salon-section .boarding-salon-content h5 {
  color: rgba(var(--title-color), 0.67);
}
.boarding-salon-section .boarding-salon-content h1 {
  font-size: 22px;
  font-weight: 700;
  color: rgba(var(--white), 1);
}
body.dark-mode .boarding-salon-section .boarding-salon-content h1 {
  color: rgba(var(--title-color), 1);
}
.boarding-salon-section .boarding-salon-content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: rgba(var(--white), 0.67);
  margin-top: 11px;
}
.boarding-salon-section .boarding-salon-content .salon-btn {
  margin-top: 23px;
}
.boarding-salon-section .boarding-salon-content h5 {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(var(--white), 0.67);
}
.boarding-salon-section .boarding-salon-content h5 a {
  color: rgba(var(--theme-color), 1);
  text-decoration: underline;
}

/* ============
movie CSS 
===========*/
.movie-boarding-section {
  height: 100vh;
  overflow: hidden;
}
.movie-boarding-section .movie-boarding-image {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.movie-boarding-section .movie-boarding-image ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
  overflow: hidden;
  position: relative;
}
.movie-boarding-section .movie-boarding-image ul li img {
  width: 100%;
  height: 192px;
  -o-object-fit: cover;
     object-fit: cover;
}
.movie-boarding-section .movie-boarding-image ul.line1 {
  animation: scrollUp 15s linear infinite;
}
.movie-boarding-section .movie-boarding-image ul.line2 {
  animation: scrollDown 15s linear infinite;
}
.movie-boarding-section .movie-boarding-image ul.line3 {
  animation: scrollUp 15s linear infinite;
}
.movie-boarding-section .movie-boarding-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgb(24, 24, 27) 0%, rgba(24, 24, 28, 0.48) 52%, #18181C 100%);
  z-index: 2;
}
.movie-boarding-section .movie-boarding-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.poster-image {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%) rotate(-8deg);
  z-index: 3;
  background: linear-gradient(94.97deg, #19A1BE 20.87%, #7D4192 82.12%) padding-box, linear-gradient(94.97deg, #19A1BE 20.87%, #7D4192 82.12%) border-box;
  border: 2px solid rgba(0, 0, 0, 0);
}

.poster-content-box {
  position: fixed;
  max-width: 600px;
  width: 100%;
  z-index: 2;
  padding-inline: 20px;
  min-height: 290px;
  bottom: 0;
}
@media (max-width: 375px) {
  .poster-content-box {
    padding-inline: calc(10px + 10 * (100vw - 320px) / 280);
    bottom: calc(-30px - -30 * (100vw - 320px) / 280);
  }
}
.poster-content-box img {
  width: 100%;
  height: 285px;
}
@media (max-width: 600px) {
  .poster-content-box img {
    height: calc(250px + 35 * (100vw - 320px) / 280);
  }
}
.poster-content-box .back-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 43px;
  height: 43px;
  border-radius: 100%;
  background-color: rgba(var(--black), 1);
  background: var(--button-color);
  top: -3px;
  z-index: 2;
  margin: 0;
}
@media (max-width: 375px) {
  .poster-content-box .back-button {
    top: calc(-10px - -13 * (100vw - 320px) / 280);
  }
}
.poster-content-box .back-button .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 100%;
  background: var(--button-color);
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 22px;
}
.poster-content-box .poster-content {
  position: absolute;
  top: 50%;
  text-align: center;
  left: 50%;
  width: 90%;
  height: 100%;
  transform: translate(-50%, -40%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline: 50px;
}
@media (max-width: 600px) {
  .poster-content-box .poster-content {
    padding-inline: calc(15px + 2 * (100vw - 320px) / 280);
  }
}
.poster-content-box .poster-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
  position: relative;
}
.poster-content-box .poster-content h3::before {
  content: "";
  position: absolute;
  width: 100%;
  max-width: 48px;
  background: var(--button-color);
  height: 3px;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
}
.poster-content-box p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .poster-content-box p {
    font-size: calc(14px + 0 * (100vw - 320px) / 280);
  }
}
.poster-content-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 30px;
  font-size: 18px;
  font-weight: 500;
  background: var(--button-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 600px) {
  .poster-content-box a {
    font-size: calc(16px + 2 * (100vw - 320px) / 280);
  }
}
.poster-content-box a .icon {
  --Iconsax-Color: rgba(var(--border), 1);
  --Iconsax-Size: 20px;
}

/*=====================
  3.6  Range Slider CSS start
==========================*/
/* =============
 3.6 Range Slider
================*/
.custom-slider-theme {
  margin-top: 25px;
}
.custom-slider-theme h3 {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.custom-slider-theme h4 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.custom-slider-theme .progress-slider {
  position: absolute;
  z-index: 1;
  left: 0;
  height: 8px;
  border-radius: 15px;
  background: rgba(var(--theme-color), 1);
}
.custom-slider-theme .range-slider {
  position: relative;
  width: 100%;
  height: 6px;
  border-radius: 100px;
  background: rgba(var(--content-color), 0.2);
  margin-top: 55px;
}
.custom-slider-theme .range-slider input[type=range] {
  position: absolute;
  width: 100%;
  height: 8px;
  top: 1px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  pointer-events: none;
  background: none;
  cursor: pointer;
}
.custom-slider-theme .range-slider input[type=range]::-webkit-slider-thumb {
  pointer-events: auto;
  -webkit-appearance: none;
          appearance: none;
  width: 15px;
  height: 15px;
  background-color: rgba(var(--white), 1);
  border: 4px solid rgba(var(--theme-color), 1);
  border-radius: 50%;
  position: relative;
  margin-top: -3px;
  z-index: 2;
}
.custom-slider-theme .range-number {
  position: absolute;
  width: calc(100% - 20px);
  top: -50px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.custom-slider-theme .range-number .range-box {
  position: absolute;
  background: rgba(var(--theme-color), 1);
  border-radius: 6px;
  text-align: center;
  color: rgba(var(--white), 1);
  padding: 2px 4px;
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
}
body.dark-mode .custom-slider-theme .range-number .range-box {
  color: rgba(var(--title-color), 1);
}
.custom-slider-theme .range-number .range-box::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgba(var(--theme-color), 1);
}
.custom-slider-theme .range-number .range-box .rs-label {
  font-weight: 500;
  color: rgba(var(--white), 1);
  pointer-events: none;
}
body.dark-mode .custom-slider-theme .range-number .range-box .rs-label {
  color: rgba(var(--title-color), 1);
}
.custom-slider-theme .range-number .range-box input {
  all: unset;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--white), 1);
  text-align: center;
  pointer-events: auto;
  width: 30px;
}
body.dark-mode .custom-slider-theme .range-number .range-box input {
  color: rgba(var(--title-color), 1);
}

.food-range-slider .range-slider input[type=range]::-webkit-slider-thumb {
  pointer-events: auto;
  -webkit-appearance: none;
          appearance: none;
  width: 15px;
  height: 15px;
  background-color: rgba(var(--theme-color), 1);
  border-radius: 50%;
  position: relative;
  margin-top: -3px;
  z-index: 2;
}
.food-range-slider .range-number .range-box .rs-label {
  color: rgba(var(--title-color), 1);
}
.food-range-slider .range-number .range-box input {
  color: rgba(var(--title-color), 1);
}
.food-range-slider .range-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}
.food-range-slider .range-content span {
  font-size: 12px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}

/*=====================
  3.7  tab CSS start
==========================*/
.ecommerce-tab {
  padding-inline: 15px;
  border-bottom: none;
  display: flex;
  flex-wrap: unset;
  width: 100%;
  overflow-x: scroll;
  margin-bottom: 20px;
  gap: 8px;
}
.ecommerce-tab::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: transparent;
}
.ecommerce-tab .nav-item + .nav-item {
  margin-left: 10px;
}
.ecommerce-tab .nav-link {
  border: none;
  padding: 8px 12px;
  text-transform: capitalize;
  border-radius: 3px !important;
  margin-bottom: 0;
  white-space: nowrap;
  font-weight: 400;
  font-size: 14px;
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--light-bg), 1);
}
.ecommerce-tab .nav-link.active {
  font-weight: 500;
  color: rgba(var(--white), 1);
  background-color: rgba(var(--theme-color), 1);
}

.plant-tab .nav-link {
  color: rgba(var(--content-color), 1);
  border-radius: 8px !important;
}
.plant-tab .nav-link.active {
  font-weight: 600;
}

.grocery-auth-tab {
  margin-top: 78px;
  height: calc(100vh - 265px);
}
.grocery-auth-tab .nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  width: 100%;
  overflow-x: auto;
}
.grocery-auth-tab .nav-tabs .nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(var(--white), 0.1);
  width: 100%;
  list-style-type: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
}
.grocery-auth-tab .nav-tabs .nav-item .nav-link {
  width: 100%;
  padding-top: 0;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
  color: rgba(var(--title-color), 1);
  background-color: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
}
.grocery-auth-tab .nav-tabs .nav-item .nav-link.active {
  font-weight: 700;
  color: rgba(var(--theme-color), 1);
  border-bottom-color: rgba(var(--theme-color), 1);
  padding-inline: 15px;
  border-radius: 0;
}
.grocery-auth-tab .tab-content {
  height: 100%;
  background-color: rgba(var(--light-bg), 1);
}
.grocery-auth-tab .tab-content .google-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  margin-top: 15px;
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--white), 1);
}
.grocery-auth-tab .tab-content .google-buttons a:hover, .grocery-auth-tab .tab-content .google-buttons a:active {
  color: rgba(var(--title-color), 1) !important;
  background-color: rgba(var(--white), 1) !important;
}
.dark-mode .grocery-auth-tab .tab-content .google-buttons a {
  background-color: rgba(var(--body-color), 1);
}
@media (max-width: 600px) {
  .grocery-auth-tab .tab-content .google-buttons a {
    padding: calc(10px + 5 * (100vw - 320px) / 280);
  }
}
.grocery-auth-tab .tab-content .google-buttons a .icon {
  width: 20px;
  height: 20px;
}

.grocery-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  padding-inline: 15px;
  overflow-x: auto;
  scrollbar-width: 0;
}
.grocery-tab::-webkit-scrollbar {
  width: 0;
}
.grocery-tab li {
  margin-bottom: 15px;
}
.grocery-tab li .category-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  border: none;
  background-color: transparent;
  padding: 0;
}
.grocery-tab li .category-item.active .category-image {
  background-color: rgba(var(--theme-color), 0.2);
}
.grocery-tab li .category-item.active .category-name {
  color: rgba(var(--theme-color), 1);
}
.dark-mode .grocery-tab li .category-item.active {
  background-color: rgba(var(--body-color), 1);
}
.grocery-tab li .category-item .category-image {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--light-bg), 1);
  border-radius: 10px;
}
.grocery-tab li .category-name {
  margin-top: 8px;
  text-align: center;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
  color: rgba(var(--title-color), 1) !important;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

/* ============================
chatting notification page CSS 
===============================*/
.chatting-tab {
  height: calc(100vh - 265px);
}
.chatting-tab .nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  width: 100%;
  overflow-x: auto;
  border-bottom: 1px solid rgba(var(--content-color), 0.15);
  --bs-nav-link-padding-x: 0;
}
.chatting-tab .nav-tabs .nav-item {
  width: 100%;
}
.chatting-tab .nav-tabs .nav-item .nav-link {
  width: 100%;
  font-weight: 600;
  font-size: 16px;
  box-shadow: none;
  white-space: nowrap;
  color: rgba(var(--title-color), 1);
  border: none;
  background-color: transparent;
}
@media (max-width: 600px) {
  .chatting-tab .nav-tabs .nav-item .nav-link {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.chatting-tab .nav-tabs .nav-item .nav-link.active {
  font-weight: 700;
  background-color: rgba(var(--light-blue), 1);
  color: rgba(var(--white), 1);
}
body.dark-mode .chatting-tab .nav-tabs .nav-item .nav-link.active {
  color: rgba(var(--title-color), 1);
}
.chatting-tab .nav-tabs .nav-item .nav-link:hover {
  border: none;
}
.chatting-tab .nav-tabs .nav-item .nav-link:focus {
  border-color: transparent;
}
.chatting-tab .tab-content {
  height: 100%;
}
.chatting-tab .toggle-notification-list {
  padding-block: 30px;
}
@media (max-width: 600px) {
  .chatting-tab .toggle-notification-list {
    padding-block: calc(20px + 10 * (100vw - 320px) / 280);
  }
}
.chatting-tab .toggle-notification-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.chatting-tab .toggle-notification-list li + li {
  margin-top: 25px;
}
@media (max-width: 600px) {
  .chatting-tab .toggle-notification-list li + li {
    margin-top: calc(15px + 10 * (100vw - 320px) / 280);
  }
}
.chatting-tab .toggle-notification-list li .bell-icon {
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 24px;
  background-color: rgba(var(--content-color), 0.11);
  padding: 10px;
  border-radius: 100%;
}
@media (max-width: 600px) {
  .chatting-tab .toggle-notification-list li .bell-icon {
    --Iconsax-Size: calc(22px + (24 - 22) * ((100vw - 320px) / (600 - 320)));
    padding: calc(7px + 3 * (100vw - 320px) / 280);
  }
}
.chatting-tab .toggle-notification-list li.unread {
  background-color: rgba(var(--content-color), 0.06);
  padding: 12px;
  border-radius: 8px;
}
.chatting-tab .toggle-notification-list h4 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .chatting-tab .toggle-notification-list h4 {
    font-size: calc(15px + 1 * (100vw - 320px) / 280);
  }
}
.chatting-tab .toggle-notification-list h5 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  color: rgba(var(--content-color), 1);
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
}
@media (max-width: 600px) {
  .chatting-tab .toggle-notification-list h5 {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
  }
}
.chatting-tab .toggle-notification-list .notification-content {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  align-items: center;
  width: calc(100% - 10px - 44px);
}
@media (max-width: 600px) {
  .chatting-tab .toggle-notification-list .notification-content {
    width: calc(100% - 10px - (36px + 8 * (100vw - 320px) / 280));
  }
}
.chatting-tab .toggle-notification-list .notification-content h6 {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
  margin-top: 10px;
  text-align: right;
  min-width: 65px;
}
@media (max-width: 600px) {
  .chatting-tab .toggle-notification-list .notification-content h6 {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
    margin-top: calc(8px + 2 * (100vw - 320px) / 280);
  }
}
.chatting-tab .toggle-notification-list .notification-content h6::after {
  width: 10px;
  height: 10px;
  content: "";
  position: absolute;
  background: var(--theme-color);
  border-radius: 100%;
  top: -20px;
  right: 6px;
}
@media (max-width: 600px) {
  .chatting-tab .toggle-notification-list .notification-content h6::after {
    width: calc(6px + 4 * (100vw - 320px) / 280);
    height: calc(6px + 4 * (100vw - 320px) / 280);
  }
}
.chatting-tab .toggle-notification-list .toggle-button {
  display: flex;
  position: relative;
  padding: 0;
}
.chatting-tab .toggle-notification-list .toggle-button span {
  width: 55px;
  height: 25px;
  display: flex;
  position: relative;
  background-color: rgba(var(--content-color), 0.09);
  transition: 0.5s;
  cursor: pointer;
  box-shadow: 0px 1px 4px 0px rgba(var(--content-color), 0.25);
  border-radius: 100px;
}
@media (max-width: 600px) {
  .chatting-tab .toggle-notification-list .toggle-button span {
    width: calc(40px + 15 * (100vw - 320px) / 280);
    height: calc(20px + 5 * (100vw - 320px) / 280);
  }
}
.chatting-tab .toggle-notification-list .toggle-button span::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  top: 5px;
  left: 5px;
  border-radius: 100%;
  background-color: rgba(var(--content-color), 0.5);
  transition: 0.5s;
}
@media (max-width: 600px) {
  .chatting-tab .toggle-notification-list .toggle-button span::before {
    width: calc(10px + 5 * (100vw - 320px) / 280);
    height: calc(10px + 5 * (100vw - 320px) / 280);
  }
}
.chatting-tab .toggle-notification-list .toggle-button input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
}
.chatting-tab .toggle-notification-list .toggle-button input[type=checkbox]:checked + span {
  background-color: rgba(var(--light-blue), 0.3);
}
.chatting-tab .toggle-notification-list .toggle-button input[type=checkbox]:checked + span::before {
  left: 35px;
  background: var(--theme-color);
}
@media (max-width: 600px) {
  .chatting-tab .toggle-notification-list .toggle-button input[type=checkbox]:checked + span::before {
    left: calc(26px + 9 * (100vw - 320px) / 280);
  }
}
.chatting-tab .offcanvas-button {
  width: 100%;
  border: none;
  color: rgba(var(--error-color), 1);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  background-color: rgba(var(--error-color), 0.1);
  border: 1px solid rgba(var(--error-color), 0.6);
  padding: 18px;
  border-radius: 10px;
  line-height: 1;
  margin-top: 50px;
}
@media (max-width: 600px) {
  .chatting-tab .offcanvas-button {
    padding: calc(17px + 1 * (100vw - 320px) / 280);
    border-radius: calc(8px + 2 * (100vw - 320px) / 280);
    font-size: calc(15px + 1 * (100vw - 320px) / 280);
    margin-top: calc(25px + 25 * (100vw - 320px) / 280);
  }
}

.history-list {
  margin-top: 30px;
}
@media (max-width: 600px) {
  .history-list {
    margin-top: calc(15px + 15 * (100vw - 320px) / 280);
  }
}
.history-list h3 {
  font-size: 18px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
  text-align: left;
}
@media (max-width: 600px) {
  .history-list h3 {
    font-size: calc(16px + 2 * (100vw - 320px) / 280);
  }
}
.history-list + h3 {
  margin-top: 40px;
}
@media (max-width: 600px) {
  .history-list + h3 {
    margin-top: calc(20px + 20 * (100vw - 320px) / 280);
  }
}

/* ===================
rating page CSS 
======================*/
.review-star {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}
@media (max-width: 600px) {
  .review-star {
    margin-bottom: calc(15px + 10 * (100vw - 320px) / 280);
    gap: calc(6px + 4 * (100vw - 320px) / 280);
  }
}
.review-star img {
  width: 22px;
}
@media (max-width: 600px) {
  .review-star img {
    width: calc(18px + 4 * (100vw - 320px) / 280);
  }
}
.review-star h3 {
  color: rgba(var(--title-color), 1);
  font-size: 24px;
  font-weight: 600;
  margin-top: 0;
}
@media (max-width: 600px) {
  .review-star h3 {
    font-size: calc(18px + 6 * (100vw - 320px) / 280);
  }
}

.star-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-block: 12px;
}
.star-rating img {
  width: 20px;
  height: 20px;
}

.popular-review {
  margin-top: 18px;
}
@media (max-width: 600px) {
  .popular-review {
    margin-top: calc(10px + 8 * (100vw - 320px) / 280);
  }
}
.popular-review li {
  width: 100%;
}
.popular-review li + li {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(var(--content-color), 0.19);
}
@media (max-width: 600px) {
  .popular-review li + li {
    margin-top: calc(12px + 8 * (100vw - 320px) / 280);
    padding-top: calc(12px + 8 * (100vw - 320px) / 280);
  }
}
.popular-review li .popular-rating {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 600px) {
  .popular-review li .popular-rating {
    gap: calc(8px + 12 * (100vw - 320px) / 280);
  }
}
.popular-review li .popular-rating img {
  width: 14px;
}
.popular-review li .popular-rating h4 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  font-size: 17px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .popular-review li .popular-rating h4 {
    font-size: calc(14px + 3 * (100vw - 320px) / 280);
  }
}
.popular-review li .popular-rating h6 {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
  margin-left: auto;
}
@media (max-width: 600px) {
  .popular-review li .popular-rating h6 {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
  }
}
.popular-review li p {
  text-align: left;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--title-color), 0.6);
  line-height: 1.5;
}
@media (max-width: 600px) {
  .popular-review li p {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
  }
}
.popular-review li .thumb-track {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 18px;
}
@media (max-width: 600px) {
  .popular-review li .thumb-track {
    margin-top: calc(10px + 8 * (100vw - 320px) / 280);
  }
}
.popular-review li .thumb-track div {
  display: flex;
  gap: 6px;
}
.popular-review li .thumb-track div h5 {
  color: rgba(var(--title-color), 0.6);
  font-weight: 500;
}
.popular-review .tap-rate .form-group {
  margin-top: 0;
}
.popular-review .tap-rate .form-group label {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .popular-review .tap-rate .form-group label {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.popular-review .tap-rate .form-group input {
  margin-top: 8px;
  font-size: 14px;
  padding: 12px 8px;
  color: rgba(var(--title-color), 1);
  font-weight: 500;
  border: 1px solid rgba(var(--content-color), 0.23);
}
.popular-review .tap-rate .form-group input::-moz-placeholder {
  color: rgba(var(--content-color), 1);
}
.popular-review .tap-rate .form-group input::placeholder {
  color: rgba(var(--content-color), 1);
}
.popular-review .tap-rate .form-group input:focus {
  outline: none;
}
.popular-review .tap-rate h4 {
  color: rgba(var(--title-color), 1);
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 600px) {
  .popular-review .tap-rate h4 {
    font-size: calc(16px + 2 * (100vw - 320px) / 280);
  }
}

.load-more {
  text-align: center;
  margin: 40px auto 0;
  width: 100%;
  border-radius: 8px;
}
.load-more .loadMore {
  background: var(--theme-color);
  color: rgba(var(--white), 1);
  border: none;
  font-weight: 600;
  opacity: 1;
  width: 100%;
}
@media (max-width: 600px) {
  .load-more .loadMore {
    font-size: calc(15px + 1 * (100vw - 320px) / 280);
  }
}

.product-load-more .col-grid-box {
  display: none;
}

/* ================
Hotel Review tab
===================*/
.hotel-review-tab {
  margin-top: 10px;
  background-color: rgba(var(--white), 1);
  border-radius: 100px;
  box-shadow: 0 2px 5px 0 rgba(var(--black), 0.03);
}
.hotel-review-tab .nav-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border: none;
  flex-wrap: nowrap;
}
.hotel-review-tab .nav-tabs li {
  width: 100%;
}
.hotel-review-tab .nav-tabs li + li {
  border-left: 1px solid rgba(var(--content-color), 0.29);
}
.hotel-review-tab .nav-tabs li .nav-link {
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
  color: rgba(var(--title-color), 1);
  border: none;
  background-color: transparent;
  padding: 0;
}
@media (max-width: 600px) {
  .hotel-review-tab .nav-tabs li .nav-link {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.hotel-review-tab .nav-tabs li .nav-link.active {
  color: rgba(var(--theme-color), 1);
}
.hotel-review-tab .nav-tabs li .nav-link:hover {
  border: none;
}
.hotel-review-tab .nav-tabs li .nav-link:focus {
  border-color: transparent;
}

.transport-box {
  margin-top: 20px;
}
@media (max-width: 600px) {
  .transport-box {
    margin-top: calc(15px + 5 * (100vw - 320px) / 280);
  }
}
.transport-box .transport-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 600px) {
  .transport-box .transport-title {
    gap: calc(5px + 5 * (100vw - 320px) / 280);
  }
}
.transport-box .transport-title .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
}
.transport-box .transport-title h5 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .transport-box .transport-title h5 {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.transport-box h3 {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .transport-box h3 {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
    margin-top: calc(6px + 2 * (100vw - 320px) / 280);
  }
}
.transport-box h4 {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .transport-box h4 {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
  }
}

.attraction-list {
  padding-left: 22px;
  margin-top: 12px;
}
.attraction-list li {
  display: list-item;
  list-style: disc;
  font-size: 14px;
  font-weight: 500;
  text-align: justify;
  color: rgba(var(--content-color), 1);
  line-height: 1.5;
}
.attraction-list li + li {
  margin-top: 12px;
}

.select-room-tab {
  margin-top: 24px;
}
@media (max-width: 600px) {
  .select-room-tab {
    margin-top: calc(15px + 9 * (100vw - 320px) / 280);
  }
}
.select-room-tab .nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  border: none;
  overflow-x: auto;
  scrollbar-width: none;
}
.select-room-tab .nav-tabs::-webkit-scrollbar {
  display: none;
}
.select-room-tab .nav-tabs .nav-item {
  border-radius: 8px;
  background-color: rgba(var(--light-gray), 1);
}
.select-room-tab .nav-tabs .nav-item .nav-link {
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  white-space: nowrap;
  color: rgba(var(--content-color), 1);
  background-color: rgba(var(--light-bg), 1);
  border: none;
  padding: 10px 12px;
  border-radius: 8px;
}
.select-room-tab .nav-tabs .nav-item .nav-link.active {
  background-color: rgba(var(--theme-color), 1);
  color: rgba(var(--white), 1);
}
body.dark-mode .select-room-tab .nav-tabs .nav-item .nav-link.active {
  color: rgba(var(--title-color), 1);
}
.select-room-tab .nav-tabs .nav-item .nav-link:hover {
  border: none;
}
.select-room-tab .nav-tabs .nav-item .nav-link:focus {
  border-color: transparent;
}
.select-room-tab .tab-content {
  margin-top: 20px;
}

.room-slide-wrapper {
  border: 1px solid rgba(var(--theme-color), 0.1);
  border-radius: 12px;
  margin-top: 10px;
}
.room-slide-wrapper .room-slide img {
  width: 100%;
  height: 182px;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.room-slide-wrapper .room-slide .swiper-pagination {
  position: relative;
  margin-top: 10px;
  inset: unset;
  display: flex;
  align-items: center;
  justify-content: center;
}
.room-slide-wrapper .room-slide .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: rgba(var(--content-color), 0.46);
  border-radius: 100px;
  opacity: 1;
}
.room-slide-wrapper .room-slide .swiper-pagination .swiper-pagination-bullet-active {
  width: 25px;
  height: 8px;
  background-color: rgba(var(--theme-color), 1);
}
.room-slide-wrapper .room-slide-content {
  background-color: rgba(var(--white), 1);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding: 15px 10px 12px;
}
.room-slide-wrapper .room-slide-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
.room-slide-wrapper .room-slide-content h5 {
  margin-top: 3px;
  color: rgba(var(--theme-color), 1);
  font-size: 14px;
  font-weight: 700;
}
.room-slide-wrapper .room-slide-content h5 span {
  color: rgba(var(--content-color), 1);
  font-weight: 500;
  font-size: 13px;
}
.room-slide-wrapper .room-slide-content h5 h6 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
.room-slide-wrapper .room-slide-content .hotel-room-size {
  display: flex;
  gap: 28px;
  margin-top: 14px;
}
.room-slide-wrapper .room-slide-content .hotel-room-size li {
  display: flex;
  align-items: center;
  gap: 5px;
}
body.dark-mode .room-slide-wrapper .room-slide-content .hotel-room-size li img {
  filter: invert(1);
}
.room-slide-wrapper .room-slide-content .hotel-room-size li h6 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}

.hotel-category-panel {
  display: flex;
  padding: 12px;
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--theme-color), 0.2);
  box-shadow: 0 2px 12px 0 rgba(var(--black), 0.03);
  border-radius: 10px;
  margin-top: 8px;
}
.hotel-category-panel li {
  width: 100%;
}
.hotel-category-panel li + li {
  border-left: 1px solid rgba(var(--content-color), 0.29);
}
.hotel-category-panel li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.hotel-category-panel li a .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 14px;
}

/* ==================
Blog tab 
======================*/
.blog-categories-tab {
  margin-top: 15px;
}
.blog-categories-tab .nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  border: none;
  overflow-x: auto;
  scrollbar-width: none;
}
.blog-categories-tab .nav-tabs::-webkit-scrollbar {
  display: none;
}
.blog-categories-tab .nav-tabs .nav-item {
  width: 100%;
  border-radius: 8px;
  background-color: rgba(var(--content-color), 0.11);
}
.blog-categories-tab .nav-tabs .nav-item .nav-link {
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  white-space: nowrap;
  color: rgba(var(--content-color), 1);
  background-color: rgb(242, 242, 242);
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
}
body.dark-mode .blog-categories-tab .nav-tabs .nav-item .nav-link {
  background-color: rgba(var(--white), 1);
}
body.dark-mode .blog-categories-tab .nav-tabs .nav-item .nav-link.active {
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--theme-color), 1);
}
.blog-categories-tab .nav-tabs .nav-item .nav-link.active {
  font-weight: 400;
  background-color: rgba(var(--theme-color), 1);
  color: rgba(var(--white), 1);
}
.blog-categories-tab .nav-tabs .nav-item .nav-link:hover {
  border: none;
}
.blog-categories-tab .nav-tabs .nav-item .nav-link:focus {
  border-color: transparent;
}

/* =================
learning tab CSS 
====================*/
.learning-course-tab .nav-tabs {
  display: flex;
  gap: 15px;
  flex-wrap: nowrap;
  overflow: hidden;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(var(--content-color), 0.15);
}
.learning-course-tab .nav-tabs .nav-item {
  width: 100%;
}
.learning-course-tab .nav-tabs .nav-item .nav-link {
  position: relative;
  width: 100%;
  font-weight: 400;
  font-size: 18px;
  white-space: nowrap;
  color: rgba(var(--title-color), 1);
  border: none;
  background-color: transparent;
}
.learning-course-tab .nav-tabs .nav-item .nav-link.active {
  font-weight: 500;
  color: rgba(var(--theme-color), 1);
}
.learning-course-tab .nav-tabs .nav-item .nav-link.active::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 5px;
  background-color: rgba(var(--theme-color), 1);
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 600px) {
  .learning-course-tab .nav-tabs .nav-item .nav-link.active::before {
    width: calc(60px + 60 * (100vw - 320px) / 280);
  }
}
.learning-course-tab .nav-tabs .nav-item .nav-link:hover {
  border: none;
}
.learning-course-tab .nav-tabs .nav-item .nav-link:focus {
  border-color: transparent;
}
.learning-course-tab .about-detail-tab {
  margin-top: 24px;
}
.learning-course-tab .about-detail-tab .custom-collapse-box.open .custom-box {
  height: auto;
}
.learning-course-tab .about-detail-tab .custom-collapse-box.open .toggle-arrow::before {
  background: transparent !important;
}
.learning-course-tab .about-detail-tab .custom-collapse-box.open .toggle-arrow i {
  transform: rotate(180deg);
}
.learning-course-tab .about-detail-tab .custom-collapse-box .custom-box {
  height: 70px;
  overflow: hidden;
}
.learning-course-tab .about-detail-tab .custom-collapse-box .custom-box p {
  color: rgba(var(--content-color), 1);
}
.learning-course-tab .about-detail-tab .custom-collapse-box .custom-box p + p {
  margin-top: 10px;
}
.learning-course-tab .about-detail-tab .custom-collapse-box .toggle-arrow {
  text-align: center;
  position: relative;
  z-index: 0;
}
.learning-course-tab .about-detail-tab .custom-collapse-box .toggle-arrow::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(360deg, rgb(246, 247, 246) 0%, rgba(246, 247, 246, 0.37) 100%);
  z-index: -1;
}
body.dark-mode .learning-course-tab .about-detail-tab .custom-collapse-box .toggle-arrow::before {
  background: linear-gradient(360deg, rgb(49, 49, 49) 0%, rgba(49, 49, 49, 0.41) 100%);
}
.learning-course-tab .about-detail-tab .custom-collapse-box .toggle-arrow .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 24px;
}

/* ================
wishlist tab CSS 
===================*/
.learn-wishlist-tab-wrapper .nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  width: 100%;
  overflow-x: auto;
  border: none;
  padding-bottom: 14px;
  gap: 10px;
}
.learn-wishlist-tab-wrapper .nav-tabs::-webkit-scrollbar {
  width: 0;
}
@media (max-width: 600px) {
  .learn-wishlist-tab-wrapper .nav-tabs {
    padding-bottom: calc(5px + 9 * (100vw - 320px) / 280);
  }
}
.learn-wishlist-tab-wrapper .nav-tabs .nav-item {
  width: 100%;
  max-width: 130px;
}
.learn-wishlist-tab-wrapper .nav-tabs .nav-item .nav-link {
  position: relative;
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  white-space: nowrap;
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--content-color), 0.05);
  box-shadow: 2px 2px 0 0 rgba(var(--title-color), 1);
  border-radius: 8px;
  border: none;
  padding-block: 10px;
}
body.dark-mode .learn-wishlist-tab-wrapper .nav-tabs .nav-item .nav-link {
  box-shadow: 2px 2px 0 0 rgb(0, 0, 0);
}
@media (max-width: 600px) {
  .learn-wishlist-tab-wrapper .nav-tabs .nav-item .nav-link {
    padding-block: calc(6px + 2 * (100vw - 320px) / 280);
  }
}
.learn-wishlist-tab-wrapper .nav-tabs .nav-item .nav-link.active {
  font-weight: 500;
  color: rgba(var(--white), 1);
  background-color: rgba(var(--theme-color), 1);
}
body.dark-mode .learn-wishlist-tab-wrapper .nav-tabs .nav-item .nav-link.active {
  color: rgba(var(--title-color), 1);
}
.learn-wishlist-tab-wrapper .nav-tabs .nav-item .nav-link:hover {
  border: none;
}
.learn-wishlist-tab-wrapper .nav-tabs .nav-item .nav-link:focus {
  border-color: transparent;
}
.learn-wishlist-tab-wrapper .tab-content {
  height: 100%;
}

/* ===================
learn notification CSS 
======================*/
.learn-notification-list {
  margin-top: 15px;
}
.learn-notification-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
}
.learn-notification-list li + li {
  margin-top: 10px;
}
.learn-notification-list li.unread {
  border: none;
  background-color: rgba(var(--content-color), 0.08);
  border-radius: 10px;
}
.learn-notification-list li img {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
}
.learn-notification-list li .learn-notification-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 50px - 10px);
}
.learn-notification-list li .learn-notification-content h4 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.learn-notification-list li .learn-notification-content h5 {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.learn-notification-list li .learn-notification-content h6 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}

/* ===================
fitness tab CSS 
===================*/
.fitness-tab .nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  width: 100%;
  overflow-x: auto;
  border: none;
  gap: 10px;
}
.fitness-tab .nav-tabs::-webkit-scrollbar {
  width: 0;
}
@media (max-width: 600px) {
  .fitness-tab .nav-tabs {
    padding-bottom: calc(5px + 9 * (100vw - 320px) / 280);
  }
}
.fitness-tab .nav-tabs .nav-item {
  width: 100%;
}
.fitness-tab .nav-tabs .nav-item .nav-link {
  position: relative;
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  white-space: nowrap;
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--bg-color), 1);
  border-radius: 8px;
  border: none;
  padding-block: 10px;
}
@media (max-width: 600px) {
  .fitness-tab .nav-tabs .nav-item .nav-link {
    padding-block: calc(6px + 2 * (100vw - 320px) / 280);
  }
}
.fitness-tab .nav-tabs .nav-item .nav-link.active {
  font-weight: 500;
  color: rgba(var(--body-color), 1);
  background-color: rgba(var(--theme-color), 1);
}
.fitness-tab .nav-tabs .nav-item .nav-link:hover {
  border: none;
}
.fitness-tab .nav-tabs .nav-item .nav-link:focus {
  border-color: transparent;
}
.fitness-tab .fitness-premium-plant-list {
  margin-top: 25px;
}
.fitness-tab .fitness-premium-plant-list li {
  background-color: rgba(var(--bg-color), 1);
  border-radius: 10px;
  padding: 15px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .fitness-tab .fitness-premium-plant-list li {
    padding: calc(12px + 3 * (100vw - 320px) / 280) calc(8px + 2 * (100vw - 320px) / 280);
  }
}
.fitness-tab .fitness-premium-plant-list li + li {
  margin-top: 20px;
}
@media (max-width: 600px) {
  .fitness-tab .fitness-premium-plant-list li + li {
    padding: calc(10px + 10 * (100vw - 320px) / 280), calc(8px + 2 * (100vw - 320px) / 280);
  }
}
.fitness-tab .fitness-premium-plant-list li .premium-plant-content h5 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.fitness-tab .fitness-premium-plant-list li .premium-plant-content h6 {
  max-width: 85px;
  font-size: 14px;
  font-weight: 400;
  background-color: rgba(var(--white), 1);
  padding-block: 6px;
  border-radius: 50px;
  color: rgba(var(--body-color), 1);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 19px;
  justify-content: center;
}
@media (max-width: 600px) {
  .fitness-tab .fitness-premium-plant-list li .premium-plant-content h6 {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
    margin-top: calc(10px + 9 * (100vw - 320px) / 280);
  }
}
.fitness-tab .fitness-premium-plant-list li .premium-plant-content h6 .icon {
  --Iconsax-Color: rgba(var(--body-color), 1);
  --Iconsax-Size: 18px;
}
@media (max-width: 600px) {
  .fitness-tab .fitness-premium-plant-list li .premium-plant-content h6 .icon {
    --Iconsax-Size: calc(16px + (18 - 16) * ((100vw - 320px) / (600 - 320)));
  }
}
.fitness-tab .fitness-premium-plant-list li .premium-plant-content h3 {
  font-size: 18px;
  font-weight: 400;
  color: rgba(var(--theme-color), 1);
}
@media (max-width: 600px) {
  .fitness-tab .fitness-premium-plant-list li .premium-plant-content h3 {
    font-size: calc(16px + 2 * (100vw - 320px) / 280);
  }
}
.fitness-tab .fitness-premium-plant-list li .premium-plant-content h3 span {
  font-size: 14px;
  color: rgba(var(--content-color), 1);
}
.fitness-tab .fitness-premium-plant-list li .premium-plant-content h4 {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .fitness-tab .fitness-premium-plant-list li .premium-plant-content h4 {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
    margin-top: calc(5px + 5 * (100vw - 320px) / 280);
  }
}
.fitness-tab .fitness-premium-plant-list li .premium-plant-content h4 .icon {
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 20px;
}
@media (max-width: 600px) {
  .fitness-tab .fitness-premium-plant-list li .premium-plant-content h4 .icon {
    --Iconsax-Size: calc(16px + (20 - 16) * ((100vw - 320px) / (600 - 320))) ;
  }
}
.fitness-tab .fitness-premium-plant-list li img {
  width: 100px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 600px) {
  .fitness-tab .fitness-premium-plant-list li img {
    width: calc(80px + 20 * (100vw - 320px) / 280);
    height: calc(50px + 20 * (100vw - 320px) / 280);
  }
}

/* ============= 
jewellery tab
================*/
.gold-login-page h3 {
  font-size: 25px;
  font-weight: 500;
  text-align: center;
}
.gold-login-page .nav-tabs {
  display: flex;
  gap: 15px;
  flex-wrap: nowrap;
  overflow: hidden;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  border: none;
  margin-top: 12px;
  background-color: rgba(var(--bg-color), 1);
  border-radius: 6px;
  padding: 5px;
}
.gold-login-page .nav-tabs .nav-item {
  width: 100%;
}
.gold-login-page .nav-tabs .nav-item .nav-link {
  position: relative;
  width: 100%;
  font-weight: 400;
  font-size: 18px;
  white-space: nowrap;
  color: rgba(var(--title-color), 1);
  border: none;
  border-radius: 6px;
}
@media (max-width: 600px) {
  .gold-login-page .nav-tabs .nav-item .nav-link {
    font-size: calc(16px + 2 * (100vw - 320px) / 280);
  }
}
.gold-login-page .nav-tabs .nav-item .nav-link.active {
  background-color: rgba(var(--theme-color), 1);
  font-weight: 500;
  color: rgba(var(--white), 1);
}
.gold-login-page .nav-tabs .nav-item:hover {
  border: none;
}
.gold-login-page .nav-tabs .nav-item:focus {
  border-color: transparent;
}

/* =============
salon Tabs
==============*/
.salon-course-tab {
  padding-top: 29px;
}
@media (max-width: 600px) {
  .salon-course-tab {
    padding-top: calc(20px + 9 * (100vw - 320px) / 280);
  }
}
.salon-course-tab .nav-tabs {
  display: flex;
  gap: 25px;
  flex-wrap: nowrap;
  overflow: hidden;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(var(--content-color), 0.15);
}
.salon-course-tab .nav-tabs .nav-item {
  width: 100%;
}
.salon-course-tab .nav-tabs .nav-item .nav-link {
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  white-space: nowrap;
  color: rgba(var(--title-color), 1);
  border: 5px solid transparent;
  border-top: none;
  border-inline: none;
  background-color: transparent;
  transition: all 0.2s ease-in-out;
}
.salon-course-tab .nav-tabs .nav-item .nav-link.active {
  border-bottom: 5px solid rgba(var(--theme-color), 1);
  font-weight: 600;
  color: rgba(var(--theme-color), 1);
}
.salon-course-tab .nav-tabs .nav-item .nav-link:focus {
  border-bottom: 5px solid rgba(var(--theme-color), 1);
}
.salon-course-tab .about-detail-tab {
  margin-top: 24px;
}
.salon-course-tab .about-detail-tab .custom-collapse-box.open .custom-box {
  height: auto;
}
.salon-course-tab .about-detail-tab .custom-collapse-box.open .toggle-arrow::before {
  background: transparent !important;
}
.salon-course-tab .about-detail-tab .custom-collapse-box.open .toggle-arrow i {
  transform: rotate(180deg);
}
.salon-course-tab .about-detail-tab .custom-collapse-box .custom-box {
  height: 70px;
  overflow: hidden;
}
.salon-course-tab .about-detail-tab .custom-collapse-box .custom-box p {
  color: rgba(var(--content-color), 1);
}
.salon-course-tab .about-detail-tab .custom-collapse-box .custom-box p + p {
  margin-top: 10px;
}
.salon-course-tab .about-detail-tab .custom-collapse-box .toggle-arrow {
  text-align: center;
  position: relative;
  z-index: 0;
}
.salon-course-tab .about-detail-tab .custom-collapse-box .toggle-arrow::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(360deg, rgb(246, 247, 246) 0%, rgba(246, 247, 246, 0.37) 100%);
  z-index: -1;
}
body.dark-mode .salon-course-tab .about-detail-tab .custom-collapse-box .toggle-arrow::before {
  background: linear-gradient(360deg, rgb(49, 49, 49) 0%, rgba(49, 49, 49, 0.41) 100%);
}
.salon-course-tab .about-detail-tab .custom-collapse-box .toggle-arrow .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 24px;
}

/*=====================
3.8 Timer CSS
==========================*/
.timer {
  display: flex;
  align-items: center;
  margin: 5px 0;
  display: flex;
  align-items: center;
  gap: 5px;
}
.timer .counter {
  text-align: center;
  background-color: rgba(var(--theme-color), 1);
  border-radius: 3px;
  width: 60px;
  height: 50px;
  color: rgba(var(--white), 1);
  position: relative;
  padding: 4px;
}
@media (max-width: 360px) {
  .timer .counter {
    width: 50px;
    height: 40px;
    font-size: 10px;
  }
}
@media (max-width: 360px) and (max-width: 375px) {
  .timer .counter {
    width: 50px;
  }
}
.timer .counter span {
  font-size: 16px;
  font-weight: 700;
  color: rgba(var(--white), 1);
}
@media (max-width: 360px) {
  .timer .counter span {
    font-size: 14px;
  }
}
.timer .counter p {
  font-size: 12px;
  color: rgba(var(--white), 1);
}
@media (max-width: 360px) {
  .timer .counter p {
    font-size: 8px;
  }
}

/*=====================
 3.9 Title CSS
==========================*/
.title {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.title h3 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--dark-bg), 1);
}
body.dark-mode .title h3 {
  color: rgba(var(--title-color), 1);
}
.title .all {
  font-weight: 500;
  color: rgba(var(--theme-color), 1);
}
.title a {
  font-weight: 400;
  font-size: 14px;
  color: rgba(var(--error-color), 1);
  transition: all 0.3s ease-in-out;
}
.title a:hover {
  letter-spacing: 0.4px;
}
.title.plant-title h3 {
  font-size: 18px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .title.plant-title h3 {
    font-size: calc(16px + 2 * (100vw - 320px) / 280);
  }
}
.title.plant-title a {
  font-weight: 600;
  font-size: 14px;
  color: rgba(var(--theme-color), 1);
}

.cart-title {
  margin-top: 46px;
  margin-bottom: 8px;
}
.cart-title h3 {
  color: rgba(var(--dark-bg), 1);
  font-size: 16px;
  font-weight: 600;
}

.title2 {
  margin-bottom: 15px;
}
.title2 h3 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--dark-bg), 1);
}

/* ============ food title ============*/
.center-title {
  text-align: center;
}
.center-title h2 {
  font-size: 20px;
  font-weight: 600;
  color: rgba(var(--dark-bg), 1);
}
.center-title h5 {
  color: rgba(var(--content-color), 1);
  font-size: 14px;
  font-weight: 400;
  margin-top: 3px;
}

/* ========== Hotel title ===========*/
.hotel-title {
  position: relative;
}
.hotel-title h2 {
  font-size: 22px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
.hotel-title h5 {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
  margin-top: 5px;
}
.hotel-title .loader-line {
  width: 40px;
  height: 3px;
  overflow: hidden;
  background-color: rgba(var(---title-color), 1);
  border-radius: 20px;
  position: absolute;
  top: -8px;
}
.hotel-title .loader-line::before {
  content: "";
  position: absolute;
  left: -50%;
  height: 2px;
  width: 30%;
  background-color: rgba(var(--title-color), 1);
  animation: lineAnim 2s linear infinite;
  border-radius: 20px;
}
[dir=rtl] .hotel-title .loader-line::before {
  animation: reverse-lineAnim 2s linear infinite;
  right: 50%;
}

.title3 h3 {
  font-size: 18px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .title3 h3 {
    font-size: calc(16px + 2 * (100vw - 320px) / 280);
  }
}

/* ========== Blog title ==============*/
.blog-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-title h3 {
  font-size: 18px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.blog-title a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--theme-color), 1);
}

/* =========== learning title auth ===============*/
.learning-auth-title h3 {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .learning-auth-title h3 {
    font-size: calc(18px + 2 * (100vw - 320px) / 280);
  }
}
.learning-auth-title h4 {
  margin-top: 3px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}

.learning-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.learning-title h3 {
  font-size: 18px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .learning-title h3 {
    font-size: calc(16px + 2 * (100vw - 320px) / 280);
  }
}
.learning-title a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--theme-color), 1);
}

/* ============== cab booking CSS ===============*/
.cab-auth-title {
  position: relative;
}
.cab-auth-title h2 {
  font-size: 30px;
  font-weight: 500;
  background: var(--title2-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 600px) {
  .cab-auth-title h2 {
    font-size: calc(20px + 10 * (100vw - 320px) / 280);
  }
}
.cab-auth-title h5 {
  font-size: 20px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  margin-top: 4px;
}
@media (max-width: 600px) {
  .cab-auth-title h5 {
    font-size: calc(14px + 6 * (100vw - 320px) / 280);
  }
}
.cab-auth-title .loader-line {
  width: 40px;
  height: 3px;
  overflow: hidden;
  border-radius: 20px;
  position: absolute;
  top: -8px;
}
.cab-auth-title .loader-line::before {
  content: "";
  position: absolute;
  left: -50%;
  height: 2px;
  width: 30%;
  background-color: rgba(var(--black), 1);
  animation: lineAnim 2s linear infinite;
  border-radius: 20px;
}
[dir=rtl] .cab-auth-title .loader-line::before {
  animation: reverse-lineAnim 2s linear infinite;
}

.cab-title h4 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}

.cab-title2 h3 {
  font-size: 18px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}

/* ========== fitness title ================*/
.fitness-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fitness-title h3 {
  font-size: 18px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.fitness-title a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--theme-color), 1);
}
.fitness-title .year-dropdown button {
  background-color: rgba(var(--bg-color), 1);
  border: 1px solid rgba(var(--white), 0.07);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.fitness-title .year-dropdown button .down-icon {
  --Iconsax-Size: 14px;
  --Iconsax-Color: rgba(var(--white), 1);
}
.fitness-title .year-dropdown button:hover {
  background-color: rgba(var(--bg-color), 1);
}
.fitness-title .year-dropdown button:active {
  background-color: rgba(var(--bg-color), 1) !important;
}
.fitness-title .year-dropdown .dropdown-menu {
  background-color: rgba(var(--bg-color), 1);
  border-radius: 6px;
}
.fitness-title .year-dropdown .dropdown-menu li {
  width: 100%;
}
.fitness-title .year-dropdown .dropdown-menu li a:hover {
  background-color: transparent;
  color: rgba(var(--theme-color), 1);
}

/* ============= furniture title ===============*/
.furniture-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.furniture-title h3 {
  font-size: 18px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .furniture-title h3 {
    font-size: calc(16px + 2 * (100vw - 320px) / 280);
  }
}
.furniture-title a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--theme-color), 1);
}
@media (max-width: 600px) {
  .furniture-title a {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
  }
}

/* ============= jewellery title ===============*/
.gold-recent-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gold-recent-title h3 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.gold-recent-title a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--error-color), 1);
}

.gold-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gold-title h3 {
  font-size: 18px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.gold-title a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(var(--theme-color), 1);
}

/*=========== salon title =============*/
.hair-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hair-title h3 {
  font-size: 16px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
.hair-title a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--error-color), 1);
  transition: all 0.2s ease-in-out;
}
.hair-title a:hover {
  letter-spacing: 0.4px;
}

/* ============ Movie CSS =============*/
.poster-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.poster-title h3 {
  font-size: 16px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
.poster-title a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.poster-title .all {
  font-weight: 600;
  color: rgba(var(--border), 1);
}

/* Layout Files */
/*=====================
   4.1  Filter CSS
=======================*/
.modal .modal-content {
  width: 100%;
  max-width: 600px;
  margin: auto;
  background-color: rgba(var(--white), 1);
  padding: 20px;
}
@media (max-width: 600px) {
  .modal .modal-content {
    padding: calc(15px + 5 * (100vw - 320px) / 280);
  }
}
.modal.filter-modal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(var(--border-color), 1);
}
.modal.filter-modal .modal-header h3 {
  font-size: 18px;
  font-weight: 500;
}
.modal.filter-modal .modal-header i {
  --Iconsax-Size: 26px;
  --Iconsax-Color: rgba(var(--title-color), 1);
  transform: rotate(45deg);
}
.modal.filter-modal .modal-footer {
  border: none;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  padding: 5px;
  background-color: rgba(var(--white), 1);
  box-shadow: 0px -2px 8px rgba(var(--title-color), 0.1);
}
.modal.filter-modal .modal-footer a {
  width: 50%;
  text-align: center;
}
.modal.filter-modal .modal-footer .reset-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.modal.filter-modal .modal-footer .fixed-btn {
  font-size: 14px;
  color: rgba(var(--white), 1);
  background-color: rgba(var(--theme-color), 1);
}
.modal.filter-modal .modal-body .filter-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}
.modal.filter-modal .modal-body .filter-box {
  margin-bottom: 25px;
}
.modal.filter-modal .modal-body .pricing-slider .irs-min,
.modal.filter-modal .modal-body .pricing-slider .irs-max {
  display: none;
}
.modal.filter-modal .modal-body .pricing-slider .irs-from,
.modal.filter-modal .modal-body .pricing-slider .irs-to,
.modal.filter-modal .modal-body .pricing-slider .irs-single {
  background-color: rgba(var(--theme-color), 1);
  color: rgba(var(--title-color), 1);
  font-size: 12px;
}
.modal.filter-modal .modal-body .pricing-slider .irs-line {
  height: 4px;
  border: none;
  background-color: rgba(var(--content-color), 1);
  background: rgba(var(--content-color), 1);
  border-radius: 2px;
}
.modal.filter-modal .modal-body .pricing-slider .irs-bar {
  height: 4px;
  border: none;
  background-color: rgba(var(--theme-color), 1);
  background: rgba(var(--theme-color), 1);
  border-radius: 2px;
}
.modal.filter-modal .modal-body .pricing-slider .irs-slider {
  height: 22px;
  width: 22px;
  background: rgba(var(--white), 1);
  border: 1px solid rgba(var(--theme-color), 1);
}
.modal.filter-modal .modal-body .pricing-slider .irs-slider:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(var(--theme-color), 1);
  width: 12.5px;
  height: 12.5px;
  border-radius: 100%;
}
.modal.filter-modal .modal-body .color-ratings {
  display: flex;
  align-items: center;
  gap: 0;
}
.modal.filter-modal .modal-body .color-ratings .form-check-input {
  margin-left: unset;
  filter: none;
}
.modal.filter-modal .modal-body .color-ratings .form-check-input:checked ~ .form-check-label {
  border: 2px solid rgba(var(--white), 1);
  outline: 1px solid rgba(var(--theme-color), 1);
  box-shadow: 0 0 6px 3px rgba(40, 73, 126, 0.05);
}
.modal.filter-modal .modal-body .color-ratings .form-check-input:checked ~ .form-check-label.color1 {
  outline-color: #30528a;
}
.modal.filter-modal .modal-body .color-ratings .form-check-input:checked ~ .form-check-label.color2 {
  outline-color: #43bbd4;
}
.modal.filter-modal .modal-body .color-ratings .form-check-input:checked ~ .form-check-label.color3 {
  outline-color: #fed46f;
}
.modal.filter-modal .modal-body .color-ratings .form-check-input:checked ~ .form-check-label.color4 {
  outline-color: #9a7be3;
}
.modal.filter-modal .modal-body .color-ratings .form-check-input:checked ~ .form-check-label.color5 {
  outline-color: #5385fc;
}
.modal.filter-modal .modal-body .color-ratings .form-check-input:checked ~ .form-check-label.color6 {
  outline-color: #c9d1dc;
}
.modal.filter-modal .modal-body .color-ratings .form-check .form-check-label {
  width: 30px;
  height: 30px;
  margin: 5px;
  padding: 0;
  border-radius: 100%;
  border: 1px solid rgba(var(--border-color), 1);
}
.modal.filter-modal .modal-body .color-ratings .form-check .form-check-label.color1 {
  background-color: #30528a;
}
.modal.filter-modal .modal-body .color-ratings .form-check .form-check-label.color2 {
  background-color: #43bbd4;
}
.modal.filter-modal .modal-body .color-ratings .form-check .form-check-label.color3 {
  background-color: #fed46f;
}
.modal.filter-modal .modal-body .color-ratings .form-check .form-check-label.color4 {
  background-color: #9a7be3;
}
.modal.filter-modal .modal-body .color-ratings .form-check .form-check-label.color5 {
  background-color: #5385fc;
}
.modal.filter-modal .modal-body .color-ratings .form-check .form-check-label.color6 {
  background-color: #c9d1dc;
}
.modal.filter-modal .filter-color {
  margin: -4px -7px;
}
.modal.filter-modal .filter-color li {
  margin: 4px 7px;
}
.modal.filter-modal .filter-color li .color-box {
  width: 28px;
  height: 28px;
  border-radius: 100%;
  position: relative;
}
.modal.filter-modal .filter-color li .color-box.color1 {
  background-color: #30528a;
}
.modal.filter-modal .filter-color li .color-box.color2 {
  background-color: #43bbd4;
}
.modal.filter-modal .filter-color li .color-box.color3 {
  background-color: #fed46f;
}
.modal.filter-modal .filter-color li .color-box.color4 {
  background-color: #9a7be3;
}
.modal.filter-modal .filter-color li .color-box.color5 {
  background-color: #5385fc;
}
.modal.filter-modal .filter-color li .color-box.color6 {
  background-color: #c9d1dc;
}
.modal.filter-modal .filter-color li.active .color-box {
  border: 2px solid rgba(var(--white), 1);
  outline: 1px solid;
}
.modal.filter-modal .filter-color li.active .color-box.color1 {
  outline-color: #30528a;
}
.modal.filter-modal .filter-color li.active .color-box.color2 {
  outline-color: #43bbd4;
}
.modal.filter-modal .filter-color li.active .color-box.color3 {
  outline-color: #fed46f;
}
.modal.filter-modal .filter-color li.active .color-box.color4 {
  outline-color: #9a7be3;
}
.modal.filter-modal .filter-color li.active .color-box.color5 {
  outline-color: #5385fc;
}
.modal.filter-modal .filter-color li.active .color-box.color6 {
  outline-color: #c9d1dc;
}
.modal.filter-modal .filter-color li.active .color-box:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border: 2px solid rgb(255, 255, 255);
  transform: translate(-50%, -50%) rotate(45deg);
  width: 6px;
  height: 12px;
  border-top: unset;
  border-left: unset;
}
.modal.filter-modal .filter-row {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 10px;
  overflow: auto;
}
.modal.filter-modal .filter-row li.active .filter-col {
  background-color: rgba(var(--theme-color), 1);
  color: rgb(255, 255, 255);
  transition: all 0.5s ease;
}
.modal.filter-modal .filter-row .filter-col {
  background-color: rgba(var(--light-bg), 1);
  color: rgba(var(--title-color), 1);
  font-size: 14px;
  padding: 8px 16px;
  text-align: center;
  border-radius: 5px;
  transition: all 0.5s ease;
  text-transform: capitalize;
}
.modal.filter-modal .filter-row.size-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/*==============
feedback box CSS 
=================*/
.feedback-model .modal-content {
  width: 350px;
  background-color: rgba(var(--white), 1);
  padding: 25px 15px;
  position: relative;
  border-radius: 25px;
  border: none;
}
body.dark-mode .feedback-model .modal-content {
  background-color: rgba(var(--second-color), 1);
}
.feedback-model .modal-content h4 {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: rgba(var(--dark-bg), 1);
}
.feedback-model .modal-content p {
  margin-top: 5px;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.feedback-model .modal-content .feedback-comment {
  background-color: rgba(var(--bg-color), 1);
  margin-top: 15px;
  border-radius: 6px;
}
.feedback-model .modal-content .feedback-comment .textarea {
  width: 100%;
  outline: 0;
  border: none;
  padding: 10px;
  background-color: transparent;
}
.feedback-model .modal-content .feedback-image {
  display: flex;
  justify-content: center;
}
.feedback-model .modal-content .feedback-image img {
  width: 60%;
}
.feedback-model .modal-content .emoji-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-block: 18px;
}
.feedback-model .modal-content .emoji-items li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  background: linear-gradient(90deg, rgb(194, 190, 190) 0%, rgb(214, 212, 212) 50%, rgb(237, 237, 237) 100%);
  transition: all 0.3s ease-in-out;
  z-index: 5;
  position: relative;
  transform: scale(1);
}
.feedback-model .modal-content .emoji-items li::after, .feedback-model .modal-content .emoji-items li::before,
.feedback-model .modal-content .emoji-items li span::before {
  content: "";
  position: absolute;
  border-radius: 100%;
  padding: 1.5px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  pointer-events: none;
}
.feedback-model .modal-content .emoji-items li::after {
  top: -29%;
  left: -29%;
  height: 160%;
  width: 160%;
  background: linear-gradient(100deg, #EBEBEB 40%, rgba(255, 255, 255, 0) 40%, #EBEBEB 50%);
  -webkit-mask: linear-gradient(#f7f7f7 0 0) content-box, linear-gradient(#ffffff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.feedback-model .modal-content .emoji-items li::before {
  top: -10%;
  left: -10%;
  height: 120%;
  width: 120%;
  background: linear-gradient(266deg, #EBEBEB 16%, #FFFFFF 46%, #EBEBEB 80%);
  -webkit-mask: linear-gradient(#f7f7f7 0 0) content-box, linear-gradient(#ffffff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.feedback-model .modal-content .emoji-items li span::before {
  top: -19%;
  left: -19%;
  height: 140%;
  width: 140%;
  background: linear-gradient(282deg, #EBEBEB 37%, #FFFFFF 60%, #EBEBEB 50%);
  -webkit-mask: linear-gradient(#f7f7f7 0 0) content-box, linear-gradient(#ffffff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.feedback-model .modal-content .emoji-items li img {
  filter: grayscale(100%);
  transition: all 0.3s ease-in-out;
}
.feedback-model .modal-content .emoji-items li.active {
  background: linear-gradient(90deg, rgb(255, 199, 47) 0%, rgb(245, 189, 37) 50%, rgb(250, 201, 67) 100%);
  transform: scale(1.1);
}
.feedback-model .modal-content .emoji-items li.active::after, .feedback-model .modal-content .emoji-items li.active::before,
.feedback-model .modal-content .emoji-items li.active span::before {
  opacity: 1;
}
.feedback-model .modal-content .emoji-items li.active img {
  filter: none;
}

/* ====================
food email model 
=====================*/
.food-model-content .modal-content {
  width: 350px;
  background-color: rgba(var(--white), 1);
  padding: 25px 15px;
  position: relative;
  border-radius: 25px;
  border: none;
}
body.dark-mode .food-model-content .modal-content {
  background-color: rgba(var(--second-color), 1);
}
.food-model-content .modal-content img {
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}
.food-model-content .modal-content h5 {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--dark-bg), 1);
  text-align: center;
}
.food-model-content .modal-content p {
  font-size: 14px;
  margin-top: 3px;
  text-align: center;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
.food-model-content .modal-content .verify-button {
  margin-top: 20px;
  background-color: rgba(var(--theme-color), 1);
  color: rgba(var(--dark-bg), 1);
  border: none;
  border-radius: 12px;
  padding: 8px;
  font-size: 18px;
  font-weight: 500;
}

/* ===================
chatting log out CSS 
======================*/
.logout-section .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  --Iconsax-Color: rgba(var(--error-color), 1);
  --Iconsax-Size: 35px;
  background-color: rgba(var(--error-color), 0.12);
  border-radius: 100%;
  margin-inline: auto;
}
@media (max-width: 600px) {
  .logout-section .icon {
    --Iconsax-Size: calc(24px + (35 - 24) * ((100vw - 320px) / (600 - 320)));
    width: calc(50px + 22 * (100vw - 320px) / 280);
    height: calc(50px + 22 * (100vw - 320px) / 280);
  }
}
.logout-section .logout-contant {
  text-align: center;
  margin-top: 12px;
}
@media (max-width: 600px) {
  .logout-section .logout-contant {
    margin-top: calc(6px + 6 * (100vw - 320px) / 280);
  }
}
.logout-section .logout-contant h3 {
  font-size: 22px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
  letter-spacing: 0.4px;
}
@media (max-width: 600px) {
  .logout-section .logout-contant h3 {
    font-size: calc(16px + 4 * (100vw - 320px) / 280);
  }
}
.logout-section .logout-contant p {
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  margin-top: 6px;
}
@media (max-width: 600px) {
  .logout-section .logout-contant p {
    font-size: calc(13px + 3 * (100vw - 320px) / 280);
  }
}
.logout-section .modal-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
@media (max-width: 600px) {
  .logout-section .modal-button {
    margin-top: calc(15px + 5 * (100vw - 320px) / 280);
  }
}
.logout-section .modal-button a {
  width: 100%;
  color: rgba(var(--white), 1);
  padding: 12px;
  border-radius: 5px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
}
body.dark-mode .logout-section .modal-button a {
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .logout-section .modal-button a {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.logout-section .modal-button .no-btn {
  background-color: rgba(var(--content-color), 0.2);
  color: rgba(var(--title-color), 1);
}
.logout-section .modal-button .yes-btn {
  background-color: rgba(var(--error-color), 1);
}

/**=====================
   4.2  Header CSS
========================**/
.header {
  max-width: 600px;
  width: 100%;
  display: block;
  padding: 20px 0 10px;
  background-color: rgba(var(--white), 1);
  z-index: 2;
  position: sticky;
  top: 0;
  left: 50%;
}
.header .head-content {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.header .head-content .sidebar-btn {
  width: 40px;
  height: 40px;
  --Iconsax-Color: rgba(var(--title-color), 1);
  background-color: rgba(var(--light-bg), 1);
  padding: 10px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}
@media (max-width: 600px) {
  .header .head-content .sidebar-btn {
    width: calc(35px + 5 * (100vw - 320px) / 280);
    height: calc(35px + 5 * (100vw - 320px) / 280);
  }
}
.header .head-content .sidebar-btn i {
  --Iconsax-Size: 20px;
}
@media (max-width: 600px) {
  .header .head-content .sidebar-btn i {
    --Iconsax-Size: calc(18px + (20 - 18) * ((100vw - 320px) / (600 - 320)));
  }
}
.header .head-content .header-location {
  display: flex;
  align-items: center;
  justify-content: unset;
  gap: 8px;
  width: 100%;
  background: none;
  padding: 0;
}
.header .head-content .header-location .location-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--theme-color), 0.1);
  border-radius: 100%;
}
@media (max-width: 600px) {
  .header .head-content .header-location .location-icon {
    width: calc(32px + 8 * (100vw - 320px) / 280);
    height: calc(32px + 8 * (100vw - 320px) / 280);
  }
}
.header .head-content .header-location .location-icon .location {
  width: 20px;
  height: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 600px) {
  .header .head-content .header-location .location-icon .location {
    width: calc(18px + 2 * (100vw - 320px) / 280);
    height: calc(18px + 2 * (100vw - 320px) / 280);
  }
}
.header .head-content .header-location .profile-icon {
  width: 40px;
  height: 40px;
}
@media (max-width: 600px) {
  .header .head-content .header-location .profile-icon {
    width: calc(32px + 8 * (100vw - 320px) / 280);
    height: calc(32px + 8 * (100vw - 320px) / 280);
  }
}
.header .head-content .header-location .location-content {
  width: calc(100% - (32px + 8 * (100vw - 320px) / 280) - 5px);
}
.header .head-content .header-location .location-content h6 {
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.header .head-content .header-location .location-content h5 {
  color: rgba(var(--content-color), 1);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.header .head-content .header-location .location-content .d-arrow {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 14px;
}
.header a {
  width: 40px;
  height: 40px;
  background-color: rgba(var(--light-bg), 1);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 600px) {
  .header a {
    width: calc(35px + 5 * (100vw - 320px) / 280);
    height: calc(35px + 5 * (100vw - 320px) / 280);
  }
}
.header a .icon-btn {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
}
@media (max-width: 600px) {
  .header a .icon-btn {
    --Iconsax-Size: calc(18px + (20 - 18) * ((100vw - 320px) / (600 - 320)));
  }
}
.header a .icon-btn.notification-icon {
  position: relative;
}
.header a .icon-btn.notification-icon::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: rgba(var(--error-color), 1);
}
.dark-mode .header.plant-header {
  background-color: rgba(var(--body-color), 1);
}
.header.plant-header .header-panel .header-top-content {
  display: flex !important;
  align-items: center !important;
  gap: 22px !important;
}
.header.plant-header .head-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header.plant-header .head-content .profile-content h4 {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
.header.plant-header .head-content .profile-content h4 .hand {
  width: 20px;
}
.header.plant-header .head-content .profile-content h6 {
  font-size: 12px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.header.plant-header .head-content a span {
  font-weight: 600;
  color: rgba(var(--white), 1);
}
.dark-mode .header.grocery-header {
  background-color: rgba(var(--body-color), 1);
}
.header.grocery-header .head-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header.grocery-header .head-content h2 {
  font-size: 22px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.header.grocery-header .head-content .points {
  font-size: 14px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.header.grocery-header a {
  background-color: rgba(var(--theme-color), 0.1);
}
.header.grocery-header a .notification-icon {
  --Iconsax-Color: rgba(var(--theme-color), 1);
}

.header .notify-icon {
  position: relative;
}
.header .notify-icon span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  display: flex;
  width: 11px;
  height: 11px;
  background-color: rgba(var(--theme-color), 1);
  border-radius: 100%;
  color: rgba(var(--white), 1);
  font-size: 9px;
  font-weight: 700;
  top: 9px;
  right: 10px;
}
[dir=rtl] .header .notify-icon span {
  right: 6px;
}
body.dark-mode .header.ecommerce-header {
  background-color: rgba(var(--body-color), 1);
}
.header.ecommerce-header .location-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header.ecommerce-header .location-content .map-img {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--theme-color), 0.15);
  border-radius: 6px;
}
.header.ecommerce-header .location-content .map-img img {
  width: 24px;
  height: 24px;
}
.header.ecommerce-header .location-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.header.ecommerce-header .location-content h3 .d-arrow {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 22px;
}
.header.ecommerce-header .location-content h5 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  margin-top: 2px;
  color: rgba(var(--content-color), 1);
  font-size: 14px;
  font-weight: 400;
}
.header.ecommerce-header .location-content h6 {
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.header.ecommerce-header .location-content .d-arrow {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 14px;
}
.header.ecommerce-main-header {
  padding-block: 25px 15px;
}
body.dark-mode .header.ecommerce-main-header {
  background-color: rgba(var(--body-color), 1);
}
.header.ecommerce-main-header .header-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header.ecommerce-main-header .header-panel .menu .icon-btn {
  transform: rotate(90deg);
}
.header.ecommerce-main-header .header-panel .header-top-content {
  display: flex;
  align-items: end;
  gap: 6px;
}
.header.ecommerce-main-header .header-panel .header-top-content .plant-icon {
  width: 34px;
  height: 34px;
  background-color: rgba(var(--light-bg), 1);
}
.header.ecommerce-main-header .header-panel .header-top-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.header.ecommerce-main-header .header-panel .header-top-content a {
  width: auto;
  height: auto;
  background-color: transparent;
}
.header.ecommerce-main-header .header-panel .header-top-content a .icon-btn {
  --Iconsax-Size: 22px;
}

.main-header {
  background-color: rgba(var(--white), 1);
  z-index: 2;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 600px;
  width: 100%;
  padding-top: 20px;
}
.dark-mode .main-header {
  background-color: rgba(var(--body-color), 1);
}
.dark-mode .main-header .header-panel .sidebar-btn {
  background-color: rgba(var(--bg-color), 1);
}
.main-header .header-panel {
  position: relative;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
  z-index: 1;
}
.main-header .header-panel .sidebar-btn {
  width: 40px;
  height: 40px;
  --Iconsax-Color: rgba(var(--title-color), 1);
  background-color: rgba(var(--light-bg), 1);
  padding: 10px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}
@media (max-width: 600px) {
  .main-header .header-panel .sidebar-btn {
    width: calc(35px + 5 * (100vw - 320px) / 280);
    height: calc(35px + 5 * (100vw - 320px) / 280);
  }
}
.main-header .header-panel .sidebar-btn i {
  --Iconsax-Size: 20px;
}
@media (max-width: 600px) {
  .main-header .header-panel .sidebar-btn i {
    --Iconsax-Size: calc(16px + (20 - 16) * ((100vw - 320px) / (600 - 320)));
  }
}
.main-header .header-panel a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
@media (max-width: 600px) {
  .main-header .header-panel a {
    --Iconsax-Size: calc(16px + (20 - 16) * ((100vw - 320px) / (600 - 320)));
  }
}
.main-header .header-panel a .icon-btn {
  position: relative;
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
  line-height: 1;
}
@media (max-width: 600px) {
  .main-header .header-panel a .icon-btn {
    --Iconsax-Size: calc(18px + (20 - 18) * ((100vw - 320px) / (600 - 320)));
  }
}
.main-header .header-panel a .icon-btn.trash-icon {
  background-color: rgba(var(--error-color), 0.1);
  --Iconsax-Color: rgba(var(--error-color), 1);
}
.main-header .header-panel a .icon-btn.menu {
  transform: rotate(90deg);
}
.main-header .header-panel a .icon-btn.like-btn {
  background-color: rgba(var(--error-color), 0.1);
  border-radius: 100%;
}
.main-header .header-panel a .icon-btn.notification-icon {
  position: relative;
}
.main-header .header-panel a .icon-btn.notification-icon::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: rgba(var(--error-color), 1);
}
[dir=rtl] .main-header .header-panel a .icon-btn.notification-icon::after {
  right: unset;
  left: 1px;
}
.main-header .header-panel a span {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.main-header .header-panel .icons {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 16px;
  background-color: rgba(var(--white), 0.1);
  box-shadow: 0px 2px 8px rgba(var(--title-color), 0.1);
  padding: 10px;
  border: 1px solid rgba(var(--title-color), 0.1);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
}
@media (max-width: 600px) {
  .main-header .header-panel .icons {
    width: calc(35px + 5 * (100vw - 320px) / 280);
    height: calc(35px + 5 * (100vw - 320px) / 280);
  }
}
.main-header .header-panel h3 {
  padding-inline: 40px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  position: absolute;
  font-weight: 600;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 18px;
  padding-bottom: 10px;
  color: rgba(var(--title-color), 1);
}

.plant-auth-header {
  position: relative;
}
.plant-auth-header .plant-auth-image .auth-img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 0 0 25px 25px;
}
@media (max-width: 600px) {
  .plant-auth-header .plant-auth-image .auth-img {
    height: calc(200px + 100 * (100vw - 320px) / 280);
  }
}
.plant-auth-header .header-panel {
  position: absolute;
  top: 30px;
  padding-inline: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.plant-auth-header .header-panel a {
  width: 40px;
  height: 40px;
  background-color: rgba(var(--light-bg), 0.6);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 600px) {
  .plant-auth-header .header-panel a {
    width: calc(35px + 5 * (100vw - 320px) / 280);
    height: calc(35px + 5 * (100vw - 320px) / 280);
  }
}
.plant-auth-header .header-panel a .icon-btn {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
}
@media (max-width: 600px) {
  .plant-auth-header .header-panel a .icon-btn {
    --Iconsax-Size: calc(18px + (20 - 18) * ((100vw - 320px) / (600 - 320)));
  }
}
.plant-auth-header .header-panel .sidebar-btn {
  width: 40px;
  height: 40px;
  --Iconsax-Color: rgba(var(--title-color), 1);
  background-color: rgba(var(--light-bg), 1);
  padding: 10px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}
@media (max-width: 600px) {
  .plant-auth-header .header-panel .sidebar-btn {
    width: calc(35px + 5 * (100vw - 320px) / 280);
    height: calc(35px + 5 * (100vw - 320px) / 280);
  }
}
.plant-auth-header .header-panel .sidebar-btn i {
  --Iconsax-Size: 20px;
}
@media (max-width: 600px) {
  .plant-auth-header .header-panel .sidebar-btn i {
    --Iconsax-Size: calc(16px + (20 - 16) * ((100vw - 320px) / (600 - 320)));
  }
}
.plant-auth-header.plant-profile-header .plant-auth-image .auth-img {
  height: 150px;
}
.plant-auth-header.plant-profile-header .menu .icon-btn {
  transform: rotate(90deg);
}

.plant-main-header .header-panel .sidebar-btn {
  width: 40px;
  height: 40px;
  --Iconsax-Color: rgba(var(--title-color), 1);
  background-color: rgba(var(--light-bg), 1);
  padding: 10px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}
@media (max-width: 600px) {
  .plant-main-header .header-panel .sidebar-btn {
    width: calc(35px + 5 * (100vw - 320px) / 280);
    height: calc(35px + 5 * (100vw - 320px) / 280);
  }
}
.plant-main-header .header-panel .sidebar-btn i {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
}
@media (max-width: 600px) {
  .plant-main-header .header-panel .sidebar-btn i {
    --Iconsax-Size: calc(16px + (20 - 16) * ((100vw - 320px) / (600 - 320)));
  }
}
.plant-main-header .header-panel a {
  width: 40px;
  height: 40px;
  background-color: rgba(var(--light-bg), 1);
  border-radius: 100%;
  z-index: 1;
}
@media (max-width: 600px) {
  .plant-main-header .header-panel a {
    width: calc(35px + 5 * (100vw - 320px) / 280);
    height: calc(35px + 5 * (100vw - 320px) / 280);
  }
}
.plant-main-header .header-panel h3 {
  font-weight: 700;
  font-size: 20px;
}
@media (max-width: 600px) {
  .plant-main-header .header-panel h3 {
    font-size: calc(18px + 2 * (100vw - 320px) / 280);
  }
}

.dark-mode .grocery-main-header {
  background-color: rgba(var(--body-color), 1);
}
.grocery-main-header .header-panel h3 {
  font-weight: 700;
  font-size: 20px;
}
@media (max-width: 600px) {
  .grocery-main-header .header-panel h3 {
    font-size: calc(18px + 2 * (100vw - 320px) / 280);
  }
}

.pet-auth-header {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}
.pet-auth-header .header-background {
  background-image: url(ac8d52d59c11c7b99f1b.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0 0 100% 100%;
  background-color: rgba(var(--light-bg), 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.pet-auth-header .header-background .header-img {
  height: 170px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.pet-profile-header {
  position: relative !important;
  height: 150px;
  background-color: rgb(230, 237, 247);
}

/* food header start */
.dark-mode .food-main-header {
  background-color: rgba(var(--second-color), 1);
}
.food-main-header .header-panel a .back-icon {
  --Icon-Size: 22px;
  --Iconsax-Color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .food-main-header .header-panel a .back-icon {
    font-size: calc(18px + 4 * (100vw - 320px) / 280);
  }
}
.food-main-header .header-panel h3 {
  font-size: 20px;
}
@media (max-width: 600px) {
  .food-main-header .header-panel h3 {
    font-size: calc(18px + 2 * (100vw - 320px) / 280);
  }
}

.dark-mode .food-header {
  background-color: rgb(47, 48, 50);
}
.food-header a {
  background-color: rgba(var(--bg-color), 1);
}
.food-header a span {
  color: rgba(var(--bg-color), 1);
}
.food-header .food-head {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.food-header .food-head .header-location {
  display: flex;
  align-items: center;
  justify-content: unset;
  gap: 12px;
  width: 100%;
  background: none;
  padding: 0;
}
.food-header .food-head .header-location .head-location-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(var(--theme-color), 0.15);
  border-radius: 6px;
}
.food-header .food-head .header-location .head-location-icon img {
  width: 24px;
  height: 24px;
}
@media (max-width: 600px) {
  .food-header .food-head .header-location .head-location-icon {
    width: calc(35px + 5 * (100vw - 320px) / 280);
    height: calc(35px + 5 * (100vw - 320px) / 280);
  }
}
.food-header .food-head .header-location .head-location-contant {
  width: calc(100% - 40px - 12px);
}
.food-header .food-head .header-location .head-location-contant h6 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--dark-bg), 1);
}
.food-header .food-head .header-location .head-location-contant .down-arrow {
  --Iconsax-Color: rgba(var(--dark-bg), 1);
  --Iconsax-Size: 22px;
}
@media (max-width: 600px) {
  .food-header .food-head .header-location .head-location-contant .down-arrow {
    --Iconsax-Size: calc(20px + (22 - 20) * ((100vw - 320px) / (600 - 320)));
  }
}
.food-header .food-head .header-location .head-location-contant h5 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  font-weight: 400;
  line-height: 23px;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .food-header .food-head .header-location .head-location-contant h5 {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
  }
}
.food-header a {
  position: relative;
}
.food-header a span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 8px;
  left: 20px;
  background-color: rgba(var(--theme-color), 1);
  border-radius: 50px;
  color: rgba(var(--dark-bg), 1);
  font-size: 10px;
  font-weight: 700;
  padding: 5px;
}
.food-header a .left {
  --Iconsax-Color: rgba(var(--dark-bg), 1);
  --Iconsax-Size: 22px;
}

.main-header2 {
  position: relative;
  padding: 0;
  top: 30px;
}

.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  position: absolute;
  top: 15%;
  left: 5%;
  border-radius: 50px;
  background-color: rgba(var(--white), 0.15);
}
[dir=rtl] .icon-circle {
  right: 5%;
  left: unset;
}
.icon-circle .back-icon {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 20px;
}

.search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  position: absolute;
  top: 15%;
  right: 5%;
  border-radius: 50px;
  background-color: rgba(var(--white), 0.15);
}
[dir=rtl] .search-icon {
  right: 2%;
}
.search-icon .back-icon {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 20px;
}

/******** chatting header CSS *******/
.chatting-main-header {
  width: 100%;
  max-width: 600px;
  position: relative;
  padding-block: 34px 58px;
  background: var(--theme-color);
}
@media (max-width: 600px) {
  .chatting-main-header {
    padding-block: calc(18px + 16 * (100vw - 320px) / 280) calc(50px + 8 * (100vw - 320px) / 280);
  }
}
.chatting-main-header .icon-btn {
  --Iconsax-Size: 24px;
  --Iconsax-Color: rgba(var(--white), 1);
}
.chatting-main-header .header-box {
  display: flex;
  align-items: center;
}
body.dark-mode .chatting-main-header .header-box .icon-btn {
  --Iconsax-Color: rgba(var(--title-color), 1);
}
.chatting-main-header .header-box h2 {
  font-size: 22px;
  font-weight: 800;
  color: rgba(var(--white), 1);
}
body.dark-mode .chatting-main-header .header-box h2 {
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .chatting-main-header .header-box h2 {
    font-size: calc(20px + 2 * (100vw - 320px) / 280);
  }
}
.chatting-main-header .header-box .header-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 10px;
}
.chatting-main-header .header-box .header-profile img {
  width: 40px;
  height: 40px;
}
.chatting-main-header .header-box .header-profile .profile-content {
  color: rgba(var(--white), 1);
  font-size: 14px;
}
body.dark-mode .chatting-main-header .header-box .header-profile .profile-content {
  color: rgba(var(--title-color), 1);
}
.chatting-main-header .header-box .header-profile .profile-content h5 {
  font-weight: 600;
}
.chatting-main-header .header-box .header-profile .profile-content h6 {
  margin-top: 3px;
  font-weight: 400;
}
.chatting-main-header .header-box .right-header {
  margin-left: auto;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
[dir=rtl] .chatting-main-header .header-box .right-header {
  margin-inline: auto 0;
}
@media (max-width: 600px) {
  .chatting-main-header .header-box .right-header {
    gap: calc(8px + 4 * (100vw - 320px) / 280);
  }
}
.chatting-main-header .header-box .right-header a .icon {
  --Iconsax-Size: 24px;
  --Iconsax-Color: rgba(var(--white), 1);
}
body.dark-mode .chatting-main-header .header-box .right-header a .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .chatting-main-header .header-box .right-header a .icon {
    --Iconsax-Size: calc(22px + (24 - 22) * ((100vw - 320px) / (600 - 320)));
  }
}
.chatting-main-header .header-box .right-header .chatting-dropdown .dropdown-menu {
  width: 100%;
  max-width: 168px;
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--content-color), 0.1);
  box-shadow: 0 2px 15px 0 rgba(44, 44, 44, 0.08);
  border-radius: 8px;
  padding: 14px 12px;
  margin-top: 10px !important;
}
.chatting-main-header .header-box .right-header .chatting-dropdown .dropdown-menu li {
  width: 100%;
}
.chatting-main-header .header-box .right-header .chatting-dropdown .dropdown-menu li + li {
  margin-top: 5px;
  padding-top: 10px;
  border-top: 1px solid rgba(var(--content-color), 0.2);
}
.chatting-main-header .header-box .right-header .chatting-dropdown .dropdown-menu li .dropdown-item {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--title-color), 0.8);
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.chatting-main-header .header-box .right-header .chatting-dropdown .dropdown-menu li .dropdown-item .menu-icon {
  --Iconsax-Color: rgba(var(--title-color), 0.8);
  --Iconsax-Size: 16px;
}
body.dark-mode .chatting-main-header .header-box .right-header .chatting-dropdown .dropdown-menu li .dropdown-item img {
  filter: invert(1);
}
.chatting-main-header .header-box .right-header .chatting-dropdown .dropdown-menu li .dropdown-item:hover {
  background-color: transparent;
}
.chatting-main-header .header-box .search-box {
  position: absolute;
  left: 0;
  top: 25px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
  transition: all 0.5s ease;
  z-index: 1;
  padding: 0 20px;
}
@media (max-width: 600px) {
  .chatting-main-header .header-box .search-box {
    padding-inline: calc(12px + 8 * (100vw - 320px) / 280);
    top: calc(18px + 7 * (100vw - 320px) / 280);
  }
}
.chatting-main-header .header-box .search-box input {
  border: none;
  padding: 10px 34px;
  font-size: 14px;
  color: rgba(var(--title-color), 1);
}
.chatting-main-header .header-box .search-box input:focus {
  background-color: rgba(var(--white), 1);
}
.chatting-main-header .header-box .search-box input::-moz-placeholder {
  color: rgba(var(--content-color), 1);
}
.chatting-main-header .header-box .search-box input::placeholder {
  color: rgba(var(--content-color), 1);
}
.chatting-main-header .header-box .search-box .add-icon {
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 22px;
  rotate: 43deg;
  position: absolute;
  top: 9px;
  right: 24px;
  cursor: pointer;
}
.chatting-main-header .header-box .search-box .icon {
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 20px;
  position: absolute;
  top: 10px;
  left: 30px;
  cursor: pointer;
}
@media (max-width: 600px) {
  .chatting-main-header .header-box .search-box .icon {
    left: calc(20px + 10 * (100vw - 320px) / 280);
  }
}
.chatting-main-header .header-box .search-box.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.chatting-main-header .header-panel {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
  z-index: 1;
}
.chatting-main-header .header-panel h3 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-flex;
  line-height: 1.4;
  position: absolute;
  font-weight: 700;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 22px;
  color: rgba(var(--white), 1);
}
@media (max-width: 600px) {
  .chatting-main-header .header-panel h3 {
    font-size: calc(20px + 2 * (100vw - 320px) / 280);
  }
}
body.dark-mode .chatting-main-header .header-panel a .icon-btn {
  --Iconsax-Color: rgba(var(--title-color), 1);
}
body.dark-mode .chatting-main-header .header-panel h3 {
  color: rgba(var(--title-color), 1);
}
.chatting-main-header-lg {
  padding-bottom: 74px;
}

.audio-header {
  background: transparent;
  position: absolute;
  top: 0;
  padding-top: 35px;
}
.audio-header::before {
  content: none;
}
.audio-header .header-panel a .icon {
  background-color: rgba(var(--white), 1);
  padding: 5px;
  border-radius: 100%;
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 24px;
}
.audio-header .header-panel a .add {
  rotate: 45deg;
}
@media (max-width: 600px) {
  .audio-header {
    padding-top: calc(40px + 17 * (100vw - 320px) / 280);
  }
}

/* ====================
Hotel booking header
=======================*/
.hotel-main-header {
  width: 100%;
  max-width: 600px;
  position: sticky;
  z-index: 1;
  top: 0;
  padding-top: 58px;
}
@media (max-width: 600px) {
  .hotel-main-header {
    padding-top: calc(20px + 38 * (100vw - 320px) / 280);
  }
}
.hotel-main-header .header-panel {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
  z-index: 1;
}
.hotel-main-header .header-panel a {
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) {
  .hotel-main-header .header-panel a {
    --Iconsax-Size: calc(16px + (20 - 16) * ((100vw - 320px) / (600 - 320)));
  }
}
.hotel-main-header .header-panel a .back-icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-size: 24px;
}

.hotel-header {
  display: block;
  padding: 23px 0 15px;
  background-color: rgba(var(--white), 1);
  z-index: 2;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 600px;
  width: 100%;
}
body.dark-mode .hotel-header {
  background-color: rgba(var(--body-color), 1);
}
.hotel-header .head-content {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.hotel-header a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--light-bg), 1);
  border-radius: 100%;
  position: relative;
}
.hotel-header a .icon-btn {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
}
.hotel-header a span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  top: 8px;
  left: 16px;
  color: rgba(var(--white), 1);
  position: absolute;
  background-color: rgba(var(--theme-color), 1);
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  padding: 5px;
}
body.dark-mode .hotel-header a span {
  color: rgba(var(--title-color), 1);
}
.hotel-header .profile-content {
  font-family: "Lato", serif;
  width: calc(100% - 80px - 8px);
}
.hotel-header .profile-content h4 {
  font-weight: 600;
  font-size: 16px;
  color: rgba(var(--title-color), 1);
}
.hotel-header .profile-content .back-icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .hotel-header .profile-content .back-icon {
    --Iconsax-Size: calc(20px + (22 - 14) * ((100vw - 320px) / (600 - 320)));
  }
}
.hotel-header .profile-content h6 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  margin-top: 3px;
}
.hotel-header .profile-content h6 img {
  margin-right: 4px;
}
.hotel-header .header-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hotel-header .header-panel h3 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block;
  position: absolute;
  font-weight: 600;
  font-size: 18px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -35%);
  text-align: center;
  color: rgba(var(--title-color), 1);
}
.hotel-header .header-panel a {
  width: 34px;
  height: 34px;
}
.hotel-header .header-panel h4 {
  font-size: 18px;
  font-weight: 600;
  color: rgba(var(--white), 1);
}
body.dark-mode .hotel-header .header-panel h4 {
  color: rgba(var(--title-color), 1);
}

.profile-header {
  height: 150px;
  background-color: rgba(var(--theme-color), 1);
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  z-index: 1;
}
body.dark-mode .profile-header {
  background-color: rgba(var(--theme-color), 1);
}

.header-detail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  padding-top: 25px;
}
.header-detail .icon-btn {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
}
.header-detail .custom-container2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-detail .custom-container2 a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background-color: rgba(var(--white), 1);
  border-radius: 100%;
  border: 0;
}
.header-detail .custom-container2 .right-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===================
Blog header CSS 
=======================*/
.blog-header {
  background-color: rgba(var(--white), 1);
  padding: 45px 10px 0 0;
  position: fixed;
  z-index: 1;
  max-width: 600px;
  width: 100%;
}
@media (max-width: 600px) {
  .blog-header {
    padding-top: calc(25px + 20 * (100vw - 320px) / 280);
  }
}
.blog-header .header-panel h3 {
  font-size: 26px;
  font-weight: 600;
}
@media (max-width: 600px) {
  .blog-header .header-panel h3 {
    font-size: calc(22px + 4 * (100vw - 320px) / 280);
  }
}
.blog-header .header-panel .icon-btn {
  --Iconsax-Size: 26px;
}
@media (max-width: 600px) {
  .blog-header .header-panel .icon-btn {
    --Iconsax-Size: calc(24px + (26 - 24) * ((100vw - 320px) / (600 - 320)));
  }
}
.blog-header .header-panel .skip {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}

.blog-main-header {
  position: sticky;
  top: 0;
  padding-bottom: 10px;
  width: 100%;
  max-width: 600px;
  background-color: rgba(var(--white), 1);
  z-index: 3;
}
body.dark-mode .blog-main-header {
  background-color: rgba(var(--body-color), 1);
}
.blog-main-header .header-content {
  display: flex;
  align-items: center;
  gap: 15px;
}
.blog-main-header .header-content .icon {
  --Iconsax-Size: 26px;
  --Iconsax-Color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .blog-main-header .header-content .icon {
    --Iconsax-Size: calc(24px + (26 - 24) * ((100vw - 320px) / (600 - 320)));
  }
}
.blog-main-header .header-content .icon-btn {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 24px;
}
@media (max-width: 600px) {
  .blog-main-header .header-content .icon-btn {
    --Iconsax-Size: calc(20px + (24 - 20) * ((100vw - 320px) / (600 - 320)));
  }
}
.blog-main-header .header-content .blog-main-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 24px - 15px);
}
.blog-main-header .header-content .blog-main-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .blog-main-header .header-content .blog-main-content h4 {
    font-size: calc(16px + 2 * (100vw - 320px) / 280);
  }
}
.blog-main-header .header-content .blog-main-content h2 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  font-size: 26px;
  font-weight: 600;
}
@media (max-width: 600px) {
  .blog-main-header .header-content .blog-main-content h2 {
    font-size: calc(20px + 6 * (100vw - 320px) / 280);
  }
}
.blog-main-header .header-content .blog-main-content h3 {
  font-size: 22px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .blog-main-header .header-content .blog-main-content h3 {
    font-size: calc(20px + 2 * (100vw - 320px) / 280);
  }
}
.blog-main-header .header-content .blog-main-content img {
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 100%;
}
.blog-main-header .header-content .blog-main-content .all {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--theme-color), 1);
}
.blog-main-header .header-content .blog-main-content .skip {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}

.post {
  padding-top: 18px;
  padding-right: 0;
}
.post h2 {
  font-size: 18px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.post a .icon-btn {
  rotate: 45deg;
}

.forward-header {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 20px;
  z-index: 1;
  width: -webkit-fill-available;
  padding-inline: 20px;
}
.forward-header .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: rgba(var(--white), 1);
  border-radius: 100%;
  border: none;
}
.forward-header .icon .icon-btn {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 24px;
}
.forward-header img {
  width: 18px;
  height: 18px;
}
body.dark-mode .forward-header img {
  filter: invert(1);
}
.forward-header .message-icon {
  display: flex;
  gap: 8px;
}

.blog-search-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 19px 15px 0;
  position: relative;
  inset: unset;
  width: 100%;
}
.blog-search-header .icon-btn {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 24px;
}
.blog-search-header .blog-search-input {
  position: relative;
  width: 100%;
}
.blog-search-header .blog-search-input .icon {
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 20px;
}
.blog-search-header .blog-search-input input {
  font-size: 14px;
  font-weight: 400;
  background-color: rgba(var(--white), 1);
  color: rgba(var(--title-color), 1);
  border: none;
  border-radius: 5px;
  padding: 15px 40px;
  box-shadow: 0 -1px 17px 0 rgba(var(--black), 0.05);
}
.blog-search-header .blog-search-input input::-moz-placeholder {
  color: rgba(var(--content-color), 1);
}
.blog-search-header .blog-search-input input::placeholder {
  color: rgba(var(--content-color), 1);
}
.blog-search-header .blog-search-input .search {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: rgba(var(--content-color), 1);
}
.blog-search-header .blog-search-input .mic {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: rgba(var(--content-color), 1);
}

/* ================
Learning header CSS 
====================*/
.back-arrow {
  position: absolute;
  top: 56px;
  left: 20px;
  border: 1px solid rgba(var(--content-color), 0.4);
  background-color: rgba(var(--white), 1);
  border-radius: 100%;
  padding: 10px;
}
.back-arrow .icon {
  --Iconsax-Color: rgba(var(--black), 1);
  --Iconsax-Size: 20px;
}

.learning-header {
  padding: 24px 0 20px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: -1px 1px 0px 1px rgba(var(--black), 0.08);
}
.learning-header .head-content .header-location .location-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.learning-header .head-content .header-location .location-content img {
  width: 19px;
  height: 19px;
  display: inline-block;
  transform-origin: 70% 70%;
  animation: wave-hand 2s infinite;
}
.learning-header .head-content .header-location .location-content h5 {
  margin-top: 3px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.learning-header .head-content a {
  width: 34px;
  height: 34px;
}
body.dark-mode .learning-header .head-content a {
  background-color: rgba(var(--body-color), 1);
}
.learning-header .head-content a span {
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 8px;
  left: 16px;
  color: rgba(var(--white), 1);
}

.learning-main-header {
  padding: 19px 0 10px 0;
  z-index: 2;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  background-color: #f7f8f8;
}
body.dark-mode .learning-main-header {
  background-color: rgba(var(--body-color), 1);
}
.learning-main-header .header-panel {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
  z-index: 1;
}
.learning-main-header .header-panel h3 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block;
  position: absolute;
  font-weight: 600;
  font-size: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -35%);
  text-align: center;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .learning-main-header .header-panel h3 {
    font-size: calc(20px + 2 * (100vw - 320px) / 280);
  }
}
.learning-main-header .header-panel a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(var(--content-color), 0.1);
  background-color: rgba(var(--white), 1);
  border-radius: 100%;
}
.learning-main-header .header-panel a .icon-btn {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
}
.learning-main-header.learn-detail-header {
  position: absolute;
  padding-inline: 20px;
  background-color: transparent;
}
body.dark-mode .learning-main-header.learn-detail-header {
  background-color: transparent;
}
.learning-main-header.learn-detail-header .left-btn {
  background-color: rgba(var(--content-color), 1);
  border: 2px solid rgba(var(--white), 0.07);
}
body.dark-mode .learning-main-header.learn-detail-header .left-btn {
  background-color: rgba(var(--black), 1);
}
body.dark-mode .learning-main-header.learn-detail-header .left-btn .icon-btn {
  --Iconsax-Color: rgba(var(--title-color), 1);
}
.learning-main-header.learn-detail-header .left-btn .icon-btn {
  --Iconsax-Color: rgba(var(--white), 1);
}
.learning-main-header h4 {
  font-size: 18px;
  font-weight: 600;
  color: rgba(var(--white), 1);
}

.video-header {
  background: transparent !important;
  position: absolute !important;
  top: 0;
  padding-top: 35px;
  width: 100%;
}
.video-header::before {
  content: none;
}
.video-header .header-panel .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 24px;
}
@media (max-width: 600px) {
  .video-header .header-panel .icon {
    --Iconsax-Size: calc(20px + (24 - 20) * ((100vw - 320px) / (600 - 320)));
  }
}
.video-header .header-user-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  width: calc(100% - 40px - 10px);
}
.video-header .header-user-profile img {
  width: 40px;
  height: 40px;
}
@media (max-width: 600px) {
  .video-header .header-user-profile img {
    width: calc(35px + 5 * (100vw - 320px) / 280);
    height: calc(35px + 5 * (100vw - 320px) / 280);
  }
}
.video-header .header-user-profile .user-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  width: 100%;
}
.video-header .header-user-profile .user-content h5 {
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.video-header .header-user-profile .user-content h6 {
  margin-top: 3px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.video-header .header-user-profile .user-content .right-header {
  display: flex;
  align-items: center;
  gap: 13px;
}
.video-header .header-user-profile .user-content .right-header a .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 24px;
}
@media (max-width: 600px) {
  .video-header .header-user-profile .user-content .right-header a .icon {
    --Iconsax-Size: calc(20px + (24 - 20) * ((100vw - 320px) / (600 - 320)));
  }
}

.learn-chat-header {
  position: fixed;
  background-color: #f7f8f8;
  z-index: 2;
  padding-block: 19px 10px;
  width: 100%;
  max-width: 600px;
}
body.dark-mode .learn-chat-header {
  background-color: rgba(var(--body-color), 1);
}
.learn-chat-header .header-box {
  display: flex;
  align-items: center;
  gap: 14px;
}
.learn-chat-header .header-box .back-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--content-color), 0.2);
  border-radius: 100%;
  background-color: rgba(var(--white), 1);
}
@media (max-width: 600px) {
  .learn-chat-header .header-box .back-icon {
    width: calc(35px + 5 * (100vw - 320px) / 280);
    height: calc(35px + 5 * (100vw - 320px) / 280);
  }
}
.learn-chat-header .header-box .back-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(var(--content-color), 0.1);
  background-color: rgba(var(--white), 1);
  border-radius: 100%;
}
.learn-chat-header .header-box .back-icon a .icon-btn {
  --Iconsax-Color: rgba(var(--black), 1);
  --Iconsax-Size: 20px;
}
.learn-chat-header .header-box .header-user-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  width: calc(100% - 40px - 10px);
}
.learn-chat-header .header-box .header-user-profile img {
  width: 40px;
  height: 40px;
}
@media (max-width: 600px) {
  .learn-chat-header .header-box .header-user-profile img {
    width: calc(35px + 5 * (100vw - 320px) / 280);
    height: calc(35px + 5 * (100vw - 320px) / 280);
  }
}
.learn-chat-header .header-box .header-user-profile .user-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  width: 100%;
}
.learn-chat-header .header-box .header-user-profile .user-content h5 {
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.learn-chat-header .header-box .header-user-profile .user-content h6 {
  margin-top: 3px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.learn-chat-header .header-box .header-user-profile .user-content .right-header {
  display: flex;
  align-items: center;
  gap: 13px;
}
.learn-chat-header .header-box .header-user-profile .user-content .right-header a .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 24px;
}
@media (max-width: 600px) {
  .learn-chat-header .header-box .header-user-profile .user-content .right-header a .icon {
    --Iconsax-Size: calc(20px + (24 - 20) * ((100vw - 320px) / (600 - 320)));
  }
}

/* ==================
cab booking header
=====================*/
.cab-to-auth-header {
  text-align: center;
}

.cab-search-header {
  position: fixed;
  top: 38px;
  left: 50%;
  width: 100%;
  z-index: 1;
  transform: translateX(-50%);
  max-width: 600px;
}
.cab-search-header .cab-search-box {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cab-search-header .cab-search-box .cab-auth-form .form-group {
  position: relative;
  display: flex;
}
.cab-search-header .cab-search-box .cab-auth-form .fill-btn {
  top: 10px;
  right: 21px;
  position: absolute;
  padding-left: 10px;
  border-left: 1px solid rgba(var(--content-color), 0.5);
}
[dir=rtl] .cab-search-header .cab-search-box .cab-auth-form .fill-btn {
  right: unset;
  left: 21px;
  padding-inline: 10px 0;
  border-left: unset;
  border-right: 1px solid rgba(var(--content-color), 0.5);
}
.cab-search-header .cab-search-box .cab-auth-form .fill-btn i {
  --Iconsax-Color: rgba(var(--theme-color), 1);
  --Iconsax-Size: 24px;
}
.cab-search-header .cab-search-box .cab-left-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--white), 1);
  border-radius: 100%;
  border: none;
}
.cab-search-header .cab-search-box .cab-left-btn .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 24px;
}
.cab-search-header .cab-search-box .search-box {
  width: calc(100% - 44px);
}

.cab-main-header {
  position: fixed;
  background-color: rgba(var(--white), 1);
  padding-block: 25px 18px;
  z-index: 1;
  width: 100%;
  max-width: 600px;
}
.cab-main-header .header-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cab-main-header .header-panel h3 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block;
  position: absolute;
  font-weight: 600;
  font-size: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(var(--title-color), 1);
}
.cab-main-header .header-panel a .icon-btn {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 22px;
}

/* ===============
notification CSS 
==================*/
.book-notification-list {
  margin-top: 15px;
}
.book-notification-list li {
  width: 100%;
  border: 1px solid rgba(var(--content-color), 0.12);
  border-radius: 8px;
  border-left: 3px solid rgba(var(--theme-color), 1);
  padding: 12px 10px;
}
.book-notification-list li + li {
  margin-top: 25px;
}
@media (max-width: 600px) {
  .book-notification-list li + li {
    margin-top: calc(15px + 10 * (100vw - 320px) / 280);
  }
}
.book-notification-list li .notification-order-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.book-notification-list li .notification-order-content h5 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.book-notification-list li .notification-order-content h6 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.book-notification-list li p {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .book-notification-list li p {
    margin-top: calc(6px + 4 * (100vw - 320px) / 280);
  }
}

/* ==================
Fitness header CSS 
=====================*/
.fitness-header {
  padding-top: 85px;
}
@media (max-width: 600px) {
  .fitness-header {
    padding-top: calc(35px + 50 * (100vw - 320px) / 280);
  }
}
.fitness-header .fitness-header-wrapper .left-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(var(--bg-color), 1);
  border: 1px solid rgba(var(--content-color), 0.24);
  border-radius: 100%;
  margin-bottom: 18px;
}
.fitness-header .fitness-header-wrapper .left-btn .arrow-icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
}
.fitness-header .fitness-header-wrapper .fitness-header-content {
  text-align: center;
}
.fitness-header .fitness-header-wrapper .fitness-header-content h2 {
  font-size: 26px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .fitness-header .fitness-header-wrapper .fitness-header-content h2 {
    font-size: calc(22px + 4 * (100vw - 320px) / 280);
  }
}
.fitness-header .fitness-header-wrapper .fitness-header-content h3 {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .fitness-header .fitness-header-wrapper .fitness-header-content h3 {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}

.fitness-header2 {
  position: sticky;
  top: 0;
  width: 100%;
  max-width: 600px;
  padding-block: 35px 15px;
  background-color: rgba(var(--body-color), 1);
  z-index: 1;
}
@media (max-width: 600px) {
  .fitness-header2 {
    padding-top: calc(18px + 17 * (100vw - 320px) / 280);
  }
}
.fitness-header2 .left-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(var(--bg-color), 1);
  border: 1px solid rgba(var(--content-color), 0.24);
  border-radius: 100%;
}
.fitness-header2 .left-btn .arrow-icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
}
.fitness-header2 .header-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fitness-header2 .header-panel h3 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block;
  position: absolute;
  font-weight: 600;
  font-size: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(var(--title-color), 1);
}

.fitness-main-header {
  position: sticky;
  top: 0;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  padding-block: 20px;
  background-color: rgba(var(--body-color), 1);
}
.fitness-main-header .body-main-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fitness-main-header .body-main-header img {
  width: 52px;
  height: 52px;
  border-radius: 100%;
}
@media (max-width: 600px) {
  .fitness-main-header .body-main-header img {
    width: calc(45px + 7 * (100vw - 320px) / 280);
    height: calc(45px + 7 * (100vw - 320px) / 280);
  }
}
.fitness-main-header .body-main-header .fitness-main-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 52px - 10px);
}
.fitness-main-header .body-main-header .fitness-main-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .fitness-main-header .body-main-header .fitness-main-content h4 {
    font-size: calc(16px + 4 * (100vw - 320px) / 280);
  }
}
.fitness-main-header .body-main-header .fitness-main-content h5 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  margin-top: 2px;
}
@media (max-width: 600px) {
  .fitness-main-header .body-main-header .fitness-main-content h5 {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
  }
}
.fitness-main-header .body-main-header .fitness-main-content a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 100%;
  border: 1px solid rgba(var(--white), 0.07);
  background-color: rgba(var(--bg-color), 1);
}
.fitness-main-header .body-main-header .fitness-main-content a .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
}
@media (max-width: 600px) {
  .fitness-main-header .body-main-header .fitness-main-content a .icon {
    --Iconsax-Size: calc(18px + (20 - 18) * ((100vw - 320px) / (600 - 320)));
  }
}
@media (max-width: 600px) {
  .fitness-main-header .body-main-header .fitness-main-content a {
    width: calc(30px + 4 * (100vw - 320px) / 280);
    height: calc(30px + 4 * (100vw - 320px) / 280);
  }
}

/************** furniture CSS **************/
.furniture-header {
  position: sticky;
  top: 0;
  width: 100%;
  max-width: 600px;
  padding-block: 30px 15px;
  background-color: rgba(var(--white), 1);
  z-index: 2;
}
@media (max-width: 600px) {
  .furniture-header {
    padding-top: calc(25px + 10 * (100vw - 320px) / 280);
  }
}
.furniture-header .left-btn {
  border: none;
  background-color: transparent;
}
.furniture-header .left-btn .arrow-icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 24px;
}
.furniture-header .right-btn {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--content-color), 0.24);
  border-radius: 100%;
  background-color: rgba(var(--white), 1);
  box-shadow: 0 2px 12px 0 rgba(var(--content-color), 0.15);
  position: relative;
}
.furniture-header .right-btn .bell-icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
}
.furniture-header .right-btn span {
  width: 6px;
  height: 6px;
  position: absolute;
  top: 8px;
  right: 9px;
  background-color: #ee595c;
  padding: 0;
  border-radius: 100%;
  left: unset;
}
.furniture-header .header-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.furniture-header .header-panel h3 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block;
  position: absolute;
  font-weight: 600;
  font-size: 16px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(var(--title-color), 1);
}
.furniture-header.furniture-profile-header {
  position: relative;
  background-color: rgba(var(--theme-color), 0.1);
  height: 110px;
}
.furniture-header.furniture-profile-header::after {
  content: "";
  position: absolute;
  bottom: -14px;
  border: 3px solid rgba(var(--theme-color), 0.1);
  width: 100%;
}
.furniture-header .furniture-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.furniture-header .furniture-content .header-content {
  display: flex;
  align-items: center;
  gap: 10px;
}
.furniture-header .furniture-content .header-content img {
  width: 40px;
  height: 40px;
  border-radius: 100%;
}
.furniture-header .furniture-content .header-content h4 {
  font-size: 13px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
.furniture-header .furniture-content .header-content h4 img {
  width: 20px;
  height: 20px;
  display: inline-block;
  transform-origin: 70% 70%;
  animation: wave-hand 2s infinite;
}
.furniture-header .furniture-content .header-content h5 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .furniture-header .furniture-content .header-content h5 {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}

.furniture-product-header {
  position: sticky;
  background-color: rgba(var(--bg-color), 1);
}

/********* jewellery CSS ********/
.jewellery-main-header {
  width: 100%;
  max-width: 600px;
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: rgba(var(--secondary-color), 1);
  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;
  padding-block: 40px 24px;
}
@media (max-width: 600px) {
  .jewellery-main-header {
    padding-top: calc(20px + 20 * (100vw - 320px) / 280);
  }
}
.jewellery-main-header .notification-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--border-color), 0.1);
  box-shadow: 0 2px 12px 0 rgba(var(--secondary-color), 0.04);
}
body.dark-mode .jewellery-main-header .notification-icon {
  background-color: rgba(var(--body-color), 1);
}
.jewellery-main-header .notification-icon span {
  background-color: transparent;
}
.jewellery-main-header .notification-icon .bell-icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
  position: relative;
  cursor: pointer;
}
.jewellery-main-header .notification-icon .bell-icon::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: rgba(var(--error-color), 1);
  border-radius: 100%;
  top: 1px;
  right: 3px;
}
.jewellery-main-header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.jewellery-main-header .header-content h3 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--white), 1);
  display: flex;
  align-items: center;
}
.jewellery-main-header .header-content h3 img {
  width: 22px;
  height: 22px;
  display: inline-block;
  transform-origin: 70% 70%;
  animation: wave-hand 2s infinite;
}
.jewellery-main-header .header-content h4 {
  margin-top: 2px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(var(--white), 0.34);
}
.jewellery-main-header .header-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.jewellery-main-header .header-panel .left-btn {
  border: none;
  background-color: transparent;
}
.jewellery-main-header .header-panel .left-btn .icon {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 24px;
  cursor: pointer;
}
.jewellery-main-header .header-panel h3 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block;
  position: absolute;
  font-weight: 600;
  font-size: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(var(--white), 1);
}

/* ===========
salon Header
=============*/
.salon-auth-header {
  text-align: center;
  padding-top: 85px;
}
@media (max-width: 600px) {
  .salon-auth-header {
    padding-top: calc(45px + 40 * (100vw - 320px) / 280);
  }
}
.salon-auth-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
.salon-auth-header p {
  font-size: 18px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  line-height: 29px;
  margin-top: 3px;
}

.left-arrow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--title-color), 0.1);
  box-shadow: 0 2px 12px 0 rgba(var(--black), 0.05);
  background-color: rgba(var(--white), 1);
}
.dark-mode .left-arrow-btn {
  background-color: rgba(var(--bg-color), 1);
}
.left-arrow-btn .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 24px;
}

.salon-main-header {
  padding-block: 20px;
  position: sticky;
  background-color: rgba(var(--white), 1);
  top: 0;
  z-index: 1;
}
.dark-mode .salon-main-header {
  background-color: rgba(var(--body-color), 1);
}
.salon-main-header.shop {
  background: transparent;
  position: absolute;
  width: 100%;
}
.salon-main-header .header-content {
  display: flex;
  align-items: center;
  gap: 10px;
}
.salon-main-header .header-content img {
  width: 40px;
  height: 40px;
  border-radius: 100%;
}
.salon-main-header .header-content .main-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 40px - 10px);
}
.salon-main-header .header-content .main-content.chat-content {
  width: calc(100% - 40px - 10px - 40px);
}
.salon-main-header .header-content .main-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.salon-main-header .header-content .main-content h5 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  font-size: 13px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
  margin-top: 5px;
}
.salon-main-header .header-content .main-content h5 img {
  width: 15px;
  height: 15px;
}
.salon-main-header .header-content .main-content a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 100%;
  border: 1px solid rgba(var(--title-color), 0.1);
  box-shadow: 0px 2px 12px 0px rgba(var(--black), 0.05);
  background-color: rgba(var(--white), 1);
}
.dark-mode .salon-main-header .header-content .main-content a {
  background-color: rgba(var(--bg-color), 1);
}
.salon-main-header .header-content .main-content a .icon-btn {
  position: relative;
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
}
.salon-main-header .header-content .main-content a span {
  width: 6px;
  height: 6px;
  position: absolute;
  top: 10px;
  right: 12px;
  border-radius: 100%;
  background-color: rgba(var(--error-color), 1);
  padding: 0;
}
[dir=rtl] .salon-main-header .header-content .main-content a span {
  right: 0;
  left: 8px;
}

.salon-header {
  padding-block: 20px;
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: rgba(var(--white), 1);
}
@media (max-width: 600px) {
  .salon-header {
    padding-block: calc(14px + 6 * (100vw - 320px) / 280);
  }
}
.dark-mode .salon-header {
  background-color: rgba(var(--body-color), 1);
}
.salon-header .header-title .left-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--title-color), 0.1);
  box-shadow: 0 2px 12px 0 rgba(var(--black), 0.05);
}
.dark-mode .salon-header .header-title .left-arrow {
  background-color: rgba(var(--bg-color), 1);
}
.salon-header .header-title .left-arrow .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 24px;
}
.salon-header .header-title h3 {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 16px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transform: translate(-50%, -50%);
  text-align: center;
}

.shop-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--black), 0.1);
  border-radius: 100%;
}
.shop-button .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
}
body.dark-mode .shop-button img {
  filter: brightness(0) invert(1);
}

/* ============
movie CSS 
============*/
.movie-auth-header {
  padding-top: 65px;
  position: relative;
}
.movie-auth-header .loader-line {
  width: 50px;
  height: 3px;
  overflow: hidden;
  border-radius: 20px;
  position: absolute;
  top: 65px;
}
.movie-auth-header .loader-line::before {
  content: "";
  position: absolute;
  left: -50%;
  height: 3px;
  width: 48px;
  background: var(--button-color);
  animation: lineAnim 3s linear infinite;
  border-radius: 20px;
}
[dir=rtl] .movie-auth-header .loader-line::before {
  animation: reverse-lineAnim 3s linear infinite;
  right: 50%;
}
.movie-auth-header .movie-auth-content {
  margin-top: 7px;
}
.movie-auth-header .movie-auth-content h2 {
  font-size: 22px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.movie-auth-header .movie-auth-content p {
  margin-top: 2px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}

.movie-header {
  padding-block: 20px;
  position: sticky;
  left: 50%;
  top: 0;
}
.movie-header.sticky {
  position: sticky;
  top: 0;
  left: 0;
  background-color: rgba(var(--body-color), 1);
  z-index: 2;
  transition: all 0.2s ease-in-out;
}
.movie-header .back-arrow-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(var(--white), 0.12);
  border: 1px solid rgba(var(--dark-border), 1);
  border-radius: 100%;
}
.movie-header .back-arrow-icon .icon {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 24px;
}
.movie-header h3 {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 16px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transform: translate(-50%, -50%);
  text-align: center;
}

.movie-main-header {
  position: absolute;
  width: 100%;
  max-width: 600px;
  padding-block: 24px 15px;
  z-index: 1;
}
.movie-main-header.sticky {
  position: sticky;
  top: 0;
  left: 0;
  background-color: rgba(var(--body-color), 1);
  z-index: 2;
  transition: all 0.2s ease-in-out;
}
.movie-main-header .movie-header-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.movie-main-header .movie-header-box img {
  background: linear-gradient(rgba(var(--dark-border), 1), rgba(var(--dark-border), 1)) padding-box, var(--theme-color) border-box;
  border: 2px solid transparent;
  border-radius: 100%;
  width: 48px;
  height: 48px;
}
.movie-main-header .movie-header-box .icons {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: rgba(var(--white), 0.12);
  border: 2px solid rgba(var(--dark-border), 1);
  box-shadow: 0 2px 12px 0 rgba(var(--dark-border), 0.05);
}
.movie-main-header .movie-header-box .icons .icon {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 20px;
}
.movie-main-header .movie-header-box .movie-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 48px - 10px);
}
.movie-main-header .movie-header-box .movie-header-content h3 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--white), 1);
}
.movie-main-header .movie-header-box .movie-header-content h4 {
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  margin-top: 3px;
}
.movie-main-header .movie-header-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.movie-main-header .movie-header-detail .back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  border: 2px solid rgba(var(--dark-border), 1);
  background-color: rgba(var(--white), 0.12);
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 12px 0 rgba(var(--dark-border), 0.05);
}
.movie-main-header .movie-header-detail .back-btn .icon {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 24px;
}

/*===================== 
4.4   Loader CSS
==========================*/
.loader {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: var(--theme-color);
  background-color: rgba(var(--white), 1);
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
  opacity: 1;
}
body.dark-mode .loader {
  background: rgba(var(--body-color), 1);
}
.loader img {
  width: 100%;
  max-width: 100px;
}
.loader.hide {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}
.loader.loading {
  background-color: rgba(var(--body-color), 1);
}

/**=====================
  4.5   Mobile Menu CSS
==========================**/
.ecommerce-mobile-menu {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 15px;
  max-width: 600px;
  z-index: 2;
  background-color: rgba(var(--white), 1);
  box-shadow: 0px 0px 10px 0px rgba(var(--title-color), 0.1);
}
body.dark-mode .ecommerce-mobile-menu {
  background-color: rgba(var(--body-color), 1);
  box-shadow: none;
}
body.dark-mode .ecommerce-mobile-menu .mobile-list {
  background-color: rgba(var(--light-bg), 1);
}
.ecommerce-mobile-menu .mobile-list {
  background-color: rgba(var(--dark-bg), 1);
  border-radius: 50px;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ecommerce-mobile-menu .mobile-list li {
  position: relative;
  color: rgba(var(--white), 1);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ecommerce-mobile-menu .mobile-list li a {
  color: rgba(var(--white), 1);
}
.ecommerce-mobile-menu .mobile-list li a .icon {
  width: 20px;
  font-size: 26px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
}
.ecommerce-mobile-menu .mobile-list li a .icon .active {
  display: none;
}
.ecommerce-mobile-menu .mobile-list li a .icon .inactive {
  display: block;
}
.ecommerce-mobile-menu .mobile-list li a h5 {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 500;
  color: rgb(188, 188, 188);
}
.ecommerce-mobile-menu .mobile-list li.active {
  position: relative;
}
.ecommerce-mobile-menu .mobile-list li.active .icon {
  color: rgba(var(--white), 1);
  display: flex;
  justify-content: center;
}
.ecommerce-mobile-menu .mobile-list li.active .icon .active {
  display: block;
}
.ecommerce-mobile-menu .mobile-list li.active .icon .inactive {
  display: none;
}
.ecommerce-mobile-menu .mobile-list li.active h5 {
  font-weight: 500;
  color: rgba(var(--white), 1);
}
.ecommerce-mobile-menu .mobile-list li.active::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  width: 3px;
  height: 30px;
  background-color: rgba(var(--white), 1);
}

.plant-mobile-menu {
  padding: 20px 15px;
  box-shadow: 0px 5px 30px 0px rgba(5, 30, 71, 0.15);
  border: 1px solid rgba(var(--theme-color), 0.1);
  border-radius: 10px 10px 0 0;
  background-color: rgba(var(--white), 1);
  z-index: 2;
}
.dark-mode .plant-mobile-menu {
  background-color: rgba(var(--light-bg), 1);
}
.dark-mode .plant-mobile-menu .mobile-list {
  background-color: transparent !important;
}
.plant-mobile-menu .mobile-list {
  padding: 0;
  background-color: transparent;
}
.plant-mobile-menu .mobile-list li.active::before {
  content: none;
}

.grocery-mobile-menu {
  padding: 15px 30px;
  box-shadow: 0px 5px 30px 0px rgba(5, 30, 71, 0.15);
  background-color: rgba(var(--theme-color), 1);
  border-radius: 20px 20px 0 0;
  z-index: 2;
}
@media (max-width: 600px) {
  .grocery-mobile-menu {
    padding-inline: calc(8px + 22 * (100vw - 320px) / 280);
  }
}
body.dark-mode .grocery-mobile-menu {
  background-color: rgba(var(--theme-color), 1);
}
body.dark-mode .grocery-mobile-menu .mobile-list {
  background-color: transparent;
}
.grocery-mobile-menu .mobile-list {
  padding: 0;
  background-color: transparent;
}
.grocery-mobile-menu .mobile-list li a h5 {
  font-weight: 400;
  font-size: 14px;
  color: rgba(var(--white), 1);
}
.grocery-mobile-menu .mobile-list li.active h5 {
  font-weight: 700;
}
.grocery-mobile-menu .mobile-list li.active::before {
  content: none;
}

.pet-mobile-menu {
  padding: 10px 20px;
  box-shadow: 0px 5px 30px 0px rgba(var(--black), 0.15);
  border-radius: 10px 10px 0 0;
  z-index: 2;
}
body.dark-mode .pet-mobile-menu {
  background-color: rgba(var(--light-bg), 1);
}
body.dark-mode .pet-mobile-menu .mobile-list {
  background-color: transparent;
}
body.dark-mode .pet-mobile-menu .mobile-list li a .icon {
  background-color: transparent;
}
body.dark-mode .pet-mobile-menu .mobile-list li.active::before {
  content: none;
}
body.dark-mode .pet-mobile-menu .mobile-list li.active a .icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--theme-color), 1);
  border-radius: 100%;
}
body.dark-mode .pet-mobile-menu .mobile-list li.active a .icon i {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 24px;
}
body.dark-mode .pet-mobile-menu .mobile-list li.active h5 {
  font-weight: 500;
  color: rgba(var(--theme-color), 1);
}
.pet-mobile-menu .mobile-list {
  padding: 0;
  background-color: transparent;
}
.pet-mobile-menu .mobile-list li.active a .icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--theme-color), 1);
  border-radius: 100%;
}
.pet-mobile-menu .mobile-list li.active a .icon i {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 24px;
}
.pet-mobile-menu .mobile-list li.active h5 {
  font-weight: 500;
  color: rgba(var(--theme-color), 1);
}
.pet-mobile-menu .mobile-list li a .icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--white), 1);
  border-radius: 100%;
}
.pet-mobile-menu .mobile-list li a .icon i {
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 24px;
}
.pet-mobile-menu .mobile-list li a h5 {
  margin-top: 2px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}

/*===================
food mobile  menu 
====================*/
.food-mobile-menu {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  background-color: rgba(var(--white), 1);
  box-shadow: 0 5px 24px 0 rgba(var(--black), 0.2);
  z-index: 2;
  padding-block: 13px;
}
.dark-mode .food-mobile-menu {
  background-color: rgba(var(--bg-color), 1);
}
.food-mobile-menu ul {
  padding-inline: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 600px) {
  .food-mobile-menu ul {
    padding-inline: calc(15px + 13 * (100vw - 320px) / 280);
  }
}
.food-mobile-menu ul li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.food-mobile-menu ul li .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.food-mobile-menu ul li .icon .inactive {
  display: block;
}
.food-mobile-menu ul li .icon .active {
  display: none;
}
.food-mobile-menu ul li h5 {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
.food-mobile-menu ul li a {
  position: relative;
  text-align: center;
}
.food-mobile-menu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 0;
  height: 3px;
  border-radius: 50px;
  background-color: rgba(var(--theme-color), 1);
  transition: all 0.2s ease-in-out;
}
.food-mobile-menu ul li.active .icon .inactive {
  display: none;
}
.food-mobile-menu ul li.active .icon .active {
  display: block;
}
.food-mobile-menu ul li.active h5 {
  color: rgba(var(--dark-bg), 1);
}
.food-mobile-menu ul li.active a::after {
  width: 100%;
}

/*=====================
chatting mobile menu 
========================*/
.chatting-mobile-menu {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  background-color: rgba(var(--white), 1);
  box-shadow: 0 2px 15px 0 rgba(var(--black), 0.08);
  z-index: 3;
  border: 1px solid rgba(var(--content-color), 0.2);
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
}
@media (max-width: 600px) {
  .chatting-mobile-menu {
    padding-inline: calc(10px + 10 * (100vw - 320px) / 280);
  }
}
body.dark-mode .chatting-mobile-menu {
  border: none;
}
.chatting-mobile-menu li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.chatting-mobile-menu li .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 16px;
  border-radius: 100px;
}
.chatting-mobile-menu li .icon img {
  width: 24px;
  height: 24px;
}
@media (max-width: 600px) {
  .chatting-mobile-menu li .icon img {
    width: calc(20px + 4 * (100vw - 320px) / 280);
    height: calc(20px + 4 * (100vw - 320px) / 280);
  }
}
.chatting-mobile-menu li .icon .inactive {
  display: block;
}
.chatting-mobile-menu li .icon .active {
  display: none;
}
.chatting-mobile-menu li .icon .menu-icon {
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 24px;
}
body.dark-mode .chatting-mobile-menu li .icon .menu-icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .chatting-mobile-menu li .icon .menu-icon {
    --Iconsax-Size: calc(20px + (24 - 20) * ((100vw - 320px) / (600 - 320)));
  }
}
.chatting-mobile-menu li h5 {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
body.dark-mode .chatting-mobile-menu li h5 {
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .chatting-mobile-menu li h5 {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
  }
}
.chatting-mobile-menu li a {
  position: relative;
  text-align: center;
}
.chatting-mobile-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 0;
  height: 3px;
  border-radius: 50px;
  background-color: rgba(var(--theme-color), 1);
  transition: all 0.2s ease-in-out;
}
.chatting-mobile-menu li.active .icon {
  background-color: rgba(var(--light-color), 0.2);
}
.chatting-mobile-menu li.active .icon .inactive {
  display: none;
}
.chatting-mobile-menu li.active .icon .active {
  display: block;
}
.chatting-mobile-menu li.active a::after {
  width: 100%;
}
.chatting-mobile-menu li.active h5 {
  background: var(--theme-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==================
Hotel mobile menu 
=====================*/
.hotel-mobile-menu {
  width: 100%;
  max-width: 600px;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background-color: rgba(var(--white), 1);
  box-shadow: 0px -1px 4px rgba(var(--black), 0.04);
}
.hotel-mobile-menu ul {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 20px;
  margin: 0;
}
@media (max-width: 600px) {
  .hotel-mobile-menu ul {
    padding-inline: calc(12px + 8 * (100vw - 320px) / 280);
  }
}
.hotel-mobile-menu ul li {
  width: 100%;
}
.hotel-mobile-menu ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(var(--dark), 1);
}
.hotel-mobile-menu ul li a .icon {
  width: 24px;
  height: 24px;
}
.hotel-mobile-menu ul li a .icon .inactive {
  display: block;
}
.hotel-mobile-menu ul li a .icon .active {
  display: none;
}
.hotel-mobile-menu ul li a h5 {
  font-weight: 500;
  margin-top: 6px;
  font-size: 13px;
  color: rgba(var(--title-color), 1);
}
.hotel-mobile-menu ul li.active a {
  justify-content: center;
  flex-direction: row;
  align-items: center;
  background-color: rgba(var(--theme-color), 1);
  border-radius: 6px;
  padding: 8px 8px 5px;
}
.hotel-mobile-menu ul li.active a .icon .inactive {
  display: none;
}
.hotel-mobile-menu ul li.active a .icon .active {
  display: block;
}
.hotel-mobile-menu ul li.active a h5 {
  color: rgba(var(--white), 1);
  margin-top: 0;
}
body.dark-mode .hotel-mobile-menu ul li.active a h5 {
  color: rgba(var(--title-color), 1);
}

/* ====================
Blog mobile menu 
========================*/
.blog-mobile-menu {
  width: 100%;
  max-width: 600px;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background-color: rgba(var(--white), 1);
  box-shadow: 0px -1px 4px rgba(var(--black), 0.04);
}
.blog-mobile-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 33px;
  padding: 10px 20px;
}
@media (max-width: 600px) {
  .blog-mobile-menu ul {
    gap: calc(25px + 8 * (100vw - 320px) / 280);
  }
}
.blog-mobile-menu ul li {
  width: 100%;
  position: relative;
}
.blog-mobile-menu ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.blog-mobile-menu ul li a .add-icon {
  background-color: rgba(var(--content-color), 1);
  border-radius: 6px;
}
.blog-mobile-menu ul li a .add-icon .add {
  --Iconsax-Color: rgba(var(--white), 1);
}
.blog-mobile-menu ul li a h5 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  font-weight: 400;
  margin-top: 6px;
  font-size: 13px;
  color: rgba(var(--content-color), 1);
}
.blog-mobile-menu ul li .icon {
  --Iconsax-Size: 24px;
  --Iconsax-Color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .blog-mobile-menu ul li .icon {
    --Iconsax-Size: calc(20px + (24 - 20) * ((100vw - 320px) / (600 - 320)));
  }
}
.blog-mobile-menu ul li .icon .inactive {
  display: block;
}
.blog-mobile-menu ul li .icon .active {
  display: none;
}
.blog-mobile-menu ul li.active::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: rgba(var(--theme-color), 1);
  border-radius: 100px;
}
.blog-mobile-menu ul li.active a .icon {
  --Iconsax-Color: rgba(var(--theme-color), 1);
}
.blog-mobile-menu ul li.active a .icon .inactive {
  display: none;
}
.blog-mobile-menu ul li.active a .icon .active {
  display: block;
}
.blog-mobile-menu ul li.active a h5 {
  color: rgba(var(--theme-color), 1);
}

/* ===============
Blog post page CSS 
===================*/
.post-footer-section {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  padding: 15px;
  border-top: 1px solid rgba(var(--content-color), 0.08);
}
.post-footer-section .content-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.post-footer-section .content-footer .left-content {
  display: flex;
  align-items: center;
  gap: 20px;
}
.post-footer-section .content-footer .left-content li a .icon-btn {
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 24px;
}
.post-footer-section .content-footer .right-content {
  padding: 8px 28px;
  border-radius: 6px;
  background-color: rgba(var(--theme-color), 1);
  color: rgba(var(--white), 1);
  font-size: 14px;
  font-weight: 500;
}
body.dark-mode .post-footer-section .content-footer .right-content {
  color: rgba(var(--title-color), 1);
}

/* ===================
learning mobile menu 
======================*/
.learning-mobile-menu {
  width: 100%;
  max-width: 600px;
  z-index: 2;
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background-color: rgba(var(--white), 1);
  padding: 14px 20px;
  box-shadow: 0 -1px 8px 0 rgba(var(--black), 0.1);
}
.learning-mobile-menu ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.learning-mobile-menu ul li .icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.learning-mobile-menu ul li .icon img {
  width: 20px;
  height: 20px;
}
.learning-mobile-menu ul li .icon .inactive {
  display: none;
}
.learning-mobile-menu ul li .icon .bottom-icon .active {
  display: block;
}
.learning-mobile-menu ul li .icon .active {
  display: none;
}
.learning-mobile-menu ul li .icon .inactive {
  display: block;
}
.learning-mobile-menu ul li .icon span {
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.learning-mobile-menu ul li.active .icon {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.learning-mobile-menu ul li.active .icon .bottom-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 100%;
  margin-top: -37px;
  background-color: rgba(var(--theme-color), 1);
}
.learning-mobile-menu ul li.active .icon .bottom-icon::before {
  content: "";
  position: absolute;
  content: "";
  position: absolute;
  width: 54px;
  height: 28px;
  background-color: rgba(var(--white), 1);
  top: 21px;
  left: 50%;
  transform: translate(-50%);
  z-index: -1;
  box-shadow: inset 0 -1px 8px 0 rgba(var(--black), 0.1);
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
body.dark-mode .learning-mobile-menu ul li.active .icon .bottom-icon::before {
  background-color: rgba(var(--body-color), 1);
}
.learning-mobile-menu ul li.active .icon span {
  font-weight: 600;
  color: rgba(var(--black), 1);
}
.learning-mobile-menu ul li.active .icon .inactive {
  display: none;
}
.learning-mobile-menu ul li.active .icon .active {
  display: block;
}

.bottom-total-box {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
  max-width: 600px;
  background-color: rgba(var(--white), 1);
  box-shadow: 0px -1px 8px 0px rgba(var(--black), 0.1);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bottom-total-box .total-left h5 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.bottom-total-box .total-left h6 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--theme-color), 1);
  margin-top: 3px;
}

.total-right a {
  background-color: rgba(var(--theme-color), 1);
  border-radius: 50px;
  padding: 10px 50px;
  color: rgba(var(--white), 1);
  font-size: 16px;
  font-weight: 700;
}
body.dark-mode .total-right a {
  color: rgba(var(--title-color), 1);
}

/* ==============
Fitness CSS 
=================*/
.fitness-mobile-menu {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  background-color: rgba(var(--bg-color), 1);
  box-shadow: 0 5px 24px 0 rgba(var(--black), 0.2);
  z-index: 2;
}
.fitness-mobile-menu ul {
  padding-inline: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fitness-mobile-menu ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
}
.fitness-mobile-menu ul li .icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.fitness-mobile-menu ul li .icon .inactive {
  display: block;
}
@media (max-width: 600px) {
  .fitness-mobile-menu ul li .icon .inactive {
    width: calc(20px + 4 * (100vw - 320px) / 280);
    height: calc(20px + 4 * (100vw - 320px) / 280);
  }
}
.fitness-mobile-menu ul li .icon .active {
  display: none;
}
.fitness-mobile-menu ul li h5 {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .fitness-mobile-menu ul li h5 {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
  }
}
.fitness-mobile-menu ul li a {
  position: relative;
  text-align: center;
}
.fitness-mobile-menu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  top: -12px;
  width: 0;
  height: 3px;
  border-radius: 50px;
  background-color: rgba(var(--theme-color), 1);
  transition: all 0.2s ease-in-out;
}
.fitness-mobile-menu ul li.active .icon .inactive {
  display: none;
}
.fitness-mobile-menu ul li.active .icon .active {
  display: block;
}
.fitness-mobile-menu ul li.active h5 {
  color: rgba(var(--theme-color), 1);
}
.fitness-mobile-menu ul li.active a::after {
  width: 100%;
}

.furniture-cart-total {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  max-width: 600px;
  z-index: 1;
  width: 100%;
  padding: 15px;
  background-color: rgba(var(--white), 1);
  box-shadow: 0px 4px 24px rgba(var(--black), 0.13);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.furniture-cart-total h6 {
  color: rgba(var(--content-color), 1);
  font-size: 14px;
  font-weight: 400;
}
.furniture-cart-total h5 {
  margin-top: 2px;
  color: rgba(var(--title-color), 1);
  font-size: 20px;
  font-weight: 600;
}
.furniture-cart-total .checkout-btn {
  color: rgba(var(--white), 1);
  font-size: 18px;
  font-weight: 500;
  padding: 12px 34px;
  border-radius: 50px;
  background-color: rgba(var(--theme-color), 1);
  text-align: center;
}
body.dark-mode .furniture-cart-total .checkout-btn {
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .furniture-cart-total .checkout-btn {
    padding: calc(8px + 2 * (100vw - 320px) / 280) calc(22px + 28 * (100vw - 320px) / 280);
    font-size: calc(14px + 4 * (100vw - 320px) / 280);
  }
}

.coupon-sec-card {
  border: 1px dashed rgba(var(--theme-color), 1);
  background-color: rgba(var(--theme-color), 0.07);
  border-radius: 10px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.coupon-sec-card::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  top: 17px;
  left: -6px;
  border-radius: 100%;
  background-color: rgba(var(--white), 1);
  border-right: 1px dashed rgba(var(--theme-color), 1);
}
.coupon-sec-card::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  top: 17px;
  right: -6px;
  border-radius: 100%;
  background-color: rgba(var(--white), 1);
  border-left: 1px dashed rgba(var(--theme-color), 1);
}
.coupon-sec-card h5 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.coupon-sec-card h6 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--theme-color), 1);
  border-left: 1px dashed rgba(var(--theme-color), 1);
  padding-left: 18px;
}

.furniture-amount-list {
  padding-top: 40px;
}
.furniture-amount-list .dash-line {
  border-top: 1px dashed rgba(var(--content-color), 0.6);
}
.furniture-amount-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.furniture-amount-list li span {
  color: rgba(var(--title-color), 1);
}
.furniture-amount-list li .total {
  color: rgba(var(--theme-color), 1);
  font-size: 16px;
  font-weight: 600;
}
.furniture-amount-list li + li {
  margin-top: 13px;
}

/* ============
furniture CSS 
===============*/
.simple-mobile-menu {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  background-color: rgba(var(--white), 1);
  box-shadow: 0 0px 12px 0 rgba(var(--black), 0.07);
  z-index: 2;
}
body.dark-mode .simple-mobile-menu {
  background-color: rgba(var(--bg-color), 1);
}
.simple-mobile-menu ul {
  padding-inline: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.simple-mobile-menu ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
}
.simple-mobile-menu ul li .bag {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: rgba(var(--theme-color), 1);
}
@media (max-width: 600px) {
  .simple-mobile-menu ul li .bag {
    width: calc(35px + 5 * (100vw - 320px) / 280);
    height: calc(35px + 5 * (100vw - 320px) / 280);
  }
}
.simple-mobile-menu ul li .bag .bag-icon {
  --Iconsax-Size: 25px;
  --Iconsax-Color: rgba(var(--white), 1);
}
body.dark-mode .simple-mobile-menu ul li .bag .bag-icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .simple-mobile-menu ul li .bag .bag-icon {
    --Iconsax-Size: calc(20px + (25 - 20) * ((100vw - 320px) / (600 - 320)));
  }
}
.simple-mobile-menu ul li .icon {
  text-align: center;
}
.simple-mobile-menu ul li .icon .bottom-icon {
  --Iconsax-Size: 28px;
  --Iconsax-Color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .simple-mobile-menu ul li .icon .bottom-icon {
    --Iconsax-Size: calc(22px + (28 - 22) * ((100vw - 320px) / (600 - 320)));
  }
}
.simple-mobile-menu ul li h5 {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .simple-mobile-menu ul li h5 {
    font-size: calc(12px + 2 * (100vw - 320px) / 280);
  }
}
.simple-mobile-menu ul li.active .bottom-icon {
  --Iconsax-Color: rgba(var(--theme-color), 1) ;
}
.simple-mobile-menu ul li.active h5 {
  color: rgba(var(--theme-color), 1);
}

/* ============
salon CSS
===========*/
.bottom-navbar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  background-color: rgba(var(--white), 1);
  box-shadow: 0 -1px 4px 0 rgba(var(--black), 0.04);
  z-index: 2;
  padding: 6px 20px;
}
.dark-mode .bottom-navbar {
  background-color: rgba(var(--body-color), 1);
}
@media (max-width: 600px) {
  .bottom-navbar {
    padding-inline: calc(5px + 15 * (100vw - 320px) / 280);
  }
}
.bottom-navbar ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bottom-navbar ul li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bottom-navbar ul li .icon {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.bottom-navbar ul li .icon .menu-icon {
  --Iconsax-Size: 24px;
  --Iconsax-Color: rgba(var(--title-color), 0.81);
  padding: 6px 14px;
  border-radius: 50px;
  transition: background-color 0.3s ease;
}
@media (max-width: 600px) {
  .bottom-navbar ul li .icon .menu-icon {
    --Iconsax-Size: calc(22px + (24 - 22) * ((100vw - 320px) / (600 - 320)));
  }
}
.bottom-navbar ul li .icon h5 {
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.bottom-navbar ul li.active .icon .menu-icon {
  background-color: rgba(var(--theme-color), 0.2);
  --Iconsax-Color: rgba(var(--theme-color), 1);
}
.bottom-navbar ul li.active .icon h5 {
  color: rgba(var(--theme-color), 1);
}

/* =========== Movie CSS ============*/
.gradient-menu-panel {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  border-top: 1px solid rgba(var(--border), 1);
  background-color: rgba(var(--body-color), 1);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  z-index: 2;
  padding: 13px 19px;
  overflow: hidden;
}
.gradient-menu-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(32, 93, 238, 0.15) -29.29%, rgba(32, 93, 238, 0) 122.14%);
}
@media (max-width: 600px) {
  .gradient-menu-panel {
    padding-inline: calc(5px + 14 * (100vw - 320px) / 280);
  }
}
.gradient-menu-panel ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gradient-menu-panel ul li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gradient-menu-panel ul li .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 5px;
}
.gradient-menu-panel ul li .icon img {
  opacity: 50%;
}
.gradient-menu-panel ul li .icon span {
  font-size: 14px;
  font-weight: 300;
  color: rgba(var(--content-color), 1);
}
.gradient-menu-panel ul li.active .icon img {
  opacity: 100%;
}
.gradient-menu-panel ul li.active .icon span {
  color: rgba(var(--title-color), 1);
}

/**=====================
  4.6   Product box CSS
========================**/
.product-box {
  height: 100%;
  background-color: rgba(var(--white), 1);
}
.dark-mode .product-box {
  background-color: rgba(var(--body-color), 1);
}
.product-box .img-part {
  box-shadow: 0px 2px 4px rgba(var(--black), 0.05);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.product-box .img-part .product-image {
  width: 100%;
}
.product-box .img-part .wishlist-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 100%;
  position: absolute;
  top: 10px;
  right: 10px;
  box-shadow: 0px 2px 4px rgba(var(--black), 0.04);
  background-color: rgba(var(--white), 1);
  border: none;
}
.product-box .img-part .wishlist-btn.btn {
  background-color: rgba(var(--white), 1) !important;
}
.product-box .img-part .wishlist-btn.active,
.product-box .img-part .wishlist-btn :active,
.product-box .img-part .wishlist-btn :hover {
  border: transparent !important;
  background-color: rgba(var(--white), 1) !important;
}
.product-box .img-part .wishlist-btn:not(.btn-check) + .btn:active {
  border: transparent !important;
}
.product-box .img-part .wishlist-btn .icli {
  color: rgba(var(--content-color), 1);
}
.product-box .img-part .wishlist-btn .icbo {
  display: none;
}
.product-box .img-part .wishlist-btn.active .icli {
  display: none;
}
.product-box .img-part .wishlist-btn.active .icbo {
  display: flex;
  color: rgba(var(--theme-color), 1);
}
.product-box .img-part .wishlist-btn.active .effect:before {
  animation: fireworkLine 0.5s linear 0.1s;
}
.product-box .img-part .wishlist-btn.active .effect:after {
  animation: fireworkPoint 0.5s linear 0.1s;
}
.product-box .product-content {
  margin-top: 8px;
}
.product-box .product-content .ratings {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  line-height: 1;
  font-size: 12px;
  font-weight: 400;
  background-color: rgba(var(--secondary-color), 0.1);
  border-radius: 100px;
}
.product-box .product-content .product-name {
  margin-top: 4px;
  color: rgba(var(--title-color), 1);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
  font-size: 14px;
}
.product-box .product-content .price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 5px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.product-box .product-content .price del {
  color: rgba(var(--content-color), 1);
}
.product-box .product-content .price span {
  color: rgba(var(--error-color), 1);
}

.horizontal-product-box {
  border: 1px solid rgba(var(--border-color), 1);
  border-radius: 6px;
}
body.dark-mode .horizontal-product-box {
  border-color: rgba(var(--body-color), 1);
}
body.dark-mode .horizontal-product-box .product-content {
  background-color: rgba(var(--light-bg), 1);
}
.horizontal-product-box .product-content {
  padding: 10px;
  background-color: rgba(var(--white), 1);
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.horizontal-product-box .product-content .product-name {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  font-size: 14px;
  color: rgba(var(--title-color), 1);
  font-weight: 400;
}
.horizontal-product-box .product-content .ratings {
  display: flex;
  align-items: normal;
  gap: 3px;
  background-color: rgba(var(--light-bg), 1);
  padding: 5px 10px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
}
body.dark-mode .horizontal-product-box .product-content .ratings {
  background-color: rgba(var(--dark-bg), 1);
}
.horizontal-product-box .product-content .price {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.horizontal-product-box .product-content .price del {
  color: rgba(var(--content-color), 1);
}
.horizontal-product-box .product-content .price span {
  color: rgba(var(--error-color), 1);
}
.horizontal-product-box .product-content .tag-list {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.horizontal-product-box .product-content .tag-list li {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 15px;
  color: rgba(var(--content-color), 1);
  background-color: rgba(var(--light-bg), 1);
  border-radius: 5px;
}
body.dark-mode .horizontal-product-box .product-content .tag-list li {
  background-color: rgba(var(--dark-bg), 1);
}

.cart-product-box {
  width: 100%;
  padding: 10px;
  background-color: rgba(var(--light-bg), 1);
  border: 1px solid rgba(var(--border-color), 1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-product-box .img-part {
  width: 80px;
  height: 80px;
}
.cart-product-box .img-part .cart-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3px;
}
.cart-product-box .product-content {
  width: calc(100% - 80px - 8px);
}
.cart-product-box .product-content h5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.cart-product-box .product-content .edit-icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 16px;
}
.cart-product-box .product-content .price {
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.cart-product-box .product-content .price del {
  color: rgba(var(--content-color), 1);
}
.cart-product-box .product-content .plus-minus {
  display: inline-flex;
  align-items: center;
  text-align: center;
  padding: 4px 8px;
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--border-color), 1);
  border-radius: 3px;
}
body.dark-mode .cart-product-box .product-content .plus-minus {
  background-color: rgba(var(--light-bg), 1);
}
body.dark-mode .cart-product-box .product-content .plus-minus input {
  background-color: transparent;
}
.cart-product-box .product-content .plus-minus .icon {
  --Iconsax-Size: 16px;
  --Iconsax-Color: rgba(var(--title-color), 1);
}
.cart-product-box .product-content .plus-minus input {
  color: rgba(var(--theme-color), 1);
  border: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  outline: none;
  width: 35px;
  text-align: center;
}

.plant-product-box {
  background-color: rgba(var(--white), 1);
  padding: 8px;
  border: 1px solid rgba(var(--border-color), 1);
  border-radius: 10px;
  box-shadow: 0px 4px 11px 2px rgba(var(--black), 0.03);
}
.dark-mode .plant-product-box {
  background-color: rgba(var(--light-bg), 1);
}
.plant-product-box .img-part {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 98px;
  width: 100%;
  background-color: rgba(var(--light-bg), 1);
  border: 1px solid rgba(var(--border-color), 1);
  border-radius: 6px;
  position: relative;
}
.dark-mode .plant-product-box .img-part {
  background-color: rgba(var(--body-color), 1);
}
.plant-product-box .img-part .product-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .plant-product-box .img-part {
    height: calc(100px + 25 * (100vw - 320px) / 280);
  }
}
.plant-product-box .img-part .wishlist-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  position: absolute;
  padding: 0;
  top: 7px;
  right: 9px;
  background-color: transparent;
  border: none;
}
.plant-product-box .img-part .wishlist-btn.btn {
  background-color: transparent !important;
}
.plant-product-box .img-part .wishlist-btn.active, .plant-product-box .img-part .wishlist-btn:active, .plant-product-box .img-part .wishlist-btn:hover {
  border: transparent !important;
  background-color: transparent !important;
}
.plant-product-box .img-part .wishlist-btn:not(.btn-check) + .btn:active {
  border: transparent !important;
}
.plant-product-box .img-part .wishlist-btn .icli {
  color: rgba(var(--title-color), 1);
}
.plant-product-box .img-part .wishlist-btn .icbo {
  display: none;
}
.plant-product-box .img-part .wishlist-btn.active .icli {
  display: none;
}
.plant-product-box .img-part .wishlist-btn.active .icbo {
  display: flex;
  color: rgba(var(--theme-color), 1);
}
.plant-product-box .img-part .wishlist-btn.active .effect:before {
  animation: fireworkLine 0.5s linear 0.1s;
}
.plant-product-box .img-part .wishlist-btn.active .effect:after {
  animation: fireworkPoint 0.5s linear 0.1s;
}
.plant-product-box .product-content .product-name {
  margin-top: 10px;
  font-weight: 700;
}
.plant-product-box .product-content h6 {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
.plant-product-box .product-content .price {
  font-weight: 700;
  font-size: 16px;
  color: rgba(var(--theme-color), 1);
}
.plant-product-box .product-content .price del {
  font-weight: 600;
  color: rgba(var(--content-color), 1);
}

.plant-horizontal-product-box {
  width: 100%;
  padding: 10px;
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--border-color), 1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dark-mode .plant-horizontal-product-box {
  background-color: rgba(var(--light-bg), 1);
}
.plant-horizontal-product-box .img-part {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 65px;
  background-color: rgba(var(--light-bg), 0.7);
  border: 1px solid rgba(var(--black), 0.03);
  border-radius: 6px;
}
.plant-horizontal-product-box .img-part .cart-img {
  border-radius: 6px;
}
.dark-mode .plant-horizontal-product-box .img-part {
  background-color: rgba(var(--body-color), 1);
}
.plant-horizontal-product-box .product-content {
  width: calc(100% - 80px - 8px);
}
.plant-horizontal-product-box .product-content h5 {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.plant-horizontal-product-box .product-content h6 {
  font-size: 13px;
  font-weight: 500;
}
.plant-horizontal-product-box .product-content .edit-icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 16px;
}
.plant-horizontal-product-box .product-content .close-icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 18px;
  transform: rotate(45deg);
  cursor: pointer;
}
.plant-horizontal-product-box .product-content .wishlist-btn {
  padding: 4px;
  border-radius: 100%;
  box-shadow: 0px 2px 4px rgba(var(--black), 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--light-bg), 1) !important;
  border: none;
}
.plant-horizontal-product-box .product-content .wishlist-btn .icli {
  color: rgba(var(--title-color), 1);
}
.plant-horizontal-product-box .product-content .wishlist-btn .icbo {
  display: none;
}
.plant-horizontal-product-box .product-content .wishlist-btn.active .icli {
  display: none;
}
.plant-horizontal-product-box .product-content .wishlist-btn.active .icbo {
  display: flex;
  color: rgba(var(--theme-color), 1);
}
.plant-horizontal-product-box .product-content .wishlist-btn.active .effect:before {
  animation: fireworkLine 0.5s linear 0.1s;
}
.plant-horizontal-product-box .product-content .wishlist-btn.active .effect:after {
  animation: fireworkPoint 0.5s linear 0.1s;
}
.plant-horizontal-product-box .product-content .price {
  font-size: 14px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
.plant-horizontal-product-box .product-content .price del {
  color: rgba(var(--content-color), 1);
}
.plant-horizontal-product-box .product-content .price .offer {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: rgba(var(--white), 1);
  border-radius: 50px;
}
.plant-horizontal-product-box .product-content .plus-minus {
  display: inline-flex;
  align-items: center;
  text-align: center;
  padding: 4px 8px;
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--theme-color), 0.1);
  border-radius: 3px;
}
.dark-mode .plant-horizontal-product-box .product-content .plus-minus {
  background-color: rgba(var(--body-color), 1);
}
.plant-horizontal-product-box .product-content .plus-minus .icon {
  --Iconsax-Size: 16px;
  --Iconsax-Color: rgba(var(--title-color), 1);
}
.plant-horizontal-product-box .product-content .plus-minus input {
  background: transparent;
  color: rgba(var(--theme-color), 1);
  border: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  outline: none;
  width: 35px;
  text-align: center;
}

.grocery-product-box {
  padding: 8px;
  border: 1px solid rgba(var(--border-color), 1);
  border-radius: 10px;
  box-shadow: 0px 4px 11px 2px rgba(var(--black), 0.03);
}
body.dark-mode .grocery-product-box {
  background-color: rgba(var(--light-bg), 1);
}
body.dark-mode .grocery-product-box .img-part {
  background-color: rgba(var(--body-color), 1);
}
.grocery-product-box .img-part {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--border-color), 1);
  border-radius: 6px;
  width: 100%;
  padding: 10px;
  box-shadow: none;
  background-color: rgba(var(--light-bg), 1);
}
@media (max-width: 600px) {
  .grocery-product-box .img-part {
    height: calc(100px + 25 * (100vw - 320px) / 280);
  }
}
.grocery-product-box .img-part .product-image .product {
  width: 100%;
  max-height: 82px;
  -o-object-fit: contain;
     object-fit: contain;
}
.grocery-product-box .img-part .wishlist-btn {
  top: 5px;
  right: 5px;
  border: none;
}
.grocery-product-box .img-part .wishlist-btn.btn {
  background-color: transparent !important;
}
.grocery-product-box .product-content .product-name {
  margin-top: 10px;
  font-weight: 700;
  line-height: 1.2;
}
.grocery-product-box .product-content h6 {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
.grocery-product-box .product-content .price {
  margin-top: 0;
  font-weight: 600;
  font-size: 16px;
  color: rgba(var(--theme-color), 1);
}
.grocery-product-box .product-content .price del {
  font-weight: 600;
  color: rgba(var(--content-color), 1);
}

.grocery-horizontal-product-box .img-part {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 65px;
  background-color: rgba(var(--light-bg), 1);
  border: 1px solid rgba(var(--border-color), 1);
  border-radius: 4px;
}
.dark-mode .grocery-horizontal-product-box .img-part {
  background-color: rgba(var(--body-color), 1);
}
.grocery-horizontal-product-box .product-content h5 {
  line-height: 1.2;
}

.pet-selling-product {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media (max-width: 350px) {
  .pet-selling-product {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pet-product-box {
  position: relative;
  border-radius: 14px;
}
.pet-product-box .product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 94px;
  background-color: rgba(var(--light-bg), 1);
  border-radius: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}
.pet-product-box .product-image img {
  padding: 12px;
}
.pet-product-box .wishlist-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  padding: 0;
  position: absolute;
  top: 7px;
  right: 7px;
  border: none;
  background-color: transparent;
}
.pet-product-box .wishlist-btn.btn {
  background-color: transparent !important;
}
.pet-product-box .wishlist-btn.active,
.pet-product-box .wishlist-btn :active,
.pet-product-box .wishlist-btn :hover {
  border: transparent !important;
}
.pet-product-box .wishlist-btn:not(.btn-check) + .btn:active {
  border: transparent !important;
}
.pet-product-box .wishlist-btn .icli {
  color: rgba(var(--content-color), 1);
}
.pet-product-box .wishlist-btn .icbo {
  display: none;
}
.pet-product-box .wishlist-btn.active .icli {
  display: none;
}
.pet-product-box .wishlist-btn.active .icbo {
  display: flex;
  color: rgba(var(--theme-color), 1);
}
.pet-product-box .wishlist-btn.active .effect:before {
  animation: fireworkLine 0.5s linear 0.1s;
}
.pet-product-box .wishlist-btn.active .effect:after {
  animation: fireworkPoint 0.5s linear 0.1s;
}
.pet-product-box .product-name {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.pet-product-box .price {
  display: flex;
  align-items: center;
  margin-top: 2px;
  font-weight: 700;
  font-size: 14px;
  color: rgba(var(--title-color), 1);
  gap: 8px;
}
@media (max-width: 600px) {
  .pet-product-box .price {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
  }
}
.pet-product-box .price del {
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}

.food-product-box {
  box-shadow: 15px 15px 30px 0px rgba(var(--bg-color), 1);
  border-radius: 16px;
}
.food-product-box .food-rating {
  display: flex;
  gap: 5px;
  align-items: baseline;
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 8px 5px;
  background-color: rgba(var(--white), 1);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(var(--dark-bg), 1);
  line-height: 1;
}
.dark-mode .food-product-box .food-rating {
  color: rgba(var(--second-color), 1);
}
.food-product-box .food-rating svg {
  width: 10px;
  height: 10px;
  fill: rgba(var(--theme-color), 1);
}
.food-product-box .f-rating {
  right: 12px;
  left: unset;
  top: 6px;
  background-color: rgba(var(--bg-color), 1);
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.dark-mode .food-product-box .f-rating {
  background-color: rgba(var(--second-color), 1);
  color: rgba(var(--title-color), 1);
}
[dir=rtl] .food-product-box .f-rating {
  right: unset;
  left: 12px;
}
.food-product-box .food-product-image {
  position: relative;
}
.food-product-box .food-product-image img {
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.food-product-box .wishlist-btn {
  display: flex;
  align-items: center;
  position: absolute;
  top: -15%;
  right: 8%;
  padding: 6px;
  border-radius: 100%;
  box-shadow: 0 3px 15px 0 rgba(var(--black), 0.2);
  background-color: rgba(var(--theme-color), 1);
}
[dir=rtl] .food-product-box .wishlist-btn {
  right: unset;
  left: 8%;
}
.food-product-box .wishlist-btn.active,
.food-product-box .wishlist-btn :active,
.food-product-box .wishlist-btn :hover {
  background-color: rgba(var(--theme-color), 1) !important;
  border-color: transparent !important;
}
.food-product-box .wishlist-btn:not(.btn-check) + .btn:active {
  background-color: rgba(var(--theme-color), 1) !important;
  border-color: transparent !important;
}
.food-product-box .wishlist-btn .icli {
  color: rgba(var(--white), 1);
}
.food-product-box .wishlist-btn .icbo {
  display: none;
}
.food-product-box .wishlist-btn.active .icli {
  display: none;
}
.food-product-box .wishlist-btn.active .icbo {
  display: flex;
  color: rgba(var(--white), 1);
}
.food-product-box .wishlist-btn.active .effect:before {
  animation: fireworkLine 0.5s linear 0.1s;
}
.food-product-box .wishlist-btn.active .effect:after {
  animation: fireworkPoint 0.5s linear 0.1s;
}
.food-product-box .fw-list {
  top: 12px;
  right: 15px;
}
.food-product-box .food-product-content {
  position: relative;
  padding: 13px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.dark-mode .food-product-box .food-product-content {
  background-color: rgba(var(--bg-color), 1);
}
.food-product-box .food-product-content h5 {
  font-size: 14px;
  font-weight: 600;
  color: rgba(var(--dark-bg), 1);
}
.food-product-box .food-product-content .food-shipping {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}
.food-product-box .food-product-content .food-shipping .food-free-shipping {
  display: flex;
  align-items: center;
  gap: 6px;
}
.food-product-box .food-product-content .food-shipping .food-free-shipping svg {
  width: 15px;
  height: 15px;
  fill: rgba(var(--theme-color), 1);
}
.food-product-box .food-product-content .food-shipping .food-free-shipping h6 {
  color: rgba(var(--title-color), 1);
}
.dark-mode .food-product-box .food-product-content .food-shipping .food-free-shipping h6 {
  color: rgba(var(--content-color), 1);
}
.food-product-box .food-product-content .food-option {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.food-product-box .food-product-content .food-option li {
  padding: 4px 8px;
  background-color: rgba(var(--bg-color), 1);
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
}
.dark-mode .food-product-box .food-product-content .food-option li {
  background-color: rgba(var(--second-color), 1);
}
.food-product-box .food-product-content .food-option li a {
  color: rgba(var(--content-color), 1);
  font-size: 12px;
  font-weight: 500;
}
.food-product-box .food-product-content .food-option li:hover {
  background-color: rgba(var(--theme-color), 1);
}
.food-product-box .food-product-content .food-option li:hover a {
  color: rgba(var(--dark-bg), 1);
}

.food-product-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding-bottom: 20px;
}

.shop-product-box {
  position: relative;
  box-shadow: 15px 15px 30px 0px rgba(var(--bg-color), 1);
  border-radius: 16px;
}
body.dark-mode .shop-product-box {
  background-color: rgba(var(--bg-color), 1);
  box-shadow: none;
}

.food-product-image img {
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.food-product-content {
  position: relative;
  padding: 12px;
}
.food-product-content a {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: rgba(var(--dark-bg), 1);
}
.food-product-content span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 13px;
  height: 13px;
  border: 1px solid rgba(var(--green), 1);
  border-radius: 3px;
  margin-left: 8px;
}
.food-product-content span::before {
  content: "";
  width: 7px;
  height: 7px;
  background-color: rgba(var(--green), 1);
  border-radius: 50%;
  display: block;
}
[dir=rtl] .food-product-content span {
  margin-left: unset;
  margin-right: 8px;
}
.food-product-content .food-price {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--theme-color), 1);
}
.food-product-content .food-price .price-number {
  border: none;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
.food-product-content .d-flex p {
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
.food-product-content .d-flex p button {
  border: none;
  font-weight: 600;
  background-color: transparent;
  color: rgba(var(--content-color), 1);
}
.food-product-content .d-flex .plus-minus {
  display: inline-flex;
  align-items: center;
  text-align: center;
  cursor: pointer;
  padding: 4px 8px;
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--theme-color), 1);
  border-radius: 3px;
}
.dark-mode .food-product-content .d-flex .plus-minus {
  background-color: rgba(var(--bg-color), 1);
  border-color: rgb(59, 59, 59);
}
.dark-mode .food-product-content .d-flex .plus-minus input {
  background-color: transparent;
}
.food-product-content .d-flex .plus-minus .icon {
  --Iconsax-Size: 16px;
  --Iconsax-Color: rgba(var(--theme-color), 1);
}
.food-product-content .d-flex .plus-minus input {
  width: 35px;
  color: rgba(var(--theme-color), 1);
  border: none;
  text-align: center;
  font-size: 15px;
  outline: none;
  font-weight: 500;
  line-height: 1;
  background-color: transparent;
}
.food-product-content .food-shipping {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}
.food-product-content .food-shipping .food-free-shipping {
  display: flex;
  align-items: center;
  gap: 6px;
}
.food-product-content .food-shipping .food-free-shipping svg {
  width: 15px;
  height: 15px;
  fill: rgba(var(--theme-color), 1);
}
.food-product-content .food-shipping .food-free-shipping h6 {
  color: rgba(var(--title-color), 1);
}
.food-product-content .food-option {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}
.food-product-content .food-option li {
  padding: 4px 8px;
  background-color: rgba(var(--bg-color), 1);
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
}
.dark-mode .food-product-content .food-option li {
  background-color: rgba(var(--second-color), 1);
}
.dark-mode .food-product-content .food-option li:hover a {
  color: rgba(var(--bg-color), 1);
}
.food-product-content .food-option li a {
  color: rgba(var(--content-color), 1);
  font-size: 12px;
  font-weight: 500;
}
.food-product-content .food-option li:hover {
  background-color: rgba(var(--theme-color), 1);
}
.food-product-content .food-option li:hover a {
  color: rgba(var(--dark-bg), 1);
}

.shop-product-rating {
  position: absolute;
  top: 10px;
  right: 8px;
  padding: 5px 7px 4px;
  background-color: rgba(var(--bg-color), 1);
  border-radius: 50px;
}
[dir=rtl] .shop-product-rating {
  right: unset;
  left: 8px;
}
.shop-product-rating svg {
  margin-right: 2px;
  margin-bottom: 3px;
  width: 12px;
  height: 12px;
  fill: rgba(var(--theme-color), 1);
}
[dir=rtl] .shop-product-rating svg {
  margin-right: unset;
  margin-left: 2px;
}

.shop-rate {
  top: 35px;
  right: unset;
  left: 90px;
}
[dir=rtl] .shop-rate {
  right: 90px;
  left: unset;
}

.restaurant-rating {
  position: absolute;
  top: 10px;
  right: 8px;
  padding: 5px 10px 3px;
  background-color: rgba(var(--theme-color), 0.1);
  border-radius: 50px;
}
.dark-mode .restaurant-rating {
  background-color: rgba(var(--bg-color), 1);
}
[dir=rtl] .restaurant-rating {
  right: unset;
  left: 8px;
}
.restaurant-rating svg {
  margin-right: 2px;
  margin-bottom: 3px;
  width: 12px;
  height: 12px;
  fill: rgba(var(--theme-color), 1);
}
[dir=rtl] .restaurant-rating svg {
  margin-right: unset;
  margin-left: 2px;
}

.plus-minus {
  float: inline-end;
  margin-top: -16px;
  display: inline-flex;
  align-items: center;
  text-align: center;
  cursor: pointer;
  padding: 4px 8px;
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--theme-color), 1);
  border-radius: 3px;
}
.plus-minus .icon {
  --Iconsax-Size: 16px;
  --Iconsax-Color: rgba(var(--theme-color), 1);
}
.plus-minus input {
  width: 35px;
  color: rgba(var(--theme-color), 1);
  border: none;
  text-align: center;
  font-size: 15px;
  outline: none;
  font-weight: 500;
  line-height: 1;
}

.food-detail-section:has(.restaurant-slider-detail .form-check .form-check-input:checked) ~ .food-product-section .food-product-wrapper.non-veg {
  display: grid;
}
.food-detail-section:has(.restaurant-slider-detail .form-check .form-check-input:checked) ~ .food-product-section .food-product-wrapper.veg {
  display: none;
}
.food-detail-section:has(.restaurant-slider-detail .form-check .form-check-input:checked) ~ .food-product-section .food-product-wrapper .food-product-content span {
  border-color: rgba(var(--error-color), 1);
}
.food-detail-section:has(.restaurant-slider-detail .form-check .form-check-input:checked) ~ .food-product-section .food-product-wrapper .food-product-content span::before {
  background-color: rgba(var(--error-color), 1);
}

.food-product-section .food-product-wrapper.veg {
  display: grid;
}
.food-product-section .food-product-wrapper.non-veg {
  display: none;
}

/* ====================
Hotel Booking card CSS 
=======================*/
.hotel-wishlist-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 18px;
}
@media (max-width: 374px) {
  .hotel-wishlist-card {
    grid-template-columns: 1fr;
  }
}

.hotel-card-box {
  box-shadow: 0px 2px 12px 0px rgba(var(--theme-color), 0.04);
  border-radius: 16px;
  border: 1px solid rgba(var(--theme-color), 0.1);
}
.hotel-card-box .hotel-card-image img {
  height: 182px;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
@media (max-width: 600px) {
  .hotel-card-box .hotel-card-image img {
    height: calc(140px + 42 * (100vw - 320px) / 280);
  }
}
.hotel-card-box .hotel-card-contant {
  position: relative;
  padding: 12px;
  background-color: rgba(var(--white), 1);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.hotel-card-box .hotel-card-contant .wishlist-btn {
  display: flex;
  align-items: center;
  position: absolute;
  top: -15%;
  right: 8%;
  padding: 6px;
  border-radius: 100%;
  background-color: rgba(var(--white), 1) !important;
  border: 1px solid rgba(var(--theme-color), 0.1);
}
[dir=rtl] .hotel-card-box .hotel-card-contant .wishlist-btn {
  right: unset;
  left: 8%;
}
.hotel-card-box .hotel-card-contant .wishlist-btn .icli {
  color: rgba(var(--theme-color), 1);
}
.hotel-card-box .hotel-card-contant .wishlist-btn .icbo {
  display: none;
}
.hotel-card-box .hotel-card-contant .wishlist-btn.active .icli {
  display: none;
}
.hotel-card-box .hotel-card-contant .wishlist-btn.active .icbo {
  display: flex;
  color: rgba(var(--error-color), 1);
}
.hotel-card-box .hotel-card-contant .wishlist-btn.active .effect:before {
  animation: fireworkLine 0.5s linear 0.1s;
}
.hotel-card-box .hotel-card-contant .wishlist-btn.active .effect:after {
  animation: fireworkPoint 0.5s linear 0.1s;
}
.hotel-card-box .hotel-card-contant h4 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  font-size: 14px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.hotel-card-box .hotel-card-contant h5 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  margin-top: 3px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.hotel-card-box .hotel-card-contant h5 .iconsax {
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 14px;
}
.hotel-card-box .hotel-card-contant .price-rate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.hotel-card-box .hotel-card-contant .price-rate h6 {
  font-size: 14px;
  font-weight: 700;
  color: rgba(var(--theme-color), 1);
}
.hotel-card-box .hotel-card-contant .price-rate h6 span {
  font-weight: 600;
  color: rgba(var(--content-color), 1);
}
.hotel-card-box .hotel-card-contant .price-rate h5 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}

/* ============
furniture CSS 
==============*/
.furniture-product-wrapper {
  row-gap: 20px;
  margin-top: 12px;
}

.furniture-product-box {
  background-color: rgba(var(--bg-color), 1);
  border-radius: 8px;
  padding: 10px;
  position: relative;
}
.furniture-product-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 146px;
  background-color: rgba(var(--white), 1);
  border-radius: 8px;
}
.furniture-product-box .wishlist-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 100%;
  position: absolute;
  top: 15px;
  right: 18px;
  box-shadow: 0px 2px 8px rgba(var(--black), 0.1);
  background-color: rgba(var(--white), 1);
}
.furniture-product-box .wishlist-btn.active, .furniture-product-box .wishlist-btn:active, .furniture-product-box .wishlist-btn:hover {
  border-color: transparent !important;
  background-color: rgba(var(--white), 1) !important;
}
.furniture-product-box .wishlist-btn:not(.btn-check) + .btn:active {
  border-color: transparent !important;
}
.furniture-product-box .wishlist-btn .icli {
  color: rgba(var(--title-color), 1);
}
.furniture-product-box .wishlist-btn .icbo {
  display: none;
}
.furniture-product-box .wishlist-btn.active .icli {
  display: none;
}
.furniture-product-box .wishlist-btn.active .icbo {
  display: flex;
  color: rgba(var(--error-color), 1);
}
.furniture-product-box .wishlist-btn.active .effect:before {
  animation: fireworkLine 0.5s linear 0.1s;
}
.furniture-product-box .wishlist-btn.active .effect:after {
  animation: fireworkPoint 0.5s linear 0.1s;
}
.furniture-product-box .product-details {
  padding: 12px 12px 0 12px;
  position: relative;
}
.furniture-product-box .product-details .cart-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -18px;
  right: 10px;
  background-color: rgba(var(--theme-color), 1);
  border-radius: 100%;
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 18px;
  cursor: pointer;
}
body.dark-mode .furniture-product-box .product-details .cart-icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .furniture-product-box .product-details .cart-icon {
    width: calc(25px + 0 * (100vw - 320px) / 280);
    height: calc(25px + 3 * (100vw - 320px) / 280);
    --Iconsax-Size: calc(16px + (18 - 16) * ((100vw - 320px) / (600 - 320)));
  }
}
.furniture-product-box .product-details h4 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  font-size: 15px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .furniture-product-box .product-details h4 {
    font-size: calc(13px + 2 * (100vw - 320px) / 280);
  }
}
.furniture-product-box .product-details .product-price {
  margin-top: 3px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.furniture-product-box .product-details .product-price h5 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.furniture-product-box .product-details .product-price h6 {
  font-size: 15px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .furniture-product-box .product-details .product-price h6 {
    font-size: calc(13px + 2 * (100vw - 320px) / 280);
  }
}

/*=============
 Jewellery CSS 
 ===============*/
.trend-gold-wrapper {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.trend-gold-wrapper .trend-jewellery-box {
  border: 1px solid rgba(var(--content-color), 0.2);
  background-color: rgba(var(--white), 1);
  padding: 10px;
  border-radius: 10px;
}
body.dark-mode .trend-gold-wrapper .trend-jewellery-box {
  background-color: rgba(var(--body-color), 1);
}
@media (max-width: 600px) {
  .trend-gold-wrapper .trend-jewellery-box {
    padding: calc(8px + 2 * (100vw - 320px) / 280);
  }
}
.trend-gold-wrapper .trend-jewellery-box .jewellery-image {
  position: relative;
  border-top-left-radius: 8px;
}
.trend-gold-wrapper .trend-jewellery-box .jewellery-image a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100px;
  background-color: rgba(var(--bg-color), 1);
}
.trend-gold-wrapper .trend-jewellery-box .jewellery-image .offer {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(var(--error-color), 1);
  color: rgba(var(--white), 1);
  font-size: 12px;
  font-weight: 500;
  padding: 3px 5px;
  border-top-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.trend-gold-wrapper .trend-jewellery-box .jewellery-image .wishlist-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 100%;
  position: absolute;
  top: 8px;
  right: 8px;
  box-shadow: 0px 2px 8px rgba(var(--black), 0.1);
  background-color: rgba(var(--white), 1);
}
.trend-gold-wrapper .trend-jewellery-box .jewellery-image .wishlist-btn.btn {
  background-color: rgba(var(--white), 1) !important;
}
@media (max-width: 600px) {
  .trend-gold-wrapper .trend-jewellery-box .jewellery-image .wishlist-btn {
    top: calc(3px + 5 * (100vw - 320px) / 280);
    right: calc(3px + 5 * (100vw - 320px) / 280);
  }
}
body.dark-mode .trend-gold-wrapper .trend-jewellery-box .jewellery-image .wishlist-btn {
  background-color: rgba(var(--body-color), 1);
}
body.dark-mode .trend-gold-wrapper .trend-jewellery-box .jewellery-image .wishlist-btn:hover, body.dark-mode .trend-gold-wrapper .trend-jewellery-box .jewellery-image .wishlist-btn:active {
  background-color: rgba(var(--body-color), 1);
}
.trend-gold-wrapper .trend-jewellery-box .jewellery-image .wishlist-btn.active, .trend-gold-wrapper .trend-jewellery-box .jewellery-image .wishlist-btn:active, .trend-gold-wrapper .trend-jewellery-box .jewellery-image .wishlist-btn:hover {
  border-color: transparent !important;
  background-color: rgba(var(--white), 1);
}
.trend-gold-wrapper .trend-jewellery-box .jewellery-image .wishlist-btn:not(.btn-check) + .btn:active {
  border-color: transparent !important;
}
.trend-gold-wrapper .trend-jewellery-box .jewellery-image .wishlist-btn .icli {
  color: rgba(var(--title-color), 1);
}
.trend-gold-wrapper .trend-jewellery-box .jewellery-image .wishlist-btn .icbo {
  display: none;
}
.trend-gold-wrapper .trend-jewellery-box .jewellery-image .wishlist-btn.active .icli {
  display: none;
}
.trend-gold-wrapper .trend-jewellery-box .jewellery-image .wishlist-btn.active .icbo {
  display: flex;
  color: rgba(var(--error-color), 1);
}
.trend-gold-wrapper .trend-jewellery-box .jewellery-image .wishlist-btn.active .effect:before {
  animation: fireworkLine 0.5s linear 0.1s;
}
.trend-gold-wrapper .trend-jewellery-box .jewellery-image .wishlist-btn.active .effect:after {
  animation: fireworkPoint 0.5s linear 0.1s;
}
.trend-gold-wrapper .trend-jewellery-box .trend-content {
  padding-top: 10px;
  position: relative;
}
.trend-gold-wrapper .trend-jewellery-box .trend-content .plus {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: rgba(var(--theme-color), 1);
  position: absolute;
  top: -16px;
  right: 8px;
}
@media (max-width: 600px) {
  .trend-gold-wrapper .trend-jewellery-box .trend-content .plus {
    width: calc(20px + 8 * (100vw - 320px) / 280);
    height: calc(20px + 8 * (100vw - 320px) / 280);
  }
}
.trend-gold-wrapper .trend-jewellery-box .trend-content .icon {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 19px;
}
@media (max-width: 600px) {
  .trend-gold-wrapper .trend-jewellery-box .trend-content .icon {
    --Iconsax-Size: calc(17px + (19 - 17) * ((100vw - 320px) / (600 - 320)));
  }
}
.trend-gold-wrapper .trend-jewellery-box h3 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.trend-gold-wrapper .trend-jewellery-box h4 {
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  margin-top: 2px;
}
.trend-gold-wrapper .trend-jewellery-box .gold-price {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.trend-gold-wrapper .trend-jewellery-box .gold-price h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .trend-gold-wrapper .trend-jewellery-box .gold-price h4 {
    font-size: calc(13px + 2 * (100vw - 320px) / 280);
  }
}
.trend-gold-wrapper .trend-jewellery-box .gold-price h5 {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(var(--rate-color), 1);
}

/**=====================
 4.7   Profile Page CSS
========================**/
.account-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.account-box .profile-image {
  width: 80px;
  height: 80px;
}
.account-box .profile-image .profile {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.account-box .account-content {
  width: calc(100% - 80px - 10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.account-box .account-content h3 {
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  color: rgba(var(--title-color), 1);
}
.account-box .account-content h5 {
  margin-top: 4px;
  font-weight: 400;
  font-size: 14px;
  color: rgba(var(--content-color), 1);
}
.account-box .account-content .edit {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--error-color), 1);
}

.account-list {
  margin-top: 25px;
}
.account-list li {
  width: 100%;
  margin-bottom: 20px;
}
.account-list li:last-child {
  margin-bottom: 0;
}
.account-list li .setting-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid rgba(var(--border-color), 1);
  border-radius: 100px;
}
.account-list li .setting-box .setting-icon .main-icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 24px;
}
.account-list li .setting-box .setting-icon .main-icon.main-img {
  width: 20px;
}
.account-list li .setting-box .setting-content {
  width: calc(100% - 24px - 10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.account-list li .setting-box .setting-content h5 {
  line-height: 1;
  font-weight: 400;
  font-size: 15px;
  color: rgba(var(--title-color), 1);
}
.account-list li .setting-box .setting-content h6 {
  margin-top: 5px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.account-list li .setting-box .setting-content .arrow-icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 18px;
}

.profile-img {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 80px;
  height: 80px;
}
.profile-img .profile {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.profile-img .edit-icon {
  padding: 5px;
  --Iconsax-Color: rgba(var(--theme-color), 1);
  --Iconsax-Size: 18px;
  background-color: rgba(var(--light-bg), 1);
  border-radius: 6px;
  position: absolute;
  bottom: -5px;
  right: -5px;
  cursor: pointer;
  z-index: 1;
}
.profile-img #file {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 26px;
  height: 26px;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}
.profile-img #file::file-selector-button {
  cursor: pointer;
}

.option-listing {
  margin-top: 15px;
}
.option-listing li {
  width: 100%;
}
.option-listing li:first-child .form-check {
  padding-top: 0;
}
.option-listing li:last-child .form-check {
  padding-bottom: 0;
  border-bottom: none;
}
.option-listing li .form-check {
  display: flex;
  align-items: center;
  padding-left: 0;
  margin-bottom: 0;
  padding-block: 15px;
  border-bottom: 1px solid rgba(var(--border-color), 1);
}
[dir=rtl] .option-listing li .form-check {
  padding-left: unset;
  padding-right: 0;
}
.option-listing li .form-check .form-check-label {
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  color: rgba(var(--title-color), 1);
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.option-listing li .form-check .form-check-label .flag {
  border-radius: 4px;
}
.option-listing li .form-check .form-check-label .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
}
@media (max-width: 600px) {
  .option-listing li .form-check .form-check-label {
    font-size: calc(14px + 2 * (100vw - 320px) / 448);
  }
}
.option-listing li .form-check input[type=radio] {
  display: block;
}
.option-listing li .form-check .form-check-input {
  width: 20px;
  height: 20px;
  float: unset;
  margin: 0;
  box-shadow: none;
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--border-color), 1);
  filter: none;
}
body.dark-mode .option-listing li .form-check .form-check-input {
  background-color: transparent;
}
.option-listing li .form-check .form-check-input:checked {
  position: relative;
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--theme-color), 1);
}
.option-listing li .form-check .form-check-input:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: rgba(var(--theme-color), 1);
  border-radius: 100%;
}
.option-listing li .form-check .form-check-input:checked:focus {
  box-shadow: none;
}

.profile-setting-details {
  margin-top: 20px;
  border-top: 1px solid rgba(var(--border-color), 1);
}

.grocery-account-list li .setting-box {
  padding: 8px 12px;
  background-color: rgba(var(--light-bg), 1);
  border-radius: 10px;
  border: 1px solid rgba(var(--border-color), 1);
}
.grocery-account-list li .setting-box .setting-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: rgba(var(--white), 1);
}
.dark-mode .grocery-account-list li .setting-box .setting-icon {
  background-color: rgba(var(--body-color), 1);
}
.grocery-account-list li .setting-box .account-content .arrow-icon {
  --Iconsax-Color: rgba(var(--content-color), 1);
}

.grocery-profile-background {
  border-radius: 6px;
  margin-top: 40px;
  background-color: rgba(var(--light-bg), 1);
}
.grocery-profile-background .profile-part {
  padding: 0 20px 20px;
  text-align: center;
}
.grocery-profile-background .profile-part .profile-pic {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  margin-top: -40px;
}
.grocery-profile-background .profile-part h3 {
  margin-top: 14px;
  color: rgba(var(--title-color), 1);
}
.grocery-profile-background .profile-part h4 {
  font-size: 13px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}

.food-profile-background {
  border-radius: 6px;
  margin-top: 50px;
  background-color: rgba(var(--light-bg), 1);
}
body.dark-mode .food-profile-background {
  background-color: rgba(var(--bg-color), 1);
}
.food-profile-background .profile-part {
  padding: 0 20px 20px;
  text-align: center;
}
.food-profile-background .profile-part .profile-pic {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
  margin-top: -40px;
}
.food-profile-background .profile-part h3 {
  margin-top: 14px;
  color: rgba(var(--title-color), 1);
}
.food-profile-background .profile-part h4 {
  font-size: 13px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}

.food-account-list {
  margin-top: 16px;
}
.food-account-list ~ .food-account-list {
  margin-top: 22px;
}
.food-account-list .profile-listing {
  margin: 0;
}
.food-account-list .profile-listing + .profile-listing {
  border-top: 1px solid rgba(var(--bg-color), 1);
  margin-top: 10px;
  padding-top: 10px;
}
.food-account-list .profile-listing .setting-box {
  padding: 0;
  border: none;
}
.food-account-list .profile-listing .setting-box .setting-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: rgba(var(--bg-color), 1);
}
.food-account-list .profile-listing .setting-box .setting-icon .main-icon {
  --Iconsax-Size: 20px;
}
.food-account-list .profile-listing .setting-box .account-content .arrow-icon {
  --Iconsax-Color: rgba(var(--content-color), 1);
}
.food-account-list .profile-listing .setting-box .toggle-left-to-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.food-account-list .profile-listing .setting-box .toggle-left-to-right .toggle-button {
  display: flex;
  position: relative;
}
.food-account-list .profile-listing .setting-box .toggle-left-to-right .toggle-button span {
  display: flex;
  position: relative;
  width: 60px;
  height: 32px;
  border-radius: 100px;
  background-color: rgba(var(--bg-color), 1);
  transition: 0.5s;
  cursor: pointer;
}
@media (max-width: 600px) {
  .food-account-list .profile-listing .setting-box .toggle-left-to-right .toggle-button span {
    width: calc(50px + 10 * (100vw - 320px) / 280);
    height: calc(25px + 7 * (100vw - 320px) / 280);
  }
}
.food-account-list .profile-listing .setting-box .toggle-left-to-right .toggle-button span::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 6px;
  left: 5px;
  border-radius: 100%;
  background-color: rgba(var(--content-color), 0.5);
  transition: 0.5s;
}
@media (max-width: 600px) {
  .food-account-list .profile-listing .setting-box .toggle-left-to-right .toggle-button span::before {
    width: calc(14px + 6 * (100vw - 320px) / 280);
    height: calc(14px + 6 * (100vw - 320px) / 280);
  }
}
.food-account-list .profile-listing .setting-box .toggle-left-to-right .toggle-button input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
}
.food-account-list .profile-listing .setting-box .toggle-left-to-right .toggle-button input[type=checkbox]:checked + span {
  background-color: rgba(var(--theme-color), 0.3);
}
.food-account-list .profile-listing .setting-box .toggle-left-to-right .toggle-button input[type=checkbox]:checked + span::before {
  left: 35px;
  background-color: rgba(var(--theme-color), 1);
}
@media (max-width: 600px) {
  .food-account-list .profile-listing .setting-box .toggle-left-to-right .toggle-button input[type=checkbox]:checked + span::before {
    left: calc(31px + 4 * (100vw - 320px) / 280);
  }
}

.setting-title {
  margin: 0;
}
.setting-title ~ .setting-title {
  margin-top: 30px;
}

/* ==================
chatting profile
=====================*/
.chatting-profile-img {
  width: 106px;
  height: 106px;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  border: 5px solid rgba(var(--white), 1);
  border-radius: 100%;
}
@media (max-width: 600px) {
  .chatting-profile-img {
    width: calc(90px + 16 * (90vw - 320px) / 280);
    height: calc(90px + 16 * (100vw - 320px) / 280);
  }
}
.chatting-profile-img .edit-icon {
  padding: 5px;
  --Iconsax-Color: rgba(var(--light-blue), 1);
  --Iconsax-Size: 18px;
  background-color: rgba(var(--light-bg), 1);
  position: absolute;
  bottom: 6px;
  right: -6px;
  cursor: pointer;
}
@media (max-width: 600px) {
  .chatting-profile-img .edit-icon {
    --Iconsax-Size: calc(16px + (18 - 16) * ((90vw - 320px) / (600 - 320))) ;
  }
}
.chatting-profile-img #file {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}

.profile-body {
  margin-top: 60px;
}
@media (max-width: 600px) {
  .profile-body {
    margin-top: calc(48px + 12 * (100vw - 320px) / 280);
  }
}
.profile-body .profile-setting {
  margin-top: 16px;
}
.profile-body .profile-setting h3 {
  font-size: 16px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
.profile-body .profile-setting .profile-setting-content {
  margin-top: 15px;
}
.profile-body .profile-setting .profile-setting-content li {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.profile-body .profile-setting .profile-setting-content li + li {
  margin-top: 18px;
}
.profile-body .profile-setting .profile-setting-content li a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.profile-body .profile-setting .profile-setting-content li i {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
}
.profile-body .profile-setting .profile-setting-content li .mute {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
}
.profile-body .profile-setting .profile-setting-content li .mute .icon {
  display: inline;
}
.profile-body .profile-setting .profile-setting-content li .mute .mute-icon {
  display: none;
}
.profile-body .profile-setting .profile-setting-content li .mute input.toggle-mute:checked ~ .icon {
  display: none;
}
.profile-body .profile-setting .profile-setting-content li .mute input.toggle-mute:checked ~ .mute-icon {
  display: inline;
}

/* =============
modal 
================*/
.modal-content {
  padding: 20px;
  border: none;
}
.modal-content p {
  font-size: 18px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}

/* ===================
Hotel profile CSS 
======================*/
.hotel-profile-wrapper {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
}
.hotel-profile-wrapper img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  padding: 7px;
  background-color: rgba(var(--white), 1);
}
.hotel-profile-wrapper h3 {
  font-size: 18px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.hotel-profile-wrapper h4 {
  margin-top: 3px;
  font-size: 15px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}

.hotel-profile-section {
  margin-top: 28px;
}
.hotel-profile-section li {
  width: 100%;
}
.hotel-profile-section li + li {
  border-top: 1px dashed rgba(var(--content-color), 0.5);
  padding-top: 18px;
  margin-top: 15px;
}
@media (max-width: 600px) {
  .hotel-profile-section li + li {
    padding-top: calc(12px + 6 * (100vw - 320px) / 280);
    margin-top: calc(12px + 3 * (100vw - 320px) / 280);
  }
}
.hotel-profile-section li .hotel-profile-box {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hotel-profile-section li .hotel-profile-box .icon {
  --Iconsax-Size: 20px;
  --Iconsax-Color: rgba(var(--title-color), 1);
}
.hotel-profile-section li .hotel-profile-box .hotel-profile-content {
  width: calc(100% - 20px - 12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hotel-profile-section li .hotel-profile-box .hotel-profile-content h5 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.hotel-profile-section .hotel-last-content .icon {
  --Iconsax-Color: rgba(var(--theme-color), 1);
}
.hotel-profile-section .hotel-last-content .hotel-profile-content h5 {
  color: rgba(var(--theme-color), 1);
}

/*=====================
Blog profile page CSS 
=======================*/
.blog-profile-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.blog-profile-list img {
  width: 78px;
  height: 78px;
  border-radius: 100%;
}
@media (max-width: 600px) {
  .blog-profile-list img {
    width: calc(65px + 13 * (100vw - 320px) / 280);
    height: calc(65px + 13 * (100vw - 320px) / 280);
  }
}
.blog-profile-list .blog-profile-content {
  margin-top: 8px;
  text-align: center;
}
.blog-profile-list .blog-profile-content h4 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.blog-profile-list .blog-profile-content h6 {
  font-size: 14px;
  font-weight: 300;
  color: rgba(var(--content-color), 1);
}

/* =======================
Learning page Profile CSS 
==========================*/
.learning-profile-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background-color: rgba(var(--content-color), 0.05);
  box-shadow: 2px 2px 0 0 rgba(var(--title-color), 1);
  border-radius: 8px;
  margin-top: 35px;
  padding: 10px;
  position: relative;
}
body.dark-mode .learning-profile-wrapper {
  box-shadow: 2px 2px 0 0 rgba(var(--black), 1);
}
.learning-profile-wrapper img {
  width: 82px;
  height: 82px;
  border-radius: 100%;
  margin-top: -40px;
}
@media (max-width: 600px) {
  .learning-profile-wrapper img {
    width: calc(70px + 12 * (100vw - 320px) / 280);
    height: calc(70px + 12 * (100vw - 320px) / 280);
  }
}
.learning-profile-wrapper #file {
  position: absolute;
  top: 6px;
  right: 10px;
  width: 26px;
  height: 26px;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}
.learning-profile-wrapper h6 {
  color: rgba(var(--theme-color), 1);
  font-size: 14px;
  font-weight: 500;
  margin-left: auto;
  position: absolute;
  top: 6px;
  right: 10px;
}
.learning-profile-wrapper .learning-profile-content {
  padding-top: 10px;
}
.learning-profile-wrapper .learning-profile-content h5 {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.learning-profile-wrapper .learning-profile-content a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.learning-profile-wrapper .learning-profile-content a .icon {
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 16px;
}

.learn-profile-list li {
  width: 100%;
}
.learn-profile-list li + li {
  margin-top: 16px;
}
@media (max-width: 600px) {
  .learn-profile-list li + li {
    margin-top: calc(12px + 4 * (100vw - 320px) / 280);
  }
}
.learn-profile-list li a {
  display: flex;
  align-items: center;
  gap: 18px;
}
.learn-profile-list li a .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
  background-color: rgba(var(--white), 1);
  border-radius: 100%;
}
@media (max-width: 600px) {
  .learn-profile-list li a .icon {
    --Iconsax-Size: calc(18px + (20 - 18) * ((100vw - 320px) / (600 - 320)));
  }
}
.learn-profile-list li a .rotate {
  transform: rotate(180deg);
}
.learn-profile-list li a h5 {
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}

/* ==============
fitness CSS 
==================*/
.body-profile-box {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
}
.body-profile-box img {
  width: 67px;
  height: 67px;
  border-radius: 12px;
}
@media (max-width: 600px) {
  .body-profile-box img {
    width: calc(55px + 12 * (100vw - 320px) / 280);
    height: calc(55px + 12 * (100vw - 320px) / 280);
  }
}
.body-profile-box #file {
  position: absolute;
  top: 20px;
  right: 0;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
  margin: 0;
  width: 35px;
}
.body-profile-box #file::file-selector-button {
  cursor: pointer;
}
[dir=rtl] .body-profile-box #file {
  right: unset;
  left: 0;
}
.body-profile-box h6 {
  color: rgba(var(--theme-color), 1);
  font-size: 14px;
  font-weight: 500;
  position: absolute;
  top: 20px;
  right: 0;
}
[dir=rtl] .body-profile-box h6 {
  right: unset;
  left: 0;
}
.body-profile-box .fitness-profile-content {
  width: 100%;
}
.body-profile-box .fitness-profile-content h5 {
  font-size: 18px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .body-profile-box .fitness-profile-content h5 {
    font-size: calc(16px + 2 * (100vw - 320px) / 280);
  }
}
.body-profile-box .fitness-profile-content a {
  display: block;
  margin-top: 3px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .body-profile-box .fitness-profile-content a {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
  }
}

/* ============
furniture CSS 
=============*/
.furniture-profile-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  z-index: 2;
  position: relative;
  border-bottom: 1px dashed rgba(var(--content-color), 0.5);
  padding-bottom: 18px;
}
.furniture-profile-card img {
  width: 67px;
  height: 67px;
  border-radius: 12px;
  box-shadow: 0 0 0 5px rgba(var(--white), 1);
  margin-top: -60px;
}
.furniture-profile-card .profile-card-detail {
  margin-top: 10px;
  text-align: center;
}
.furniture-profile-card .profile-card-detail h4 {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.furniture-profile-card .profile-card-detail a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.furniture-profile-card .profile-card-detail a .mail-icon {
  margin-right: 2px;
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 16px;
}

.profile-items li {
  width: 100%;
}
.profile-items li + li {
  border-top: 1px dashed rgba(var(--content-color), 0.4);
  padding-top: 15px;
  margin-top: 15px;
}
@media (max-width: 600px) {
  .profile-items li + li {
    padding-top: calc(12px + 3 * (100vw - 320px) / 280);
    margin-top: calc(12px + 3 * (100vw - 320px) / 280);
  }
}
.profile-items li a {
  display: flex;
  align-items: center;
  gap: 12px;
}
.profile-items li a .icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 24px;
  background-color: rgba(var(--bg-color), 1);
  border-radius: 8px;
}
@media (max-width: 600px) {
  .profile-items li a .icon {
    width: calc(35px + 9 * (100vw - 320px) / 280);
    height: calc(35px + 9 * (100vw - 320px) / 280);
    --Iconsax-Size: calc(18px + (24 - 18) * ((100vw - 320px) / (600 - 320)));
  }
}
.profile-items li a .profile-item-content {
  width: calc(100% - 44px - 12px);
}
.profile-items li a .profile-item-content h4 {
  font-size: 15px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .profile-items li a .profile-item-content h4 {
    font-size: calc(14px + 1 * (100vw - 320px) / 280);
  }
}
.profile-items li a .profile-item-content h5 {
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  margin-top: 3px;
  white-space: normal;
}

/* ===========
Jewellery CSS 
==============*/
.gold-profile-box {
  display: flex;
  align-items: center;
  gap: 17px;
}
@media (max-width: 600px) {
  .gold-profile-box {
    gap: calc(12px + 5 * (100vw - 320px) / 280);
  }
}
.gold-profile-box img {
  width: 67px;
  height: 67px;
  border-radius: 12px;
}
@media (max-width: 600px) {
  .gold-profile-box img {
    width: calc(50px + 17 * (100vw - 320px) / 280);
    height: calc(50px + 17 * (100vw - 320px) / 280);
  }
}
.gold-profile-box .account-content {
  width: 100%;
}
.gold-profile-box .account-content h4 {
  font-size: 18px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .gold-profile-box .account-content h4 {
    font-size: calc(14px + 4 * (100vw - 320px) / 280);
  }
}
.gold-profile-box .account-content h5 {
  margin-top: 2px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}

.jewellery-profile-list li {
  width: 100%;
}
.jewellery-profile-list li + li {
  margin-top: 24px;
}
@media (max-width: 600px) {
  .jewellery-profile-list li + li {
    margin-top: calc(15px + 9 * (100vw - 320px) / 280);
  }
}
.jewellery-profile-list li a {
  border-radius: 10px;
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--content-color), 0.3);
  padding: 12px 16px 12px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
body.dark-mode .jewellery-profile-list li a {
  background-color: transparent;
}
.jewellery-profile-list li a .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 24px;
}
@media (max-width: 600px) {
  .jewellery-profile-list li a .icon {
    --Iconsax-Size: calc(20px + (24 - 20) * ((100vw - 320px) / (600 - 320)));
  }
}
.jewellery-profile-list li a .list-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 24px - 12px);
}
.jewellery-profile-list li a .list-content h4 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}

/* =========
salon CSS 
==========*/
.salon-profile-box {
  position: relative;
}
.salon-profile-box img {
  border-radius: 12px;
  width: 100%;
  height: 75px;
  -o-object-fit: cover;
     object-fit: cover;
}
.salon-profile-box::before {
  content: "";
  position: absolute;
  top: 0;
  background: linear-gradient(269.79deg, rgba(0, 0, 0, 0) -202.87%, #000000 96.1%);
  border-radius: 12px;
  width: 100%;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.salon-profile-box .salon-profile-main {
  display: flex;
  align-items: center;
  gap: 15px;
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  left: 50%;
  padding-inline: 18px;
}
.salon-profile-box .salon-profile-main img {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.salon-profile-box .salon-profile-main .salon-profile-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 15px - 50px);
}
.salon-profile-box .salon-profile-main .salon-profile-content h4 {
  font-size: 18px;
  font-weight: 500;
  color: rgba(var(--white), 1);
}
.dark-mode .salon-profile-box .salon-profile-main .salon-profile-content h4 {
  color: rgba(var(--title-color), 1);
}
.salon-profile-box .salon-profile-main .salon-profile-content a {
  margin-top: 3px;
  font-weight: 300;
  font-size: 14px;
  color: rgba(var(--white), 1);
}
.dark-mode .salon-profile-box .salon-profile-main .salon-profile-content a {
  color: rgba(var(--title-color), 1);
}
.salon-profile-box .salon-profile-main .salon-profile-content .icon {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 24px;
}
.dark-mode .salon-profile-box .salon-profile-main .salon-profile-content .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
}

.salon-profile-list li {
  width: 100%;
}
.salon-profile-list li + li {
  margin-top: 24px;
}
.salon-profile-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(var(--content-color), 0.26);
  border-radius: 50px;
  padding: 11px 15px 11px 22px;
}
.salon-profile-list li a .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 24px;
}
.salon-profile-list li a .profile-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 24px - 12px);
}
.salon-profile-list li a .profile-content h5 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}

.movie-profile-list {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.movie-profile-list img {
  width: 54px;
  height: 54px;
  border-radius: 100%;
}
.movie-profile-list .movie-profile-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 10px - 54px);
}
.movie-profile-list .movie-profile-content h4 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.movie-profile-list .movie-profile-content a {
  font-weight: 400;
  font-size: 14px;
  color: rgba(var(--title-color), 1);
}
.movie-profile-list .movie-profile-content #file {
  position: absolute;
  top: 6px;
  right: 0;
  opacity: 0;
  margin: 0;
  width: 35px;
  z-index: 1;
  cursor: pointer;
}
.movie-profile-list .movie-profile-content #file::file-selector-button {
  cursor: pointer;
}
[dir=rtl] .movie-profile-list .movie-profile-content #file {
  right: unset;
  left: 0;
}
.movie-profile-list .movie-profile-content .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: rgba(var(--white), 0.06);
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 20px;
  position: absolute;
  top: 0px;
  right: 0;
  cursor: pointer;
}
[dir=rtl] .movie-profile-list .movie-profile-content .icon {
  right: unset;
  left: 0;
}

.movie-premium-box {
  border-radius: 6px;
  padding: 16px 20px;
  background: linear-gradient(rgba(var(--dark-border), 1), rgba(var(--dark-border), 1)) padding-box, var(--theme-color) border-box;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 600px) {
  .movie-premium-box {
    padding: calc(12px + 4 * (100vw - 320px) / 280) calc(15px + 5 * (100vw - 320px) / 280);
    gap: calc(18px + 2 * (100vw - 320px) / 280);
  }
}
.movie-premium-box .premium-image {
  position: relative;
}
.movie-premium-box .premium-image img {
  width: 35px;
  height: 27px;
}
.movie-premium-box .premium-image::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  background-color: rgba(var(--rating), 1);
  filter: blur(18px);
  top: -7px;
  left: 3px;
}
.movie-premium-box .premium-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.movie-premium-box .premium-content h4 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .movie-premium-box .premium-content h4 {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.movie-premium-box .premium-content h5 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 300;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .movie-premium-box .premium-content h5 {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
  }
}
.movie-premium-box .premium-content .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 22px;
}

.movie-profile-wrapper li {
  width: 100%;
}
.movie-profile-wrapper li + li {
  margin-top: 24px;
}
.movie-profile-wrapper li .movie-profile-box {
  width: 100%;
  background-color: rgba(var(--white), 0.06);
  border-radius: 6px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 23px;
}
.movie-profile-wrapper li .movie-profile-box .icon {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 24px;
}
.movie-profile-wrapper li .movie-profile-box .profile-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 23px - 24px);
}
.movie-profile-wrapper li .movie-profile-box .profile-title h4 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.movie-profile-wrapper li .movie-profile-box.logout {
  background-color: rgba(var(--error-color), 0.12);
}
.movie-profile-wrapper li .movie-profile-box.logout .icon {
  --Iconsax-Color: rgba(var(--error-color), 1);
}
.movie-profile-wrapper li .movie-profile-box.logout h4 {
  color: rgba(var(--error-color), 1);
}

/* ===================
4.8 Panel SCSS
 ====================*/
.food-fixed-panel {
  position: fixed;
  width: 100%;
  max-width: 600px;
  left: 50%;
  bottom: 0;
  transform: translate(-50%);
  z-index: 8;
  padding: 12px;
  box-shadow: 0px 0px 10px 0px rgba(var(--title-color), 0.1);
  background-color: rgba(var(--white), 1);
}
.dark-mode .food-fixed-panel {
  background-color: rgba(var(--second-color), 1);
  box-shadow: none;
}
.dark-mode .food-fixed-panel .food-fixed-panel-content {
  background-color: rgba(var(--bg-color), 1);
}
.food-fixed-panel .food-fixed-panel-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  padding: 22px 20px;
  background-color: rgba(var(--dark-bg), 1);
  border-radius: 20px;
}
@media (max-width: 600px) {
  .food-fixed-panel .food-fixed-panel-content {
    padding: 12px calc(12px + 8 * (100vw - 320px) / 280);
  }
}
.food-fixed-panel .food-fixed-panel-content .view-btn {
  width: auto;
  padding: 8px 20px;
  line-height: 1;
  font-size: 18px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  color: rgba(var(--dark-bg), 1);
  background-color: rgba(var(--theme-color), 1);
  border-radius: 8px;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .food-fixed-panel .food-fixed-panel-content .view-btn {
    padding: calc(8px + 2 * (100vw - 320px) / 280) calc(15px + 10 * (100vw - 320px) / 280);
  }
}
.dark-mode .food-fixed-panel .food-fixed-panel-content .view-btn {
  color: rgba(var(--bg-color), 1);
}
.food-fixed-panel .food-fixed-panel-content h5 {
  font-size: 16px;
  font-weight: 700;
  color: rgba(var(--theme-color), 1);
}
.food-fixed-panel .food-fixed-panel-content a {
  color: rgba(var(--white), 1);
  font-weight: 400;
  font-size: 14px;
}
.food-fixed-panel .food-driver-wrapper {
  display: flex;
  align-items: center;
  background-color: rgba(var(--dark-bg), 1);
  padding: 18px 14px;
  border-radius: 20px;
}
.dark-mode .food-fixed-panel .food-driver-wrapper {
  background-color: rgba(var(--bg-color), 1);
}
@media (max-width: 600px) {
  .food-fixed-panel .food-driver-wrapper {
    padding-block: calc(14px + 4 * (100vw - 320px) / 280);
    padding-inline: calc(10px + 4 * (100vw - 320px) / 280);
  }
}
.food-fixed-panel .food-driver-wrapper a {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
}
.food-fixed-panel .food-driver-wrapper .driver-image {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.food-fixed-panel .food-driver-wrapper .driver-contant {
  color: rgba(var(--white), 1);
  font-size: 14px;
  font-weight: 400;
}
.food-fixed-panel .food-driver-wrapper .driver-contant h5 {
  color: rgba(var(--theme-color), 1);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
@media (max-width: 600px) {
  .food-fixed-panel .food-driver-wrapper .driver-contant h5 {
    font-size: calc(13px + 3 * (100vw - 320px) / 280);
  }
}
.food-fixed-panel .food-driver-wrapper .driver-user {
  display: flex;
  gap: 12px;
}
.food-fixed-panel .food-driver-wrapper .driver-user .action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
}
@media (max-width: 600px) {
  .food-fixed-panel .food-driver-wrapper .driver-user .action-btn {
    width: calc(30px + 10 * (100vw - 320px) / 280);
    height: calc(30px + 10 * (100vw - 320px) / 280);
  }
}
.food-fixed-panel .food-driver-wrapper .driver-user .action-btn svg {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 22px;
}
@media (max-width: 600px) {
  .food-fixed-panel .food-driver-wrapper .driver-user .action-btn svg {
    --Iconsax-Size: calc(18px + (22 - 18) * ((100vw - 320px) / (600 - 320)));
  }
}
.food-fixed-panel .food-driver-wrapper .driver-user .action-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.food-fixed-panel .food-driver-wrapper .driver-user .action-btn.chat {
  background-color: #1e90ff;
}
.food-fixed-panel .food-driver-wrapper .driver-user .action-btn.call {
  background-color: #28a745;
}
.food-fixed-panel .food-driver-wrapper .driver-user .action-btn i {
  pointer-events: none;
}

/* Pages Files */
/*=====================
  5.1  ecommerce CSS
==========================*/
.ecommerce {
  background-color: rgba(var(--white), 1);
}
.ecommerce.dark-mode {
  background-color: rgba(var(--body-color), 1);
}

.category-section {
  overflow: hidden;
}
.category-section .category-slide {
  width: 100%;
  padding-inline: 15px;
  overflow-x: auto;
  white-space: nowrap;
}
.category-section .category-slide::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: transparent;
}
.category-section .category-slide li {
  display: inline-block;
  width: 84px;
  text-align: center;
}
@media (max-width: 480px) {
  .category-section .category-slide li {
    width: 74px;
  }
}
.category-section .category-box {
  text-align: center;
}
.category-section .category-box img {
  margin: 0 auto;
  width: 65px;
}
.category-section .category-box h4 {
  margin-top: 5px;
  text-transform: capitalize;
  color: rgba(var(--title-color), 1);
  font-size: 14px;
  font-weight: 700;
}

.brand-section {
  overflow: hidden;
}
.brand-section .brand-slider {
  padding-inline: 15px;
  overflow-x: auto;
  white-space: nowrap;
}
.brand-section .brand-slider::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: transparent;
}
.brand-section .brand-slider li .brand-box {
  padding: 10px 25px;
  background-color: rgba(var(--light-bg), 1);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-section .brand-slider li .brand-box img {
  height: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
body.dark-mode .brand-section .brand-slider li .brand-box img {
  filter: invert(1);
}
.brand-section .brand-slider li .brand-box a {
  text-align: center;
}
.brand-section .brand-slider li .brand-box a img {
  width: 70%;
}
.brand-section .brand-slider li + li {
  margin-left: 15px;
}

.banner-section .banner-img {
  width: 100%;
}
.banner-section .banner-box {
  background-image: url(f66ce67762adc7f62217.png);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  width: 100%;
  display: block;
}
.banner-section .banner-box .banner-content {
  padding: 24px;
}
[dir=rtl] .banner-section .banner-box .banner-content {
  direction: ltr;
}
.banner-section .banner-box .banner-content h6 {
  color: rgba(var(--content-color), 1);
}
.banner-section .banner-box .banner-content h3 {
  color: rgb(49, 49, 49);
  text-transform: capitalize;
}
.banner-section .banner-box .banner-content .explore {
  color: rgba(var(--content-color), 1);
  text-transform: capitalize;
  border: none;
  font-size: 14px;
  font-weight: 400;
  text-decoration: underline;
}

.offer-corner-section .offer-box {
  text-align: center;
  border-radius: 6px;
  z-index: 1;
  background-color: rgba(var(--light-bg), 1);
}
.offer-corner-section .offer-box a {
  display: block;
  padding: 12px 8px;
  font-weight: 400;
  font-size: 16px;
  color: rgba(var(--title-color), 1);
  text-transform: uppercase;
}

/*========================
    Category page CSS 
==========================*/
.category-listing {
  margin-top: 10px;
}
@media (max-width: 600px) {
  .category-listing {
    margin-top: calc(5px + 5 * (100vw - 320px) / 280);
  }
}
.category-listing li {
  width: 100%;
  margin-bottom: 40px;
  background-color: rgba(var(--light-bg), 1);
  border-radius: 6px;
}
@media (max-width: 600px) {
  .category-listing li {
    margin-bottom: calc(20px + 20 * (100vw - 320px) / 280);
  }
}
.category-listing li:last-child {
  margin-bottom: 0;
}
.category-listing li .category-wrap {
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 20px;
  position: relative;
}
@media (max-width: 600px) {
  .category-listing li .category-wrap {
    padding: calc(15px + 5 * (100vw - 320px) / 280);
  }
}
.category-listing li .category-wrap .category-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.category-listing li .category-wrap .category-content .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 24px;
}
@media (max-width: 600px) {
  .category-listing li .category-wrap .category-content .icon {
    --Iconsax-Size: calc(20px + (24 - 20) * ((100vw - 320px) / (600 - 320)));
  }
}
.category-listing li .category-wrap .category-content .content-part {
  padding-left: 100px;
  width: calc(100% - 24px);
}
@media (max-width: 600px) {
  .category-listing li .category-wrap .category-content .content-part {
    padding-left: calc(70px + 30 * (100vw - 320px) / 280);
  }
}
.category-listing li .category-wrap .category-content .content-part h3 {
  font-weight: 600;
  font-size: 16px;
  text-transform: capitalize;
  color: rgba(var(--title-color), 1);
  margin-top: -5px;
}
@media (max-width: 600px) {
  .category-listing li .category-wrap .category-content .content-part h3 {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.category-listing li .category-wrap .category-content .content-part h4 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  font-size: 14px;
  font-weight: 400;
  margin-top: 5px;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .category-listing li .category-wrap .category-content .content-part h4 {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
    margin-top: calc(2px + 3 * (100vw - 320px) / 280);
  }
}
.category-listing li .category-wrap .img-part {
  position: absolute;
  left: 10px;
  bottom: 0;
}
.category-listing li .category-wrap .img-part img {
  height: 105px;
}
@media (max-width: 600px) {
  .category-listing li .category-wrap .img-part img {
    height: calc(85px + 20 * (100vw - 320px) / 280);
  }
}

/*========================
    cart page CSS 
==========================*/
.cart-listing li {
  width: 100%;
  margin-bottom: 20px;
}
.cart-listing li:last-child {
  margin-bottom: 0;
}

.bill-list {
  padding: 10px;
  background-color: rgba(var(--light-bg), 1);
  border-radius: 8px;
}
.bill-list li {
  margin-bottom: 10px;
}
.bill-list li:last-child {
  margin-bottom: 0;
}
.bill-list li h5 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  text-transform: capitalize;
}
.bill-list li.total-amount h5 {
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}

.fixed-panel {
  position: fixed;
  width: 100%;
  max-width: 600px;
  padding: 20px 0;
  left: 50%;
  bottom: 0;
  transform: translate(-50%);
  z-index: 2;
  background-color: rgba(var(--white), 1);
  box-shadow: 0px 0px 10px 0px rgba(var(--title-color), 0.1);
}
body.dark-mode .fixed-panel {
  box-shadow: none;
  background-color: rgba(var(--body-color), 1);
}
body.dark-mode .fixed-panel .fixed-panel-content {
  background-color: rgba(var(--light-bg), 1);
}
.fixed-panel .fixed-panel-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  padding: 12px 20px;
  background-color: rgba(var(--dark-bg), 1);
  border-radius: 115px;
}
@media (max-width: 600px) {
  .fixed-panel .fixed-panel-content {
    padding: 12px calc(12px + 8 * (100vw - 320px) / 280);
  }
}
.fixed-panel .fixed-panel-content h5 {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 14px;
  font-weight: 600;
  color: rgb(175, 175, 175);
  text-transform: capitalize;
}
.fixed-panel .fixed-panel-content h5 a {
  font-weight: 500;
  color: rgb(175, 175, 175);
  text-decoration: underline;
}
.fixed-panel .fixed-panel-content .fixed-btn {
  width: auto;
  padding: 10px 25px;
  line-height: 1;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(var(--theme-color), 1);
  background-color: rgba(var(--white), 1);
  border-radius: 42px;
  white-space: nowrap;
}
.fixed-panel .fixed-panel-content .fixed-btn:hover, .fixed-panel .fixed-panel-content .fixed-btn:active {
  color: rgba(var(--theme-color), 1);
}
body.dark-mode .fixed-panel .fixed-panel-content .fixed-btn {
  color: rgba(var(--white), 1);
  background-color: rgba(var(--body-color), 1);
}
@media (max-width: 600px) {
  .fixed-panel .fixed-panel-content .fixed-btn {
    padding: calc(8px + 2 * (100vw - 320px) / 280) calc(15px + 10 * (100vw - 320px) / 280);
  }
}

.address-listing li {
  width: 100%;
  margin-bottom: 20px;
}
.address-listing li:last-child {
  margin-bottom: 0;
}
.address-listing li .address-box {
  padding: 20px;
  background-color: rgba(var(--light-bg), 1);
  border-radius: 6px;
}
.address-listing li .address-box .address-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.address-listing li .address-box .address-head .address-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--theme-color), 1);
  border-radius: 4px;
  width: 30px;
  height: 30px;
  padding: 5px;
}
.address-listing li .address-box .address-head .address-icon .icon {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 18px;
}
.address-listing li .address-box .address-head h5 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.address-listing li .address-box .address-head .edit-icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 16px;
}
.address-listing li .address-box .address-content {
  margin-top: 6px;
}
.address-listing li .address-box .address-content h4 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
  margin-bottom: 5px;
}
.address-listing li .address-box .address-content h5 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.address-listing li .address-box .address-content span {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}

.payment-listing li {
  width: 100%;
  padding-block: 20px;
  border-bottom: 1px solid rgba(var(--border-color), 1);
}
.payment-listing li:first-child {
  padding-top: 0;
}
.payment-listing li:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
.payment-listing li .form-check {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.payment-listing li .form-check .form-check-label {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.payment-listing li .form-check .form-check-label .payment-img {
  width: 66px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background-color: rgba(var(--light-bg), 1);
  border-radius: 6px;
}
.payment-listing li .form-check .form-check-label .payment-img .payment-icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
}
.payment-listing li .form-check .form-check-label .payment-content {
  display: block;
}
.payment-listing li .form-check .form-check-label .payment-content .payment-account {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.payment-listing li .form-check .form-check-label .payment-content .payment-expire {
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.payment-listing li .form-check .form-check-input {
  width: 20px;
  height: 20px;
  float: unset;
  margin: 0;
  border: 1px solid rgba(var(--border-color), 1);
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  filter: none;
}
.payment-listing li .form-check .form-check-input:checked {
  background-color: rgba(var(--theme-color), 1);
  border-color: rgba(var(--theme-color), 1);
}
.payment-listing li .form-check .form-check-input:focus {
  border-color: rgba(var(--border-color), 1);
  box-shadow: none;
}
.payment-listing li .form-check [type=radio] {
  border-radius: 100%;
  position: relative;
}
.payment-listing li .form-check [type=radio]:checked {
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--theme-color), 1);
}
.payment-listing li .form-check [type=radio]:checked::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: rgba(var(--theme-color), 1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
}

.new-card-box {
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  border: 1px dashed rgba(var(--theme-color), 1);
  border-radius: 6px;
}

.order-success-content {
  text-align: center;
}
.order-success-content .success-img {
  width: 100px;
  height: 100px;
}
@media (max-width: 600px) {
  .order-success-content .success-img {
    width: calc(80px + 20 * (100vw - 320px) / 280);
    height: calc(80px + 20 * (100vw - 320px) / 280);
  }
}
.order-success-content h3 {
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 22px;
  color: rgba(var(--theme-color), 1);
}
.order-success-content h4 {
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}

.shipping-list {
  margin-top: 40px;
  padding-bottom: 20px;
}
.shipping-list li {
  width: 100%;
}
.shipping-list li + li {
  margin-top: 25px;
}
.shipping-list li h4 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.shipping-list li h5 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}

.order-shipping-address {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(var(--border-color), 1);
}
.order-shipping-address .shipping-details h4 {
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.order-shipping-address .shipping-details h5 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}

.product-details-section .product-image {
  position: relative;
}
.product-details-section .product-image .swiper-wrapper .swiper-slide {
  transition: all 0.3s ease-in-out;
}
.product-details-section .product-image .swiper-wrapper .swiper-slide.swiper-slide-prev .product {
  transform: rotate(-10deg);
  transform-origin: bottom;
}
.product-details-section .product-image .swiper-wrapper .swiper-slide.swiper-slide-next .product {
  transform: rotate(10deg);
  transform-origin: bottom;
}
.product-details-section .product-image .product-pagination {
  position: relative;
  margin-top: 5px;
  inset: unset;
  z-index: 1;
}
.product-details-section .product-image .product-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background-color: rgba(var(--theme-color), 0.7);
  transition: all 0.3s ease-in-out;
}
.product-details-section .product-image .product-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 20px;
  height: 6px;
  border-radius: 10px;
  background-color: rgba(var(--theme-color), 1);
}
.product-details-section .product-name {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
  text-transform: capitalize;
}
.product-details-section .ratings {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  line-height: 1;
  font-size: 12px;
  font-weight: 400;
  background-color: rgba(var(--secondary-color), 0.1);
  border-radius: 100px;
}
.product-details-section .ratings .star {
  width: 12px;
}
.product-details-section .name-description {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.product-details-section .price {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.product-details-section .price del {
  color: rgba(var(--content-color), 1);
}
.product-details-section .price span {
  color: rgba(var(--error-color), 1);
}
.product-details-section .size-part {
  margin-top: 20px;
}
.product-details-section .size-part .size-chat-text {
  font-weight: 400;
  font-size: 12px;
  color: rgba(var(--error-color), 1);
}
.product-details-section .size-part .size-list {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}
.product-details-section .size-part .size-list .size-box label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--light-bg), 1);
  border-radius: 6px;
}
@media (max-width: 600px) {
  .product-details-section .size-part .size-list .size-box label {
    width: calc(30px + 6 * (100vw - 320px) / 280);
    height: calc(30px + 6 * (100vw - 320px) / 280);
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.product-details-section .size-part .size-list .size-box .btn-check:checked ~ label {
  background-color: rgba(var(--theme-color), 1) !important;
  color: rgb(255, 255, 255);
}
.product-details-section .size-part .size-list .size-box .btn-check:disabled ~ label {
  color: rgba(var(--title-color), 0.5) !important;
  text-decoration: line-through !important;
}
.product-details-section .color-part .size-chat-text {
  font-weight: 400;
  font-size: 12px;
  color: rgba(var(--error-color), 1);
}
.product-details-section .color-part .color-list {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}
.product-details-section .color-part .color-list .color-box {
  position: relative;
}
.product-details-section .color-part .color-list .color-box label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--light-bg), 1);
  border-radius: 100% !important;
}
.product-details-section .color-part .color-list .color-box label.color1 {
  background-color: rgb(188, 188, 188);
}
.product-details-section .color-part .color-list .color-box label.color2 {
  background-color: rgb(199, 164, 145);
}
.product-details-section .color-part .color-list .color-box label.color3 {
  background-color: rgb(212, 200, 174);
}
.product-details-section .color-part .color-list .color-box .btn-check:checked ~ label {
  border: 2px solid rgba(var(--white), 1);
  outline: 1px solid;
}
.product-details-section .color-part .color-list .color-box .btn-check:checked ~ label.color1 {
  outline-color: rgb(188, 188, 188);
}
.product-details-section .color-part .color-list .color-box .btn-check:checked ~ label.color2 {
  outline-color: rgb(199, 164, 145);
}
.product-details-section .color-part .color-list .color-box .btn-check:checked ~ label.color3 {
  outline-color: rgb(212, 200, 174);
}
.product-details-section .plus-minus {
  display: inline-flex;
  align-items: center;
  text-align: center;
  padding: 10px 20px;
  background-color: rgba(var(--light-bg), 1);
  border-radius: 5px;
  border: none;
  margin: 0;
}
body.dark-mode .product-details-section .plus-minus .icon {
  border-color: rgba(var(--border-color), 1);
}
.product-details-section .plus-minus .icon {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(var(--black), 1);
  border-radius: 3px;
  padding: 1px;
  --Iconsax-Color: rgba(var(--black), 1);
}
.product-details-section .plus-minus .icon {
  --Iconsax-Size: 16px;
  --Iconsax-Color: rgba(var(--title-color), 1);
}
.product-details-section .plus-minus input {
  background-color: transparent;
  color: rgba(var(--theme-color), 1);
  border: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  outline: none;
  width: 50px;
  text-align: center;
}
.product-details-section .review-list .review-box {
  border-color: rgba(var(--border-color), 0.25);
  padding-top: 0;
  padding-bottom: 20px;
}
.product-details-section .review-list .review-box .media {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.product-details-section .review-list .review-box .media .profile-icon {
  width: 45px;
  height: 45px;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-details-section .review-list .review-box .media .media-body {
  width: calc(100% - 45px - 12px);
  margin-left: 12px;
}
.product-details-section .review-list .review-box .media .media-body span {
  font-size: 13px;
  color: rgba(var(--content-color), 1);
}
.product-details-section .review-list .review-box .review-content {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(var(--content-color), 1);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.product-details-section .review-list .review-box .review-bottom {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.product-details-section .review-list .review-box .review-bottom h6 {
  border-radius: 3px;
  padding: 6px 12px;
  background-color: rgba(var(--light-bg), 1);
}
.product-details-section .review-list .review-box .review-bottom .liking-sec {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.product-details-section .review-list .review-box .review-bottom .liking-sec span {
  margin-right: 10px;
}
.product-details-section .review-list .review-box .review-bottom .liking-sec span img {
  margin-right: 4px;
}
.product-details-section .review-list .review-box + .review-box {
  margin-top: 20px;
}

.order-profile-box {
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--border-color), 1);
  border-radius: 8px;
}
.order-profile-box .map {
  width: 100%;
  border-radius: 8px;
}
.order-profile-box .order-profile-details {
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(var(--light-bg), 1);
}
.order-profile-box .order-profile-details .profile-image {
  width: 80px;
  height: 80px;
}
.order-profile-box .order-profile-details .profile-image .profile {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.order-profile-box .order-profile-details .order-content {
  width: calc(100% - 80px - 10px);
}
.order-profile-box .order-profile-details .order-content h5 {
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  color: rgba(var(--title-color), 1);
}
.order-profile-box .order-profile-details .order-content h6 {
  margin-top: 4px;
  font-weight: 400;
  font-size: 13px;
  color: rgba(var(--content-color), 1);
}
.order-profile-box .order-profile-details .order-content .price {
  font-size: 14px;
  font-weight: 600;
  color: rgba(var(--theme-color), 1);
}

.tracking-body {
  margin-top: 30px;
}
.tracking-body .tracking-place li {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding-bottom: 25px;
}
.tracking-body .tracking-place li:last-child {
  padding-bottom: 0;
}
.tracking-body .tracking-place li:last-child::after {
  display: none;
}
.tracking-body .tracking-place li::after {
  content: "";
  position: absolute;
  bottom: 12px;
  left: -4px;
  width: 34px;
  border: 1px dashed rgb(141, 143, 141);
  transform: rotate(90deg);
}
[dir=rtl] .tracking-body .tracking-place li::after {
  left: unset;
  right: -4px;
}
.tracking-body .tracking-place li span {
  position: relative;
  width: 25px;
  height: 25px;
  background-color: rgba(var(--border-color), 1);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tracking-body .tracking-place li span::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: rgba(var(--content-color), 1);
  border-radius: 100%;
}
.tracking-body .tracking-place li .order-place-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 25px - 8px);
}
.tracking-body .tracking-place li .order-place-content h5 {
  font-weight: 400;
  font-size: 14px;
  color: rgba(var(--title-color), 1);
}
.tracking-body .tracking-place li .order-place-content .date {
  margin-top: 5px;
  font-weight: 400;
  font-size: 13px;
  color: rgba(var(--content-color), 1);
}
.tracking-body .tracking-place li .order-place-content .time {
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
.tracking-body .tracking-place li.active li::after {
  border: rgba(var(--theme-color), 1);
}
.tracking-body .tracking-place li.active::after {
  border-color: rgba(var(--theme-color), 1);
}
.tracking-body .tracking-place li.active span {
  background-color: rgba(var(--theme-color), 0.15);
}
.tracking-body .tracking-place li.active span::after {
  background-color: rgba(var(--theme-color), 1);
}
.tracking-body .tracking-place li.active .order-place-content .time {
  color: rgba(var(--theme-color), 1);
}

.notification-list li {
  width: 100%;
  margin-bottom: 15px;
}
.notification-list li:last-child {
  margin-bottom: 0;
}
.notification-list li .notification-box {
  padding: 15px;
  background-color: rgba(var(--white), 1);
  border-radius: 10px;
  border: 1px solid rgba(var(--border-color), 1);
}
@media (max-width: 600px) {
  .notification-list li .notification-box {
    padding: calc(12px + 3 * (100vw - 320px) / 280);
  }
}
.dark-mode .notification-list li .notification-box {
  background-color: rgba(var(--body-color), 1);
}
.notification-list li .notification-box.unread {
  background-color: rgba(var(--theme-color), 0.1);
  border: none;
  box-shadow: none;
}
.notification-list li .notification-box.unread .notification-title h5 {
  color: rgba(var(--title-color), 1);
}
.notification-list li .notification-box.unread .notification-title .notification-icon .icon {
  --Iconsax-Color: rgba(var(--theme-color), 1);
  background-color: rgba(var(--white), 1);
}
.notification-list li .notification-box.unread p {
  color: rgba(var(--content-color), 1);
}
.notification-list li .notification-box p {
  padding-left: 40px;
  line-height: 1.5;
  font-weight: 400;
  font-size: 14px;
  color: rgba(var(--content-color), 1);
}
.notification-list li .notification-box .notification-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.notification-list li .notification-box .notification-title h5 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
.notification-list li .notification-box .notification-title .notification-icon .icon {
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: rgba(var(--light-bg), 1);
  border-radius: 100%;
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 18px;
}
.notification-list li .notification-box .notification-title span {
  font-size: 13px;
  color: rgba(var(--content-color), 1);
  white-space: nowrap;
}

.ecommerce-slide .swiper-wrapper .swiper-slide {
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.ecommerce-slide .swiper-wrapper .swiper-slide img {
  border-radius: 15px;
}
.ecommerce-slide .swiper-wrapper .swiper-slide.swiper-slide-active {
  transform: rotate(0deg);
  opacity: 1;
  z-index: 2;
}
.ecommerce-slide .swiper-wrapper .swiper-slide.swiper-slide-prev {
  transform: scale(0.95) rotate(-9deg);
  z-index: 1;
}
.ecommerce-slide .swiper-wrapper .swiper-slide.swiper-slide-next {
  transform: scale(0.95) rotate(7deg);
  z-index: 1;
}
.ecommerce-slide .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(var(--light-bg), 1);
  padding: 6px 5px;
  border-radius: 50px;
  position: relative;
  width: 80px;
  margin-inline: auto;
  margin-top: 15px;
}
.ecommerce-slide .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: transparent;
  border: 1px solid rgba(var(--content-color), 0.8);
  border-radius: 50px;
  opacity: 1;
  transition: all 0.3s ease;
}
.ecommerce-slide .swiper-pagination .swiper-pagination-bullet-active {
  width: 25px;
  height: 8px;
  background-color: rgba(var(--theme-color), 1);
}

/*=====================
  5.2  Grocery CSS
==========================*/
.grocery {
  background-color: rgba(var(--white), 1);
}
.grocery.dark-mode {
  background-color: rgba(var(--body-color), 1);
}

.category-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 15px;
}
@media (max-width: 374px) {
  .category-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.category-list li {
  width: 100%;
  text-align: center;
}
.category-list li .category-item {
  width: 70px;
  height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--light-bg), 1);
  border-radius: 14px;
}
.category-list li .category-name {
  margin-top: 8px;
  text-align: center;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
  color: rgba(var(--title-color), 1) !important;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.redeem-wrapper {
  margin-top: 25px;
  padding-block: 20px;
  background-color: rgba(var(--theme-color), 0.1);
}
.redeem-wrapper .redeem-list .redeem-box {
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(var(--title-color), 0.1);
}
.redeem-wrapper .redeem-list .redeem-box:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.redeem-wrapper .redeem-list .redeem-box .redeem-image {
  width: 40px;
}
.redeem-wrapper .redeem-list .redeem-box .redeem-image .icon {
  width: 100%;
}
.redeem-wrapper .redeem-list .redeem-box .redeem-content {
  width: calc(100% - 40px - 10px);
}
.redeem-wrapper .redeem-list .redeem-box .redeem-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .redeem-wrapper .redeem-list .redeem-box .redeem-content h3 {
    font-size: calc(14px + 4 * (100vw - 320px) / 280);
  }
}
.redeem-wrapper .redeem-list .redeem-box .redeem-content h3 span {
  font-weight: 700;
  color: rgba(var(--success-color), 1);
}
.redeem-wrapper .redeem-list .redeem-box .redeem-content h5 {
  margin-top: 5px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
.redeem-wrapper .redeem-list .redeem-box .redeem-content h5 span {
  font-weight: 600;
  color: rgba(var(--success-color), 1);
}

.order-id-box {
  width: 100%;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(var(--theme-color), 1);
  border-radius: 8px;
}
.order-id-box .icon {
  --Iconsax-Size: 36px;
  --Iconsax-Color: rgba(var(--white), 1);
}
.order-id-box .order-id-content {
  width: calc(100% - 36px - 10px);
}
.order-id-box .order-id-content h3 {
  margin-top: 2px;
  font-weight: 600;
  color: rgba(var(--white), 1);
}
@media (max-width: 600px) {
  .order-id-box .order-id-content h3 {
    font-size: calc(14px + 4 * (100vw - 320px) / 280);
  }
}
.order-id-box .order-id-content h5 {
  font-weight: 400;
  color: rgba(var(--white), 1);
}

.order-items-list .order-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.order-items-list .order-item:last-child {
  margin-bottom: 0;
}
.order-items-list .order-item .order-item-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgba(var(--light-bg), 1);
  border: 1px solid rgba(var(--border-color), 1);
  border-radius: 6px;
  padding: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}
.order-items-list .order-item .order-item-content {
  width: calc(100% - 60px - 10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.order-items-list .order-item .order-item-content h5 {
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.order-items-list .order-item .order-item-content h6 {
  margin-top: 5px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
.order-items-list .order-item .order-item-content .price {
  font-weight: 600;
  color: rgba(var(--theme-color), 1);
}

.grocery-bill-list {
  padding: 20px;
  margin-top: 15px;
}
.grocery-bill-list li h5 {
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.grocery-bill-list li .delivery {
  display: inline-block;
  width: 230px;
}
.grocery-bill-list li.total-amount {
  padding-top: 15px;
  border-top: 1px dashed rgba(var(--title-color), 0.2);
}

.order-address {
  padding: 15px;
  background-color: rgba(var(--light-bg), 0.7);
  border-radius: 8px;
  border: 1px solid rgba(var(--border-color), 1);
}
.order-address h4 {
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.order-address h4 .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
}
.order-address h6 {
  margin-top: 5px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}

.dark-mode .grocery-fixed-panel {
  background-color: rgba(var(--body-color), 1);
}
.grocery-fixed-panel .fixed-btn {
  font-weight: 700;
  font-size: 16px;
  color: rgba(var(--white), 1);
  background-color: rgba(var(--theme-color), 1);
  border-radius: 6px;
}
.grocery-fixed-panel .fixed-btn:hover,
.grocery-fixed-panel .fixed-btn :active {
  color: rgba(var(--white), 1) !important;
}
.grocery-fixed-panel .fixed-panel-content {
  padding: 10px 15px;
  color: rgba(var(--white), 1);
  background-color: rgba(var(--theme-color), 1);
  border-radius: 6px;
}
.grocery-fixed-panel .fixed-panel-content h5 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  margin-top: 5px;
  color: rgba(var(--white), 1);
}
.grocery-fixed-panel .fixed-panel-content h6 {
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  color: rgba(var(--white), 1);
}
.grocery-fixed-panel .fixed-panel-content .fixed-btn {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  color: rgba(var(--white), 1);
  background-color: transparent;
}
.grocery-fixed-panel .fixed-panel-content .fixed-btn i {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 16px;
}

.grocery-product-image {
  text-align: center;
  padding-bottom: 30px;
}
.grocery-product-image .product {
  height: 200px;
}

.grocery-product-thumbnail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.grocery-product-thumbnail .product-thumbnail {
  width: 50px !important;
  height: 50px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--white), 1);
  box-shadow: 0px -1px 17px 0px rgba(var(--black), 0.05);
  border-radius: 6px;
  cursor: pointer;
}
.grocery-product-thumbnail .product-thumbnail .product-thumbnail-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.grocery-product-details-content {
  padding-top: 50px;
  background-color: rgba(var(--white), 1);
}
.dark-mode .grocery-product-details-content {
  background-color: rgba(var(--body-color), 1);
}
.grocery-product-details-content .product-details .product-tag {
  font-weight: 500;
  font-size: 14px;
  color: rgba(var(--content-color), 1);
}
.grocery-product-details-content .product-details .product-name {
  font-weight: 800;
  font-size: 22px;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .grocery-product-details-content .product-details .product-name {
    font-size: calc(20px + 2 * (100vw - 320px) / 280);
  }
}
.grocery-product-details-content .product-details .product-name span {
  font-weight: 400;
  font-size: 18px;
  color: rgba(var(--content-color), 1);
}
.grocery-product-details-content .product-details .ratings {
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
}
.grocery-product-details-content .product-details .ratings .star {
  width: 14px;
}
.grocery-product-details-content .product-details .rating-count {
  font-size: 13px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
.grocery-product-details-content .product-details .product-description {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.grocery-product-details-content .product-details .price {
  font-weight: 700;
  font-size: 16px;
  margin-top: 13px;
  color: rgba(var(--title-color), 1);
}
.grocery-product-details-content .product-details .price del {
  color: rgba(var(--content-color), 1);
}
.grocery-product-details-content .product-details .plus-minus {
  display: inline-flex;
  align-items: center;
  text-align: center;
  padding: 4px 8px;
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--border-color), 1);
  border-radius: 3px;
}
.dark-mode .grocery-product-details-content .product-details .plus-minus {
  background-color: rgba(var(--body-color), 1);
}
.grocery-product-details-content .product-details .plus-minus .icon {
  --Iconsax-Size: 16px;
  --Iconsax-Color: rgba(var(--title-color), 1);
}
.grocery-product-details-content .product-details .plus-minus input {
  background: transparent;
  color: rgba(var(--theme-color), 1);
  border: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  outline: none;
  width: 35px;
  text-align: center;
}

.map-part {
  position: relative;
}
.map-part .map-img {
  position: relative;
  width: 100%;
  height: 370px;
  -o-object-fit: cover;
     object-fit: cover;
}
.map-part .map-details {
  display: flex;
  align-items: center;
  max-width: calc(100% - 30px);
  gap: 10px;
  position: absolute;
  bottom: 10px;
  left: 15px;
  background-color: rgba(var(--white), 1);
  padding: 10px 15px;
  border-radius: 6px;
  box-shadow: 0px 0px 10px 0px rgba(var(--black), 0.1);
}
body.dark-mode .map-part .map-details {
  background-color: rgba(var(--bg-color), 1);
}
.map-part .map-details .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 24px;
}

.current-location {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-block: 20px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .current-location {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.current-location .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  background-color: rgba(var(--theme-color), 1);
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 18px;
  border-radius: 4px;
}

.payment-list .payment-card-box {
  width: 100%;
  padding: 0 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid rgba(var(--border-color), 1);
  background-color: rgba(var(--light-bg), 1);
}
.payment-list .payment-card-box .payment-detail {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  padding: 15px 0;
}
.payment-list .payment-card-box .payment-detail .add-img {
  width: 35px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.payment-list .payment-card-box .payment-detail .add-img .img {
  width: 35px;
  height: 30px;
}
.payment-list .payment-card-box .payment-detail .add-img .icon {
  --Iconsax-Color: rgba(var(--theme-color), 1);
  --Iconsax-Size: 26px;
}
.payment-list .payment-card-box .payment-detail .add-content {
  width: calc(100% - 35px - 15px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.payment-list .payment-card-box .payment-detail .add-content h5 {
  color: rgba(var(--title-text), 1);
}
.payment-list .payment-card-box .payment-detail .add-content .form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.payment-list .payment-card-box .payment-detail .add-content .form-check .form-check-input {
  width: 20px;
  height: 20px;
  float: unset;
  margin: 0;
  background: transparent;
  box-shadow: none;
  filter: none;
}
.payment-list .payment-card-box .payment-detail .add-content .form-check .form-check-input:checked {
  background-color: rgba(var(--theme-color), 1);
  border-color: rgba(var(--theme-color), 1);
}
.payment-list .payment-card-box .payment-detail .add-content .form-check .form-check-input:focus {
  box-shadow: none;
  border-color: rgba(var(--border-color), 1);
}
.payment-list .payment-card-box .payment-detail .add-content .form-check [type=radio] {
  border-radius: 100%;
  position: relative;
}
.payment-list .payment-card-box .payment-detail .add-content .form-check [type=radio]::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: rgba(var(--theme-color), 1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 100%;
  transition: all 0.12s ease;
}
.payment-list .payment-card-box .payment-detail .add-content .form-check [type=radio]:checked {
  background-color: transparent;
  border-color: rgba(var(--theme-color), 1);
}
.payment-list .payment-card-box .payment-detail .add-content .form-check [type=radio]:checked::after {
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.12s ease;
}
.payment-list .payment-card-box .payment-detail .add-content .form-check .form-check-label {
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.payment-list .new-card {
  border-top: 1px dashed rgba(var(--border-color), 1);
  padding: 0;
}
.payment-list .new-card a {
  text-decoration: none !important;
}
body.dark-mode .payment-list .new-card {
  border-color: rgba(var(--theme-color), 0.21);
}

.debit-card {
  position: relative;
  background-image: url(006ca15fc9145c02b126.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: auto;
  margin-bottom: 25px;
  border-radius: 14px;
  border-bottom: 1px solid rgba(var(--border-color), 1);
  box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.14);
}
.debit-card .card-details {
  padding: 22px;
}
.debit-card .card-details .card-name {
  color: rgba(225, 225, 225, 0.5);
}
.debit-card .card-details .chip {
  margin-top: 12px;
}
.debit-card .card-details .ac-details {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.debit-card .card-details .ac-details li h6 {
  font-weight: 400;
  color: rgba(225, 225, 225, 0.5);
}
.debit-card .card-details .ac-details li h3 {
  font-weight: 700;
  color: rgb(225, 225, 225);
  font-size: 16px;
}
@media (max-width: 600px) {
  .debit-card .card-details .ac-details li h3 {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.debit-card .card-details .user-name {
  margin-top: 15px;
}
.debit-card .card-details .user-name h6 {
  font-weight: 400;
  color: rgba(225, 225, 225, 0.5);
}
.debit-card .card-details .user-name h5 {
  font-weight: 500;
  color: rgb(225, 225, 225);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.new-card-details {
  padding-top: 25px;
  border-top: 1px dashed rgba(var(--border-color), 1);
}

.order-success {
  overflow: auto;
  width: 100%;
  height: calc(100vh - 70px);
  display: flex;
  place-items: center;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.order-success h3 {
  position: relative;
  margin-top: 25px;
  font-size: 20px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
.order-success h5 {
  position: relative;
  width: 70%;
  margin: 5px auto;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 425px) {
  .order-success h5 {
    width: 80%;
  }
}
@media (max-width: 375px) {
  .order-success h5 {
    width: 100%;
  }
}

.grocery-coupon-section {
  background-color: rgba(var(--light-bg), 1);
  padding: 13px 20px 26px 20px;
  margin-top: 30px;
}
.grocery-coupon-section .grocery-coupon-boxs {
  margin-top: 23px;
  display: flex;
  align-items: center;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
}
.grocery-coupon-section .grocery-coupon-boxs::-webkit-scrollbar {
  width: 0;
}
.grocery-coupon-section .grocery-coupon-boxs .grocery-coupon-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background-color: rgba(var(--theme-color), 1);
  padding: 16px;
  position: relative;
  min-width: 215px;
}
.grocery-coupon-section .grocery-coupon-boxs .grocery-coupon-card::after, .grocery-coupon-section .grocery-coupon-boxs .grocery-coupon-card::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -3px;
  width: 14px;
  height: 14px;
  background-color: rgba(var(--light-bg), 1);
  border-radius: 100%;
}
.grocery-coupon-section .grocery-coupon-boxs .grocery-coupon-card::before {
  top: unset;
  bottom: -2px;
  left: -4px;
}
.grocery-coupon-section .grocery-coupon-boxs .grocery-coupon-card .dash-line {
  width: 14px;
  height: 14px;
  background-color: rgba(var(--light-bg), 1);
  border-radius: 100%;
  position: relative;
  top: -35px;
}
.grocery-coupon-section .grocery-coupon-boxs .grocery-coupon-card .dash-line::after {
  content: "";
  position: absolute;
  height: 100%;
  min-height: 75px;
  border: 1px dashed rgba(var(--white), 1);
  left: 6px;
  top: 14px;
}
.grocery-coupon-section .grocery-coupon-boxs .grocery-coupon-card .dash-line::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: rgba(var(--light-bg), 1);
  border-radius: 100%;
  bottom: -72px;
  z-index: 1;
}
.grocery-coupon-section .grocery-coupon-boxs .grocery-coupon-card img {
  width: 38px;
  height: 38px;
}
.grocery-coupon-section .grocery-coupon-boxs .grocery-coupon-card .grocery-content {
  color: rgba(var(--white), 1);
  position: relative;
}
.grocery-coupon-section .grocery-coupon-boxs .grocery-coupon-card .grocery-content::after, .grocery-coupon-section .grocery-coupon-boxs .grocery-coupon-card .grocery-content::before {
  content: "";
  position: absolute;
  top: -23px;
  right: -20px;
  width: 14px;
  height: 14px;
  background-color: rgba(var(--light-bg), 1);
  border-radius: 100%;
}
[dir=rtl] .grocery-coupon-section .grocery-coupon-boxs .grocery-coupon-card .grocery-content::after, [dir=rtl] .grocery-coupon-section .grocery-coupon-boxs .grocery-coupon-card .grocery-content::before {
  right: -116px;
}
.grocery-coupon-section .grocery-coupon-boxs .grocery-coupon-card .grocery-content::before {
  top: unset;
  bottom: -22px;
  right: -20px;
}
[dir=rtl] .grocery-coupon-section .grocery-coupon-boxs .grocery-coupon-card .grocery-content::before {
  right: -116px;
}
.grocery-coupon-section .grocery-coupon-boxs .grocery-coupon-card .grocery-content h4 {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}
.grocery-coupon-section .grocery-coupon-boxs .grocery-coupon-card .grocery-content h5 {
  margin-top: 2px;
  font-size: 13px;
  font-weight: 400;
}
.grocery-coupon-section .grocery-coupon-boxs .grocery-coupon-card.second-bg {
  background-color: rgba(var(--secondary-color), 1);
}

/*================
  5.3  pet CSS
==================*/
.pet {
  background-color: rgba(var(--white), 1);
}
.pet.dark-mode {
  background-color: rgba(var(--body-color), 1);
}

.pet-category-listing {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-inline: 15px;
  overflow: auto;
  white-space: nowrap;
}
.pet-category-listing.pet-category {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 15px;
  padding: 0;
}
@media (max-width: 375px) {
  .pet-category-listing.pet-category {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.pet-category-listing.pet-category li .category-item {
  width: 100%;
}
.pet-category-listing li {
  width: 100%;
  text-align: center;
}
.pet-category-listing li .category-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100px;
  height: 100px;
  background-color: rgba(var(--light-bg), 1);
  border-radius: 14px;
}
@media (max-width: 600px) {
  .pet-category-listing li .category-item {
    height: calc(70px + 30 * (100vw - 320px) / 280);
  }
}
.pet-category-listing li .category-name {
  margin-top: 8px;
  text-align: center;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
  color: rgba(var(--title-color), 1) !important;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.pet-product-image .product-image {
  border-radius: 12px;
  background-color: rgba(var(--theme-color), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pet-product-image .product-image.box-left {
  padding: 30px;
}
@media (max-width: 600px) {
  .pet-product-image .product-image.box-left {
    padding: calc(15px + 15 * (100vw - 320px) / 280);
  }
}
.pet-product-image .product-image.box-left img {
  width: 270px;
}
@media (max-width: 600px) {
  .pet-product-image .product-image.box-left img {
    width: calc(140px + 130 * (100vw - 320px) / 280);
  }
}
.pet-product-image .product-image.box-right {
  padding: 20px;
}
@media (max-width: 600px) {
  .pet-product-image .product-image.box-right {
    padding: calc(15px + 5 * (100vw - 320px) / 280);
  }
}

.pet-product-details {
  margin-top: 20px;
}
.pet-product-details .product-name {
  font-size: 18px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.pet-product-details .ratings {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  line-height: 1;
  font-size: 12px;
  font-weight: 400;
  background-color: rgba(var(--secondary-color), 0.1);
  border-radius: 100px;
}
.pet-product-details .ratings .star {
  width: 12px;
}
.pet-product-details .product-description {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(var(--content-color), 1);
}
.pet-product-details .price {
  color: rgba(var(--title-color), 1);
}
.pet-product-details .price del {
  color: rgba(var(--content-color), 1);
}
.pet-product-details .plus-minus {
  display: inline-flex;
  align-items: center;
  text-align: center;
  padding: 4px 8px;
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--theme-color), 0.1);
  border-radius: 3px;
}
.pet-product-details .plus-minus .icon {
  --Iconsax-Size: 16px;
  --Iconsax-Color: rgba(var(--title-color), 1);
}
.pet-product-details .plus-minus input {
  background-color: rgba(var(--white), 1);
  color: rgba(var(--theme-color), 1);
  border: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  outline: none;
  width: 35px;
  text-align: center;
}

.notification-list li .notification-box {
  border: 1px solid rgba(var(--border-color), 0.5);
}

.pet-fixed-panel {
  box-shadow: none;
}
.pet-fixed-panel .fixed-btn {
  font-weight: 700;
  font-size: 16px;
  color: rgba(var(--white), 1);
  background-color: rgba(var(--theme-color), 1);
  border-radius: 100px;
  text-transform: uppercase;
  border: none;
}
.pet-fixed-panel .fixed-panel-content {
  padding: 15px 20px;
  color: rgba(var(--white), 1);
  background-color: rgba(var(--theme-color), 1);
}
.pet-fixed-panel .fixed-panel-content h5 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  margin-top: 5px;
  color: rgba(var(--white), 1);
}
.pet-fixed-panel .fixed-panel-content h6 {
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  color: rgba(var(--white), 1);
}
.pet-fixed-panel .fixed-panel-content .fixed-btn {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(var(--white), 1);
  background-color: transparent;
  border: none;
}
.pet-fixed-panel .fixed-panel-content .fixed-btn:hover {
  color: rgba(var(--white), 1) !important;
}
body.dark-mode .pet-fixed-panel .fixed-panel-content .fixed-btn {
  color: rgba(var(--title-color), 1);
  background-color: transparent;
}
body.dark-mode .pet-fixed-panel .fixed-panel-content .fixed-btn:hover {
  background-color: transparent !important;
}
.pet-fixed-panel .fixed-panel-content .fixed-btn i {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 16px;
}

.pet-cart-list .pet-cart-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pet-cart-list .pet-cart-box + li {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(var(--border-color), 1);
}
@media (max-width: 600px) {
  .pet-cart-list .pet-cart-box + li {
    padding-top: calc(15px + 5 * (100vw - 320px) / 280);
    margin-top: calc(15px + 5 * (100vw - 320px) / 280);
  }
}
.pet-cart-list .pet-cart-box .img-part {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--light-bg), 1);
  border-radius: 10px;
}
@media (max-width: 600px) {
  .pet-cart-list .pet-cart-box .img-part {
    width: calc(80px + 20 * (100vw - 320px) / 280);
    height: calc(80px + 20 * (100vw - 320px) / 280);
  }
}
.pet-cart-list .pet-cart-box .content-part {
  width: calc(100% - 100px - 10px);
}
.pet-cart-list .pet-cart-box .content-part .product-name {
  font-size: 18px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .pet-cart-list .pet-cart-box .content-part .product-name {
    font-size: calc(16px + 2 * (100vw - 320px) / 280);
  }
}
.pet-cart-list .pet-cart-box .content-part .edit-icon {
  --Iconsax-Color: rgba(var(--theme-color), 1);
  --Iconsax-Size: 18px;
}
.pet-cart-list .pet-cart-box .content-part .ratings {
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
.pet-cart-list .pet-cart-box .content-part .ratings span {
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.pet-cart-list .pet-cart-box .content-part .price {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--theme-color), 1);
}
.pet-cart-list .pet-cart-box .content-part .price del {
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.pet-cart-list .pet-cart-box .content-part .quantity {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .pet-cart-list .pet-cart-box .content-part .quantity {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.pet-cart-list.pet-list-pay .pet-cart-box {
  padding: 0;
}
.pet-cart-list.pet-list-pay .pet-cart-box + li {
  margin-top: 37px;
  border-top: none;
}

.pet-profile-background {
  position: relative;
}
.pet-profile-background .profile-part {
  position: relative;
  text-align: center;
  margin-top: -60px;
  z-index: 2;
}
.pet-profile-background .profile-part .profile-image {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  position: relative;
}
.pet-profile-background .profile-part .profile-image .profile-pic {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-color: rgba(var(--white), 1);
  border-radius: 100%;
  box-shadow: 5px 0px 0 0px rgba(var(--theme-color), 1);
}
.pet-profile-background .profile-part .profile-image .edit-icon {
  padding: 5px;
  --Iconsax-color: rgba(var(--theme-color), 1);
  --Iconsax-size: 18px;
  background-color: rgba(var(--white), 1);
  border-radius: 100%;
  position: absolute;
  bottom: -5px;
  right: -5px;
}
.pet-profile-background .profile-part .profile-image #file {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 26px;
  height: 26px;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}
.pet-profile-background .profile-part h3 {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.pet-profile-background .profile-part h4 {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.pet-profile-background .profile-part .location {
  color: rgba(var(--title-color), 1);
}
.pet-profile-background .profile-part .location i {
  --Iconsax-color: rgba(var(--title-color), 1);
  --Iconsax-size: 16px;
}

.pet-account-list {
  margin-top: 25px;
}
.pet-account-list li {
  width: 100%;
  padding-block: 16px;
  border-bottom: 1px solid rgba(var(--border-color), 1);
}
.pet-account-list li:first-child {
  padding-top: 0;
}
.pet-account-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.pet-account-list li .setting-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pet-account-list li .setting-box .setting-icon .main-icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 24px;
}
.pet-account-list li .setting-box .setting-icon .main-icon.main-img {
  width: 20px;
}
.pet-account-list li .setting-box .setting-icon .main-icon.theme {
  --Iconsax-Color: rgba(var(--theme-color), 1);
}
.pet-account-list li .setting-box .setting-content {
  width: calc(100% - 24px - 10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pet-account-list li .setting-box .setting-content h5 {
  line-height: 1;
  font-weight: 400;
  font-size: 15px;
  color: rgba(var(--title-color), 1);
}
.pet-account-list li .setting-box .setting-content h6 {
  margin-top: 5px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.pet-account-list li .setting-box .setting-content .arrow-icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 18px;
}

.staps-wrapper {
  margin-bottom: 20px;
}
.staps-wrapper .staps-list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.staps-wrapper .staps-list::before {
  content: "";
  border-bottom: 1px dashed rgba(var(--theme-color), 0.2);
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 0;
}
body.dark-mode .staps-wrapper .staps-list::before {
  border-bottom-color: rgba(var(--border-color), 1);
}
.staps-wrapper .stap {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: rgba(var(--light-bg), 1);
  z-index: 1;
}
@media (max-width: 600px) {
  .staps-wrapper .stap {
    width: calc(40px + 15 * (100vw - 320px) / 280);
    height: calc(40px + 15 * (100vw - 320px) / 280);
  }
}
.staps-wrapper .stap.active {
  background-color: rgba(var(--theme-color), 1);
}
.staps-wrapper .stap .stap-icon {
  width: 24px;
  height: 24px;
}
@media (max-width: 600px) {
  .staps-wrapper .stap .stap-icon {
    width: calc(20px + 4 * (100vw - 320px) / 280);
    height: calc(20px + 4 * (100vw - 320px) / 280);
  }
}

.pet-box {
  background-color: rgba(var(--theme-color), 0.1);
}
.pet-box h4 {
  color: rgba(var(--title-color), 1);
}
.pet-box h5 {
  color: rgba(var(--content-color), 1);
}
.pet-box .code {
  border: 1px dashed rgba(var(--theme-color), 1);
  color: rgba(var(--theme-color), 1);
}

.pet-payment-listing li {
  width: 100%;
}
body.dark-mode .pet-payment-listing li:nth-child(2) .payment-img img {
  filter: invert(1);
}
.pet-payment-listing li + li {
  margin-top: 21px;
}
.pet-payment-listing li .form-check {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background-color: rgba(var(--white), 1);
  border-radius: 10px;
  border: 1px solid rgba(var(--border-color), 0.28);
  padding: 20px 15px;
  box-shadow: 0px 4px 11px 2px rgba(var(--black), 0.03);
}
body.dark-mode .pet-payment-listing li .form-check {
  background-color: transparent;
}
.pet-payment-listing li .form-check .form-check-label {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.pet-payment-listing li .form-check .form-check-label .payment-img img {
  width: 30px;
  height: 30px;
}
.pet-payment-listing li .form-check .form-check-label .payment-content {
  display: block;
}
.pet-payment-listing li .form-check .form-check-label .payment-content .payment-account {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.pet-payment-listing li .form-check .form-check-label .payment-content .payment-expire {
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.pet-payment-listing li .form-check .form-check-input {
  width: 20px;
  height: 20px;
  float: unset;
  margin: 0;
  border: 1px solid rgba(var(--border-color), 1);
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  filter: none;
}
.pet-payment-listing li .form-check .form-check-input:checked {
  background-color: rgba(var(--theme-color), 1);
  border-color: rgba(var(--theme-color), 1);
}
.pet-payment-listing li .form-check .form-check-input:focus {
  border-color: rgba(var(--border-color), 1);
  box-shadow: none;
}
.pet-payment-listing li .form-check [type=radio] {
  border-radius: 100%;
  position: relative;
}
.pet-payment-listing li .form-check [type=radio]:checked {
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--theme-color), 1);
}
.pet-payment-listing li .form-check [type=radio]:checked::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: rgba(var(--theme-color), 1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
}
.pet-payment-listing.pet-pay li .form-check {
  padding: 0;
  border: none;
  box-shadow: none;
}

.pet-pay-total {
  padding-bottom: 35px;
}
.pet-pay-total li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.pet-pay-total li + li {
  margin-top: 13px;
}
.pet-pay-total li span {
  color: rgba(var(--title-color), 1);
}
.pet-pay-total li.total {
  color: rgba(var(--title-color), 1);
  font-size: 15px;
  font-weight: 700;
}
.pet-pay-total li.total span {
  color: rgba(var(--theme-color), 1);
}

.pet-profile-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px;
  background-color: rgba(var(--white), 1);
  border-radius: 10px;
  box-shadow: 15px 15px 30px 0 rgba(211, 209, 216, 0.25);
}
body.dark-mode .pet-profile-box {
  background-color: transparent;
  box-shadow: 15px 15px 30px 0 rgba(0, 0, 0, 0.25);
}
.pet-profile-box img {
  width: 44px;
  height: 44px;
  border-radius: 100%;
}
.pet-profile-box .pet-profile-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 8px - 44px);
}
.pet-profile-box .pet-profile-content h5 {
  font-size: 16px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
.pet-profile-box .pet-profile-content a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 100%;
  background-color: rgba(var(--success-color), 1);
}
.pet-profile-box .pet-profile-content a .icon {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 22px;
}

.pet-order-box {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 11px;
}
.pet-order-box li {
  background-color: rgba(var(--theme-color), 0.04);
  width: 100%;
  padding: 10px 8px;
  color: rgba(var(--theme-color), 1);
  font-size: 16px;
  font-weight: 500;
  border-radius: 9px;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .pet-order-box li {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}

.pet-address-content {
  margin-top: 16px;
}
.pet-address-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
.pet-address-content p {
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  border-bottom: 1px solid rgba(var(--border-color), 0.5);
  padding-bottom: 13px;
}
.pet-address-content span {
  margin-top: 8px;
  color: rgba(var(--error-color), 1);
  font-size: 16px;
  font-weight: 500;
}

/*=====================
 5.4   plant CSS
==========================*/
.plant {
  background-color: rgba(var(--white), 1);
}
.plant.dark-mode {
  background-color: rgba(var(--body-color), 1);
}

.banner-section .banner-img {
  width: 100%;
  border-radius: 12px;
}

.plant-horizontal-product-listing li {
  width: 100%;
  margin-bottom: 20px;
}
.plant-horizontal-product-listing li:last-child {
  margin-bottom: 0;
}

.payment-method-list {
  padding-top: 30px;
}
@media (max-width: 600px) {
  .payment-method-list {
    padding-top: calc(15px + 15 * (100vw - 320px) / 280);
  }
}
.payment-method-list li {
  box-shadow: 3px 7px 20px 0px rgba(var(--title-color), 0.03);
}
.payment-method-list li + li {
  margin-top: 20px;
}
.payment-method-list li .payment-list-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 15px;
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--border-color), 1);
  border-radius: 10px;
  box-shadow: 0px 4px 11px 2px rgba(var(--black), 0.03);
}
.dark-mode .payment-method-list li .payment-list-box {
  background-color: rgba(var(--light-bg), 1);
}
@media (max-width: 600px) {
  .payment-method-list li .payment-list-box {
    padding: calc(12px + 8 * (100vw - 320px) / 280) calc(10px + 5 * (100vw - 320px) / 280);
  }
}
.payment-method-list li .payment-list-box .form-check-input {
  width: 20px;
  height: 20px;
  margin: 0px;
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--content-color), 0.5) !important;
  border-radius: 100%;
  box-shadow: 0px 2px 15px 0px rgba(78, 160, 247, 0.08);
  transition: all 0.5s ease;
  filter: none;
}
body.dark-mode .payment-method-list li .payment-list-box .form-check-input {
  background-color: transparent;
}
.payment-method-list li .payment-list-box .form-check-input:focus {
  border-color: transparent;
  box-shadow: none;
}
.payment-method-list li .payment-list-box .form-check-input:checked {
  position: relative;
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--theme-color), 1) !important;
  float: unset;
}
.payment-method-list li .payment-list-box .form-check-input:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: rgba(var(--theme-color), 1);
  border-radius: 100%;
}
.payment-method-list li .payment-list-box .form-check-label {
  width: 100%;
  color: rgba(var(--title-color), 1);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
}
.payment-method-list li .payment-list-box .form-check-label .img {
  width: 35px;
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
}

.dark-mode .plant-fixed-panel {
  background-color: rgba(var(--body-color), 1);
}
.plant-fixed-panel .fixed-btn {
  font-weight: 700;
  font-size: 16px;
  color: rgba(var(--white), 1);
  background-color: rgba(var(--theme-color), 1);
  border-radius: 100px;
}
.plant-fixed-panel .fixed-btn:active {
  border: none;
}
.plant-fixed-panel .fixed-panel-content {
  padding: 15px 20px;
  color: rgba(var(--white), 1);
  background-color: rgba(var(--theme-color), 1);
}
.plant-fixed-panel .fixed-panel-content h5 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  margin-top: 5px;
  color: rgba(var(--white), 1);
}
.plant-fixed-panel .fixed-panel-content h6 {
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  color: rgba(var(--white), 1);
}
.plant-fixed-panel .fixed-panel-content .fixed-btn {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  color: rgba(var(--white), 1);
  background-color: transparent;
}
.plant-fixed-panel .fixed-panel-content .fixed-btn:hover {
  color: rgba(var(--white), 1) !important;
}
body.dark-mode .plant-fixed-panel .fixed-panel-content .fixed-btn {
  color: rgba(var(--title-color), 1);
  background-color: transparent;
}
body.dark-mode .plant-fixed-panel .fixed-panel-content .fixed-btn:hover {
  background-color: transparent !important;
}
.plant-fixed-panel .fixed-panel-content .fixed-btn i {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 16px;
}

.plant-address-list .address-box {
  position: relative;
  padding: 10px;
  width: 100%;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(var(--white), 1);
  border-radius: 10px;
  box-shadow: 0px 8px 10px 0px rgba(var(--black), 0.03);
}
.dark-mode .plant-address-list .address-box {
  background-color: rgba(var(--light-bg), 1);
}
.plant-address-list .address-box:last-child {
  margin-bottom: 0;
}
.plant-address-list .address-box .addreass-label {
  width: 100%;
}
.plant-address-list .address-box .addreass-label .address-content {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.plant-address-list .address-box .addreass-label .address-content img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.plant-address-list .address-box .addreass-label .address-content .address-details {
  width: calc(100% - 80px - 10px);
}
.plant-address-list .address-box .addreass-label .address-content .address-details .address-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 10px;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .plant-address-list .address-box .addreass-label .address-content .address-details .address-title {
    font-size: calc(16px + 2 * (100vw - 320px) / 280);
  }
}
.plant-address-list .address-box .addreass-label .address-content .address-details .address-title .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 18px;
}
@media (max-width: 600px) {
  .plant-address-list .address-box .addreass-label .address-content .address-details .address-title .icon {
    --Iconsax-Size: calc(16px + (18 - 16) * ((100vw - 320px) / (600 - 320)));
  }
}
.plant-address-list .address-box .addreass-label .address-content .address-details .address-location {
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: rgba(var(--content-color), 1);
}
.plant-address-list .address-box .addreass-label input {
  position: relative;
  width: 20px;
  height: 20px;
  float: unset;
  margin: 0;
  border: 1px solid rgba(var(--border-color), 1);
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
  border-radius: 100%;
}
.plant-address-list .address-box .addreass-label input:checked {
  background-color: transparent;
  border-color: rgba(var(--theme-color), 1) !important;
  border-radius: 100%;
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
}
.plant-address-list .address-box .addreass-label input:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: rgba(var(--theme-color), 1);
  border-radius: 100%;
}
.plant-address-list .address-box .addreass-label input:focus {
  border-color: rgba(var(--border-color), 1);
  box-shadow: none;
}

.plant-profile-background {
  position: relative;
}
.plant-profile-background .profile-part {
  text-align: center;
  margin-top: -50px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(var(--border-color), 1);
}
.plant-profile-background .profile-part .profile-image {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  position: relative;
}
.plant-profile-background .profile-part .profile-image .profile-pic {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-color: rgba(var(--white), 1);
  border-radius: 100%;
}
.plant-profile-background .profile-part .profile-image::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background: transparent;
  outline: 5px solid rgba(var(--white), 1);
  border-radius: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.plant-profile-background .profile-part .profile-image .edit-icon {
  padding: 5px;
  --Iconsax-color: rgba(var(--theme-color), 1);
  --Iconsax-size: 18px;
  background-color: rgba(var(--white), 1);
  border-radius: 100%;
  position: absolute;
  bottom: -5px;
  right: -5px;
}
.plant-profile-background .profile-part .profile-image #file {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 26px;
  height: 26px;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}
.plant-profile-background .profile-part h3 {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.plant-profile-background .profile-part h4 {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.plant-profile-background .profile-part .location {
  color: rgba(var(--title-color), 1);
}
.plant-profile-background .profile-part .location i {
  --Iconsax-color: rgba(var(--title-color), 1);
  --Iconsax-size: 16px;
}

.plant-account-list li .setting-box {
  padding: 0 !important;
  border: none !important;
  border-radius: unset !important;
}

.plant-notification-list li .notification-box {
  border: 1px solid rgba(var(--border-color), 1);
  border-radius: 10px;
  box-shadow: 0px 4px 11px 2px rgba(var(--black), 0.03);
}
.plant-notification-list li .notification-box.unread {
  background-color: rgba(var(--light-bg), 1);
}

.plant-product-image {
  text-align: center;
}
.plant-product-image .product {
  height: 280px;
}
.plant-product-image .swiper-pagination.product-pagination {
  position: relative;
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 10px;
  inset: unset;
  z-index: 1;
  transition: all 0.1 ease-in-out;
}
.plant-product-image .swiper-pagination.product-pagination .swiper-pagination-bullet {
  display: inline-flex;
  width: 6px;
  height: 6px;
  background-color: rgba(var(--theme-color), 0.7);
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
.plant-product-image .swiper-pagination.product-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: rgba(var(--theme-color), 1);
}

.plant-product-details-content {
  width: 100%;
  max-width: 600px;
  margin-top: -75px;
  background-color: rgba(var(--white), 1);
  border-radius: 50px 50px 0 0;
}
body.dark-mode .plant-product-details-content {
  background-color: rgba(var(--body-color), 1);
}
.plant-product-details-content .product-details {
  padding-top: 98px;
}
.plant-product-details-content .product-details .product-name {
  font-size: 16px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
.plant-product-details-content .product-details .name-description {
  font-size: 14px;
  margin-top: 4px;
  color: rgba(var(--content-color), 1);
}
.plant-product-details-content .product-details .price {
  margin-top: 13px;
  color: rgba(var(--title-color), 1);
}
.plant-product-details-content .product-details .price del {
  color: rgba(var(--content-color), 1);
}
.plant-product-details-content .product-details .plant-info-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(var(--border-color), 1);
}
.plant-product-details-content .product-details .plant-info-list li {
  width: 100%;
  padding-inline: 15px;
  border-right: 1px solid rgba(var(--border-color), 1);
}
.plant-product-details-content .product-details .plant-info-list li:first-child {
  padding-left: 0;
}
.plant-product-details-content .product-details .plant-info-list li:last-child {
  padding-right: 0;
  border-right: none;
}
.plant-product-details-content .product-details .plant-info-list li .info-title {
  font-weight: 400;
  font-size: 14px;
  color: rgba(var(--content-color), 1);
}
.plant-product-details-content .product-details .plant-info-list li .info-content {
  margin-top: 4px;
  font-weight: 600;
  font-size: 14px;
  color: rgba(var(--title-color), 1);
}
.plant-product-details-content .product-details .product-description {
  margin-top: 20px;
}
.plant-product-details-content .product-details .product-description .description-title {
  font-size: 18px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
.plant-product-details-content .product-details .product-description p {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}

.review-list .review-box {
  padding-block: 10px;
  border-bottom: 1px solid rgba(var(--border-color), 1);
}
.review-list .review-box:first-child {
  padding-top: 0;
}
.review-list .review-box:last-child {
  border-bottom: none;
}
.review-list .review-box .media {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.review-list .review-box .media .profile-icon {
  width: 45px;
  height: 45px;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.review-list .review-box .media .media-body {
  width: calc(100% - 45px - 12px);
  margin-left: 12px;
}
.review-list .review-box .media .media-body span {
  font-size: 13px;
  color: rgba(var(--content-color), 1);
}
.review-list .review-box .media .ratings {
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.review-list .review-box .media .ratings .star {
  width: 12px;
}
.review-list .review-box .review-content {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(var(--content-color), 1);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.plant-reset {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  max-width: 600px;
  z-index: 1;
  width: 100%;
  padding: 15px;
  background-color: rgba(var(--white), 1);
  box-shadow: 0px -6px 7px rgba(var(--black), 0.02);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.plant-reset .reset-btn {
  width: 100%;
  color: rgba(var(--title-color), 1);
  font-size: 14px;
  font-weight: 500;
  border-radius: 100px;
  background-color: rgba(var(--content-color), 0.12);
}
.plant-reset .reset-btn:hover, .plant-reset .reset-btn:active {
  background-color: rgba(var(--content-color), 0.12) !important;
  color: rgba(var(--title-color), 1) !important;
}
.plant-reset .review-button {
  width: 100%;
  border-radius: 100px;
  background-color: rgba(var(--theme-color), 1);
  color: rgba(var(--white), 1);
}

/*=======================
5.5 food SCSS
=========================*/
.food {
  background-color: rgba(var(--white), 1);
}
.food.dark-mode {
  background-color: rgba(var(--second-color), 1);
}

.map-text {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}

.map-bg-image {
  position: relative;
  display: flex;
  justify-content: center;
  margin-block: 60px 0;
}
@media (max-width: 600px) {
  .map-bg-image {
    margin-block: calc(20px + 40 * (100vw - 320px) / 280);
  }
}
.map-bg-image .map-img {
  position: absolute;
  top: 50%;
  left: 50%;
  animation: bonus-map 0.6s ease-in-out infinite alternate;
}

.hero-section img {
  border-radius: 12px;
}

.food-category-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 10px;
  background-color: rgba(var(--bg-color), 1);
  transition: all 0.2s ease-in-out;
  padding-block: 9px;
  border: 1px solid transparent;
}
.food-category-box img {
  height: 40px;
}
.food-category-box h4 {
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: rgba(var(--dark-bg), 1);
  transition: all 0.2s ease-in-out;
}
.food-category-box:hover {
  border-color: rgba(var(--theme-color), 1);
}
.food-category-box:hover h4 {
  color: rgba(var(--theme-color), 1);
}

.food-brand-main-box {
  padding-top: 22px;
  overflow: hidden;
}
.food-brand-main-box .food-brand-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 8px;
  background-color: rgba(var(--bg-color), 1);
  border-radius: 12px;
  position: relative;
}
.food-brand-main-box .food-brand-box .food-brand-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 100px;
  background-color: rgba(var(--bg-color), 1);
  border: 3px solid rgba(var(--white), 1);
  position: relative;
  z-index: 0;
  margin-top: -20px;
}
.dark-mode .food-brand-main-box .food-brand-box .food-brand-image {
  border-color: rgba(var(--second-color), 1);
}
.food-brand-main-box .food-brand-box .food-brand-image .brand-round {
  animation: round 6s linear infinite;
}
.food-brand-main-box .food-brand-box .food-brand-image .percent {
  padding: 18px;
}
.food-brand-main-box .food-brand-box .food-brand-image img {
  position: absolute;
  padding: 7px;
  z-index: -1;
  min-width: 50px;
  min-height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 600px) {
  .food-brand-main-box .food-brand-box .food-brand-image img {
    padding: calc(5px + 2 * (100vw - 320px) / 280);
  }
}
.food-brand-main-box .food-brand-box .food-brand-image svg {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: rgba(var(--white), 1);
  stroke: rgba(var(--white), 1);
}
.food-brand-main-box .food-brand-box .divider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  display: none;
}
.food-brand-main-box .food-brand-box .divider-container .divider {
  width: 90%;
  height: 1px;
  border-bottom: 1px dashed rgba(var(--border), 1);
  position: relative;
  margin-block: 14px;
}
.food-brand-main-box .food-brand-box .divider-container::before, .food-brand-main-box .food-brand-box .divider-container::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  background: rgba(var(--white), 1);
  border-radius: 12px;
  right: -21px;
  top: 4px;
}
@media (max-width: 600px) {
  .food-brand-main-box .food-brand-box .divider-container::before, .food-brand-main-box .food-brand-box .divider-container::after {
    top: calc(0px + 4 * (100vw - 320px) / 280);
  }
}
.food-brand-main-box .food-brand-box .divider-container::before {
  left: -12px;
}
.food-brand-main-box .food-brand-box .food-brand-contant {
  text-align: center;
  padding-bottom: 8px;
  width: 100%;
  border-top: 1px dashed rgba(var(--border), 1);
  position: relative;
  margin-top: 14px;
  padding-top: 14px;
  padding-inline: 5px;
}
@media (max-width: 600px) {
  .food-brand-main-box .food-brand-box .food-brand-contant {
    margin-top: calc(10px + 4 * (100vw - 320px) / 280);
    padding-top: calc(10px + 4 * (100vw - 320px) / 280);
  }
}
.food-brand-main-box .food-brand-box .food-brand-contant::before, .food-brand-main-box .food-brand-box .food-brand-contant::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  background: rgba(var(--white), 1);
  border-radius: 12px;
  top: -10px;
}
.dark-mode .food-brand-main-box .food-brand-box .food-brand-contant::before, .dark-mode .food-brand-main-box .food-brand-box .food-brand-contant::after {
  background-color: rgba(var(--second-color), 1);
}
.food-brand-main-box .food-brand-box .food-brand-contant::before {
  right: -10px;
}
.food-brand-main-box .food-brand-box .food-brand-contant:after {
  left: -10px;
}
.food-brand-main-box .food-brand-box .food-brand-contant h6 {
  font-weight: 600;
  line-height: 23px;
  color: rgba(var(--dark-bg), 1);
}
.food-brand-main-box .food-brand-box .food-brand-contant h5 {
  font-size: 12px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}

.food-restaurant-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.food-restaurant-list li {
  width: 100%;
  background-color: rgba(var(--bg-color), 1);
  box-shadow: 0 0 9.8px 1px rgba(var(--bg-color), 1);
  padding: 12px 10px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-radius: 13px;
}
.food-restaurant-list li .food-image {
  width: 73px;
  height: 73px;
  border-radius: 10px;
  overflow: hidden;
}
.food-restaurant-list li .food-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.2s ease-in-out;
}
.food-restaurant-list li .food-list-details {
  width: calc(100% - 73px - 9px);
  position: relative;
}
.food-restaurant-list li .food-list-details .food-content-rate {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.food-restaurant-list li .food-list-details .food-content-rate a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(var(--dark-bg), 1);
  transition: all 0.2s ease-in-out;
  margin-bottom: 4px;
}
@media (max-width: 600px) {
  .food-restaurant-list li .food-list-details .food-content-rate a {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
  }
}
.food-restaurant-list li .food-list-details .food-content-rate h6 {
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.food-restaurant-list li .food-list-details .food-min-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}
@media (max-width: 600px) {
  .food-restaurant-list li .food-list-details .food-min-content {
    gap: calc(6px + 6 * (100vw - 320px) / 280);
  }
}
.food-restaurant-list li .food-list-details .food-min-content li {
  width: unset;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  background: transparent;
  box-shadow: none;
  font-size: 13px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
  padding: 0;
}
.food-restaurant-list li .food-list-details .food-min-content li::after {
  content: none !important;
}
.food-restaurant-list li .food-list-details .food-min-content li:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 12px;
  background: #ddd;
  left: 77px;
  margin-top: 3px;
}
@media (max-width: 600px) {
  .food-restaurant-list li .food-list-details .food-min-content li:not(:last-child)::after {
    left: calc(75px + 2 * (100vw - 320px) / 280);
  }
}
[dir=rtl] .food-restaurant-list li .food-list-details .food-min-content li:not(:last-child)::after {
  left: unset;
  right: 77px;
}
@media (max-width: 600px) {
  [dir=rtl] .food-restaurant-list li .food-list-details .food-min-content li:not(:last-child)::after {
    right: calc(75px + 2 * (100vw - 320px) / 280);
  }
}
.food-restaurant-list li .food-list-details .food-min-content li svg {
  width: 15px;
  height: 15px;
  fill: rgba(var(--theme-color), 1);
}
.food-restaurant-list li .food-list-details .food-min-content .order-button {
  background-color: rgba(var(--theme-color), 1);
  padding: 6px 12px;
  border-radius: 8px;
  color: rgba(var(--dark-bg), 1);
  font-size: 13px;
  font-weight: 500;
  margin: 0;
}
.dark-mode .food-restaurant-list li .food-list-details .food-min-content .order-button {
  color: rgba(var(--bg-color), 1);
}
.food-restaurant-list li .food-list-details .food-min-content .dollar {
  margin-left: auto;
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--theme-color), 1);
}
.food-restaurant-list li .food-list-details .food-min-content .free {
  color: rgba(var(--green), 1);
  font-size: 12px;
  font-weight: 700;
  margin-left: auto;
}
@media (max-width: 385px) {
  .food-restaurant-list li .food-list-details .food-min-content .free {
    margin-inline: 0 auto;
  }
}
.food-restaurant-list li .rating-box {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 100px;
  background-color: rgba(var(--theme-color), 0.1);
  font-size: 13px;
}
.dark-mode .food-restaurant-list li .rating-box {
  background-color: rgba(var(--second-color), 1);
}
[dir=rtl] .food-restaurant-list li .rating-box {
  right: unset;
  left: 0;
}
.food-restaurant-list li .rating-box svg {
  width: 12px;
  height: 12px;
  fill: rgba(var(--theme-color), 1);
}
.food-restaurant-list li .rating-box h6 {
  font-size: 12px;
  font-weight: 500;
  color: rgba(var(--dark-bg), 1);
}
@media (max-width: 600px) {
  .food-restaurant-list li {
    padding-inline: calc(5px + 7 * (100vw - 320px) / 280);
  }
}
.food-restaurant-list li:hover .food-image img {
  transform: scale(1.1);
}

.slider-after {
  position: relative;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
.slider-after::before {
  content: "";
  z-index: 1;
  width: 100%;
  top: 0;
  position: absolute;
  height: 184px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.94) -14.13%, rgba(0, 0, 0, 0.03) 113.32%);
}
.slider-after .swiper {
  z-index: unset;
}
.slider-after .swiper .swiper-wrapper {
  z-index: unset;
}
.slider-after img {
  height: 184px;
  -o-object-fit: cover;
     object-fit: cover;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.slider-after .swiper-pagination {
  bottom: 0;
  top: unset;
}
.slider-after .swiper-pagination .swiper-pagination-bullet {
  background-color: rgba(var(--white), 0.48);
  opacity: 1;
  margin-inline: 6px;
  width: 10px;
  height: 10px;
  border-radius: 100%;
}
.slider-after .swiper-pagination .swiper-pagination-bullet-active {
  background-color: rgba(var(--white), 1);
  outline: 1px solid rgba(var(--white), 1);
  outline-offset: 2px;
}

.restaurant-slider-detail .switch-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
[dir=rtl] .restaurant-slider-detail .switch-content .form-switch {
  padding-right: 40px;
  padding-left: unset;
}
.restaurant-slider-detail .switch-content h6 {
  font-size: 18px;
  font-weight: 700;
  color: rgba(var(--dark-bg), 1);
}
.restaurant-slider-detail .switch-content .custom-switch .form-check-input {
  width: 50px;
  height: 18px;
  background-image: none;
  background-color: rgba(var(--green), 1);
  border: none;
  border-radius: 50px;
  position: relative;
  transition: background-color 0.3s ease;
  box-shadow: none;
  margin: 0;
  filter: none;
}
.restaurant-slider-detail .switch-content .custom-switch .form-check-input:focus {
  box-shadow: none;
}
.restaurant-slider-detail .switch-content .custom-switch .form-check-input::before {
  content: "";
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: -1px;
  width: 23px;
  transform: translateY(-50%);
  height: 23px;
  background-color: rgba(var(--white), 1);
  border-radius: 50%;
  z-index: 2;
  transition: all 0.3s ease-in-out;
  filter: none;
  border: 2px solid rgba(var(--green), 1);
}
.restaurant-slider-detail .switch-content .custom-switch .form-check-input::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8%;
  width: 13px;
  height: 13px;
  background-color: rgba(var(--green), 1);
  border-radius: 3px;
  z-index: 3;
  transition: all 0.3s ease-in-out;
}
.restaurant-slider-detail .switch-content .custom-switch .form-check-input:checked {
  background-color: rgba(var(--error-color), 1);
}
.restaurant-slider-detail .switch-content .custom-switch .form-check-input:checked::before {
  transform: translateX(30px) translateY(-50%);
  border-color: rgba(var(--error-color), 1);
}
.restaurant-slider-detail .switch-content .custom-switch .form-check-input:checked::after {
  transform: translateX(30px) translateY(-50%);
  background-color: rgba(var(--error-color), 1);
}
.restaurant-slider-detail .restaurant-detail-time {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.restaurant-slider-detail .restaurant-detail-time li {
  display: flex;
  align-items: center;
}
.restaurant-slider-detail .restaurant-detail-time li svg {
  width: 16px;
  height: 16px;
  fill: rgba(var(--theme-color), 1);
}
.restaurant-slider-detail .restaurant-detail-time li h6 {
  margin-left: 5px;
  font-weight: 500;
  font-size: 15px;
  color: rgba(var(--dark-bg), 1);
}
[dir=rtl] .restaurant-slider-detail .restaurant-detail-time li h6 {
  margin-right: 5px;
  margin-left: unset;
}
.restaurant-slider-detail p {
  margin-top: 10px;
  color: rgba(var(--content-color), 1);
  line-height: 23px;
}

.food-banner-box {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 15px 15px 30px 0 rgba(var(--bg-color), 1);
}
.dark-mode .food-banner-box {
  box-shadow: none;
}
.food-banner-box .food-banner-image {
  width: 100%;
  height: 120px;
  background-image: url(13a1df7930167db7cdfc.png);
  position: relative;
  display: flex;
  align-items: center;
}
.food-banner-box .food-banner-image h2 {
  width: 100%;
  text-align: center;
  color: rgba(var(--white), 1);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.food-banner-box .food-banner-image h2 span {
  font-weight: 600;
  color: rgba(var(--theme-color), 1);
}
.food-banner-box .food-banner-image h2 svg {
  width: 12px;
  height: 12px;
  fill: rgba(var(--theme-color), 1);
  margin-bottom: 3px;
}
@media (max-width: 467px) {
  .food-banner-box .food-banner-image h2 {
    width: 100%;
    padding-inline: 25px;
  }
}
.food-banner-box .food-banner-contant {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(var(--bg-color), 1);
  padding: 14px 19px;
  position: relative;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.food-banner-box .food-banner-contant .food-banner-detail {
  padding-left: 6px;
}
.food-banner-box .food-banner-contant .food-banner-detail h5 {
  font-size: 16px;
  font-weight: 700;
  color: rgba(var(--dark-bg), 1);
}
@media (max-width: 600px) {
  .food-banner-box .food-banner-contant .food-banner-detail h5 {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.food-banner-box .food-banner-contant .food-banner-detail h6 {
  font-size: 14px;
  margin-top: 5px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .food-banner-box .food-banner-contant .food-banner-detail h6 {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
  }
}
.food-banner-box .food-banner-contant .left-side {
  --Iconsax-Color: rgba(var(--dark-bg), 1);
  --Iconsax-Size: 22px;
}
.food-banner-box .food-banner-contant::before, .food-banner-box .food-banner-contant::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(var(--white), 1);
  border-radius: 12px;
  right: -9px;
  top: 21px;
}
.dark-mode .food-banner-box .food-banner-contant::before, .dark-mode .food-banner-box .food-banner-contant::after {
  background-color: rgba(var(--second-color), 1);
}
.food-banner-box .food-banner-contant::after {
  left: -9px;
}
.food-banner-box .food-map-image {
  width: 100%;
  height: 120px;
  background-image: url(37cfa8aa34f5243b5eb1.png);
}
.food-banner-box .food-order-map {
  width: 100%;
  height: 200px;
  cursor: pointer;
  overflow: hidden;
}
@media (max-width: 600px) {
  .food-banner-box .food-order-map {
    height: calc(100px + 100 * (100vw - 320px) / 280);
  }
}
.food-banner-box .food-map-contant {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(var(--white), 1);
  padding: 14px 20px;
}
.dark-mode .food-banner-box .food-map-contant {
  background-color: rgba(var(--bg-color), 1);
}
.food-banner-box .food-map-contant .food-map-detail {
  width: calc(100% - 70px - 10px);
}
.food-banner-box .food-map-contant .food-map-detail h5 {
  font-size: 14px;
  font-weight: 600;
  color: rgba(var(--dark-bg), 1);
}
.food-banner-box .food-map-contant .food-map-detail h6 {
  font-size: 12px;
  margin-top: 5px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.food-banner-box .food-map-contant .min-card {
  background-color: rgba(var(--theme-color), 1);
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(var(--dark-bg), 1);
}
.food-banner-box .food-map-contant a {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--theme-color), 1);
  border-radius: 50px;
}
.food-banner-box .food-map-contant a .edit-icon {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 17px;
}
.food-banner-box .food-map-contant a span {
  color: rgba(var(--dark-bg), 1);
}

.food-bill-list li + li {
  margin-top: 12px;
}
.food-bill-list li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(var(--content-color), 1);
  font-weight: 500;
  font-size: 14px;
}
.food-bill-list li a {
  color: rgba(var(--error-color), 1);
}
.food-bill-list .food-total-bill {
  background-color: rgba(var(--bg-color), 1);
  padding: 14px 10px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 16px;
  color: rgba(var(--dark-bg), 1);
}

.food-payment-listing {
  padding: 15px;
  background-color: rgba(var(--white), 1);
  border-radius: 13px;
  box-shadow: 0 0 9.8px 1px rgba(var(--bg-color), 1);
}
body.dark-mode .food-payment-listing {
  background-color: rgba(var(--bg-color), 1);
}
.food-payment-listing .food-payment-card {
  border-radius: 13px;
  box-shadow: 0 0 9.8px 1px rgba(var(--bg-color), 1);
  border: 0;
  padding-top: 20px;
  margin-bottom: 15px;
}
@media (max-width: 600px) {
  .food-payment-listing .food-payment-card {
    margin-bottom: calc(12px + 3 * (100vw - 320px) / 280);
  }
}
.food-payment-listing input[type=radio] {
  display: block;
}
.food-payment-listing li {
  width: 100%;
  padding-bottom: 20px;
  padding-inline: 10px;
}
@media (max-width: 600px) {
  .food-payment-listing li {
    padding-bottom: calc(12px + 8 * (100vw - 320px) / 280);
  }
}
body.dark-mode .food-payment-listing li:nth-child(2) img {
  filter: brightness(0) invert(1);
}
.food-payment-listing li + li {
  border-top: 1px dashed rgba(var(--border-color), 1);
  padding-top: 20px;
}
@media (max-width: 600px) {
  .food-payment-listing li + li {
    padding-bottom: calc(12px + 8 * (100vw - 320px) / 280);
  }
}
.food-payment-listing li:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
.food-payment-listing li .form-check {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.food-payment-listing li .form-check .form-check-label {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.food-payment-listing li .form-check .form-check-label .payment-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 44px;
  padding: 8px;
}
.food-payment-listing li .form-check .form-check-label .payment-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 44px;
  background-color: rgba(var(--bg-color), 1);
  padding: 8px;
  border-radius: 6px;
}
.food-payment-listing li .form-check .form-check-label .payment-content {
  display: block;
}
.food-payment-listing li .form-check .form-check-label .payment-content .cash-payment {
  display: block;
  font-weight: 500;
  font-size: 14px;
  font-family: "Lato", serif;
}
.food-payment-listing li .form-check .form-check-label .payment-content .payment-account {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(var(--dark-bg), 1);
}
.food-payment-listing li .form-check .form-check-label .payment-content .payment-expire {
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.food-payment-listing li .form-check .form-check-input {
  width: 20px;
  height: 20px;
  float: unset;
  margin: 0;
  border: 1px solid rgba(var(--content-color), 1);
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  filter: none;
  cursor: pointer;
}
.food-payment-listing li .form-check .form-check-input:checked {
  background-color: rgba(var(--theme-color), 1);
  border-color: rgba(var(--theme-color), 1);
}
.food-payment-listing li .form-check .form-check-input:focus {
  border-color: rgba(var(--border-color), 1);
  box-shadow: none;
}
.food-payment-listing li .form-check [type=radio] {
  border-radius: 100%;
  position: relative;
}
.food-payment-listing li .form-check [type=radio]:checked {
  background-color: transparent;
  border: 1px solid rgba(var(--theme-color), 1);
}
.food-payment-listing li .form-check [type=radio]:checked::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: rgba(var(--theme-color), 1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
}

.new-card-box {
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  border: 1px dashed rgba(var(--theme-color), 1);
  border-radius: 6px;
}
.new-card-box .plus-icon {
  margin-right: 6px;
  --Iconsax-Color: rgba(var(--theme-color), 1);
  --Iconsax-Size: 20px;
}

.food-order-list {
  margin-top: 30px;
  margin-bottom: 50px;
  position: relative;
}
.food-order-list li {
  width: 100%;
  display: flex;
  align-items: center;
}
.food-order-list li + li {
  margin-top: 35px;
}
.food-order-list li .bg-lighter-primary {
  z-index: 1;
  border-radius: 50px;
  width: 15px;
  height: 15px;
  outline: 4px solid rgba(var(--content-color), 0.3);
  border: 1px solid rgba(var(--white), 1);
  background-color: rgba(var(--dark-bg), 1);
  transition: all 0.3s ease;
}
.dark-mode .food-order-list li .bg-lighter-primary {
  background-color: rgba(var(--bg-color), 1);
}
.food-order-list li .food-order-contant {
  width: calc(100% - 26px - 47px);
}
.food-order-list li .food-order-contant .order-title {
  margin-left: 15px;
}
[dir=rtl] .food-order-list li .food-order-contant .order-title {
  margin-right: 15px;
  margin-left: unset;
}
.food-order-list li .food-order-contant .order-title h5 {
  margin-bottom: 3px;
  color: rgba(var(--dark-bg), 1);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.food-order-list li .food-order-contant .order-title span {
  color: rgba(var(--content-color), 1);
  font-size: 12px;
  font-weight: 400;
  transition: color 0.3s ease;
}
.food-order-list li h6 {
  color: rgba(var(--content-color), 1);
  transition: color 0.3s ease;
}
.food-order-list li::after {
  content: "";
  position: absolute;
  border-right: 1px dashed rgba(var(--content-color), 0.3);
  height: 80%;
  top: 28px;
  left: 7px;
}
[dir=rtl] .food-order-list li::after {
  right: 7px;
  left: unset;
}
.food-order-list li.active .bg-lighter-primary {
  background-color: rgba(var(--theme-color), 1);
  outline: 4px solid rgba(var(--theme-color), 0.3);
}
.food-order-list li.active::after {
  border-right: 1px dashed rgba(var(--theme-color), 1);
}
.food-order-list li.active .order-title h5 {
  color: rgba(var(--theme-color), 1);
}
.food-order-list li.active h6 {
  color: rgba(var(--theme-color), 1);
}

.driver-chat-header {
  max-width: 600px;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: rgba(var(--white), 1);
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  box-shadow: 15px 15px 30px 0 rgba(var(--bg-color), 1);
}
.dark-mode .driver-chat-header {
  background-color: rgba(var(--second-color), 1);
}
.driver-chat-header .driver-contant {
  display: flex;
  align-items: center;
  padding: 15px;
}
.driver-chat-header .driver-contant img {
  height: 58px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 5px;
  margin-left: 10px;
}
.driver-chat-header .driver-contant .driver-user-info {
  width: calc(100% - 50px);
  margin-left: 10px;
}
.driver-chat-header .driver-contant .driver-user-info h5 {
  font-weight: 600;
  font-size: 16px;
  color: rgba(var(--dark-bg), 1);
}
@media (max-width: 600px) {
  .driver-chat-header .driver-contant .driver-user-info h5 {
    font-size: calc(13px + 3 * (100vw - 320px) / 280);
  }
}
.driver-chat-header .driver-contant .driver-user-info span {
  font-weight: 400;
  font-size: 14px;
  color: rgba(var(--content-color), 1);
}
.driver-chat-header .driver-contant .call-icon {
  --Iconsax-Color: rgba(var(--dark-bg), 1);
  --Iconsax-Size: 24px;
}
.driver-chat-header .driver-contant .back-icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 22px;
}

.chat-message-box .left-chat-box {
  width: 100%;
  text-align: left;
}
.chat-message-box .left-chat-box .left-chat-contant {
  max-width: calc(100% - 100px);
  margin-left: auto;
  display: inline-block;
  background-color: rgba(var(--bg-color), 1);
  padding: 10px 20px;
  border-radius: 6px;
  position: relative;
}
@media (max-width: 600px) {
  .chat-message-box .left-chat-box .left-chat-contant {
    padding-block: calc(8px + 2 * (100vw - 320px) / 280);
    padding-inline: calc(12px + 8 * (100vw - 320px) / 280);
  }
}
.chat-message-box .left-chat-box .left-chat-contant span {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--dark-bg), 1);
  word-wrap: break-word;
}
.chat-message-box .left-chat-box .left-chat-contant::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -14px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid rgba(var(--bg-color), 1);
}
.chat-message-box .left-chat-box .chat-time {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.chat-message-box .right-chat-box {
  display: block;
  margin-bottom: 15px;
}
.chat-message-box .right-chat-box .right-chat-body {
  text-align: right;
}
.chat-message-box .right-chat-box .right-chat-body .right-chat-contant {
  max-width: calc(100% - 100px);
  margin-left: auto;
  display: inline-block;
  text-align: left;
  background-color: rgba(var(--theme-color));
  padding: 10px 20px;
  border-radius: 6px;
  position: relative;
}
@media (max-width: 600px) {
  .chat-message-box .right-chat-box .right-chat-body .right-chat-contant {
    padding-block: calc(8px + 2 * (100vw - 320px) / 280);
    padding-inline: calc(12px + 8 * (100vw - 320px) / 280);
  }
}
.chat-message-box .right-chat-box .right-chat-body .right-chat-contant span {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--dark-bg), 1);
  word-wrap: break-word;
}
.chat-message-box .right-chat-box .right-chat-body .right-chat-contant::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -14px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 14px solid rgba(var(--theme-color), 1);
}
.chat-message-box .right-chat-box .right-chat-body .chat-time {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  text-align: right;
}

.chat-container {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background-color: rgba(var(--white), 1);
}
.dark-mode .chat-container {
  background-color: rgba(var(--second-color), 1);
}
.chat-container .chat-input {
  width: 100%;
  padding-block: 12px;
  padding-right: 40px;
  padding-left: 20px;
  border-radius: 8px;
  outline: none;
  font-size: 16px;
  border: 0;
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--bg-color), 1);
}
[dir=rtl] .chat-container .chat-input {
  padding-left: 40px;
  padding-right: 20px;
}
@media (max-width: 600px) {
  .chat-container .chat-input {
    padding-right: calc(30px + 10 * (100vw - 320px) / 280);
    padding-left: calc(8px + 12 * (100vw - 320px) / 280);
  }
}
.chat-container .input-icon {
  cursor: pointer;
  position: absolute;
  right: 90px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 550px) {
  .chat-container .input-icon {
    right: calc(85px + 5 * (100vw - 320px) / 280);
  }
}
[dir=rtl] .chat-container .input-icon {
  right: unset;
  left: 90px;
}
.chat-container .input-icon .clip-icon {
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 20px;
}
.chat-container .input-icon .chat-icon {
  position: absolute !important;
  transform: translate(-16px, -40px) !important;
  border: none;
  background-color: transparent;
  margin-top: 20px;
}
[dir=rtl] .chat-container .input-icon .chat-icon {
  transform: translate(-77%, -40px) !important;
}
.chat-container .input-icon .chat-icon .dropdown-item {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background-color: rgba(var(--white), 1);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  box-shadow: -2px 6px 8px 0px rgba(var(--bg-color), 1);
  border: none;
}
.chat-container .input-icon .chat-icon .dropdown-item:hover {
  background-color: rgba(var(--theme-color));
}
.chat-container .input-icon .chat-icon .dropdown-item:hover .clip-icon {
  --Iconsax-Color: rgba(var(--white), 1);
}
.chat-container .send-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--theme-color), 1);
  border: none;
  padding: 10px;
  border-radius: 12px;
  cursor: pointer;
}
.chat-container .send-btn .send-icon {
  --Iconsax-Color: rgba(var(--dark-bg), 1);
  --Iconsax-Size: 28px;
}

.order-map {
  background-color: transparent;
}
.order-map .back-icon {
  --Iconsax-Color: rgba(var(--dark-bg), 1);
  --Iconsax-Size: 22px;
}

.driver-location-image img {
  width: 100%;
  height: 711px;
  -o-object-fit: cover;
     object-fit: cover;
}

.food-categories-section .food-categories-box {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .food-categories-section .food-categories-box {
    margin-bottom: calc(12px + 8 * (100vw - 320px) / 280);
  }
}
.food-categories-section .food-categories-box .categories-bg-img {
  position: absolute;
  width: calc(100% - 40px);
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
.food-categories-section .food-categories-box .categories-bg-img img {
  width: 100%;
  height: 70px;
}
[dir=rtl] .food-categories-section .food-categories-box .categories-bg-img img {
  transform: scale(-1);
}
.food-categories-section .food-categories-box .food-categories-content {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
  padding-left: 28px;
}
@media (max-width: 600px) {
  .food-categories-section .food-categories-box .food-categories-content {
    padding-left: calc(20px + 8 * (100vw - 320px) / 280);
  }
}
.food-categories-section .food-categories-box h5 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--dark-bg), 1);
  margin-bottom: 3px;
}
.food-categories-section .food-categories-box span {
  font-weight: 500;
  font-size: 14px;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 320px) {
  .food-categories-section .food-categories-box span {
    font-size: 13px;
  }
}
.food-categories-section .food-categories-box .food-categories-image {
  width: 80px;
  height: 80px;
}
.food-categories-section .food-categories-box .food-categories-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.food-order-details {
  margin-top: 8px;
  position: relative;
}
.food-order-details li {
  padding: 20px 10px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.food-order-details li .bg-lighter-primary {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  border-radius: 100%;
  background-color: rgba(var(--bg-color), 1);
}
.food-order-details li .bg-lighter-primary .menu-icon {
  --Iconsax-Color: rgba(var(--dark-bg), 1);
  --Iconsax-Size: 28px;
}
.food-order-details li .bg-lighter-primary .speed-star {
  width: 28px;
  height: 28px;
  stroke: rgba(var(--dark-bg), 1);
}
.food-order-details li .food-order-contant {
  width: calc(100% - 66px);
  position: relative;
}
.food-order-details li .food-order-contant .order-title h5 {
  margin-bottom: 3px;
  color: rgba(var(--dark-bg), 1);
  font-size: 14px;
  font-weight: 600;
}
.food-order-details li .food-order-contant .order-title h5 span {
  font-weight: 400;
  font-size: 13px;
  color: rgba(var(--dark-bg), 1);
  position: relative;
  margin-left: 20px;
}
@media (max-width: 600px) {
  .food-order-details li .food-order-contant .order-title h5 span {
    margin-left: calc(12px + 8 * (100vw - 320px) / 280);
  }
}
.food-order-details li .food-order-contant .order-title h5 span::before {
  width: 4px;
  height: 4px;
  content: "";
  position: absolute;
  background-color: rgba(var(--dark-bg), 1);
  border-radius: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: -8px;
}
.food-order-details li .food-order-contant .order-title h6 {
  color: rgba(var(--content-color), 1);
  font-size: 12px;
  font-weight: 400;
}
.food-order-details li .food-order-contant::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -25px;
  width: 100%;
  height: 1px;
  background-color: rgba(var(--bg-color), 1);
}
.food-order-details li:last-child .food-order-contant::after {
  display: none;
}
.food-order-details .read {
  background-color: rgba(var(--bg-color), 1);
}
.food-order-details .read .bg-lighter-primary {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  border-radius: 100%;
  background-color: rgba(var(--white), 1);
}
body.dark-mode .food-order-details .read .bg-lighter-primary {
  background-color: rgba(var(--second-color), 1);
}
.food-order-details::after {
  content: "";
  position: absolute;
  border-right: 1px solid rgba(var(--border-color), 0.6);
  height: 85%;
  top: 28px;
  left: 35px;
}
[dir=rtl] .food-order-details::after {
  left: unset;
  right: 35px;
}

.food-coupon-section li {
  margin-bottom: 20px;
  background-color: rgba(var(--bg-color), 1);
  box-shadow: 15px 15px 30px 0 rgba(var(--bg-color), 1);
  border-radius: 20px;
}
.food-coupon-section li .food-coupon-image {
  position: relative;
}
.food-coupon-section li .food-coupon-image .offer-text {
  position: absolute;
  top: 50%;
  color: rgba(var(--dark-bg), 1);
  font-size: 18px;
  font-weight: 700;
  transform: translateY(-50%);
  margin-left: 15px;
}
[dir=rtl] .food-coupon-section li .food-coupon-image .offer-text {
  left: 0;
}
@media (max-width: 600px) {
  .food-coupon-section li .food-coupon-image .offer-text {
    font-size: calc(16px + 2 * (100vw - 320px) / 280);
  }
}
.food-coupon-section li .food-coupon-box {
  padding: 15px;
}
.food-coupon-section li .food-coupon-box .food-coupon-pay {
  width: 40px;
  height: 36px;
  background-color: rgba(var(--content-color), 0.1);
  border-radius: 6px;
  padding: 5px;
  display: flex;
  align-items: center;
}
.food-coupon-section li .food-coupon-box .food-coupon-container {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
}
.food-coupon-section li .food-coupon-box .food-coupon-container .food-coupon-contant {
  width: calc(100% - 26px - 10px);
}
.food-coupon-section li .food-coupon-box .food-coupon-container .food-coupon-contant h5 {
  font-size: 14px;
  font-weight: 600;
  color: rgba(var(--dark-bg), 1);
}
.food-coupon-section li .food-coupon-box .food-coupon-container .food-coupon-contant span {
  color: rgba(var(--green), 1);
  font-size: 14px;
  font-weight: 400;
}
.food-coupon-section li .food-coupon-box .list-unstyled {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}
.food-coupon-section li .food-coupon-box .list-unstyled li {
  background-color: transparent;
  margin: 0;
  box-shadow: none;
  color: rgba(var(--dark-bg), 0.8);
  font-weight: 500;
  font-size: 14px;
  padding-bottom: 5px;
}
.food-coupon-section li .food-coupon-box a {
  color: rgba(var(--theme-color), 1);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 6px;
  padding-bottom: 3px;
}
.food-coupon-section li .food-coupon-box .apply {
  color: rgba(var(--content-color), 0.35);
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid rgba(var(--content-color), 0.35);
  padding-bottom: 2px;
}
.food-coupon-section li .food-coupon-box .food-coupon-detail {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  padding-top: 12px;
  border-top: 1px dashed rgba(var(--border), 1);
}
@media (max-width: 600px) {
  .food-coupon-section li .food-coupon-box .food-coupon-detail {
    font-size: calc(12px + 2 * (100vw - 320px) / 280);
  }
}
.food-coupon-section li .food-coupon-box .food-coupon-detail a {
  color: rgba(var(--dark-bg), 1);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ball-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block: 100px;
}
.ball-box img {
  width: 234px;
  height: 217px;
}
@media (max-width: 600px) {
  .ball-box img {
    width: calc(200px + 34 * (100vw - 320px) / 280);
    height: calc(190px + 27 * (100vw - 320px) / 280);
  }
}

.ball-contant {
  text-align: center;
  margin-bottom: 20px;
}
.ball-contant h5 {
  font-size: 18px;
  font-weight: 700;
  color: rgba(var(--dark-bg), 1);
  margin-bottom: 15px;
}
.ball-contant p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  line-height: 1.5;
}

.address-list-box .address-list .address-box {
  width: calc(100% - 10px);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  padding: 14px 10px;
  background-color: rgba(var(--white), 1);
  box-shadow: 15px 15px 30px 0 rgba(var(--bg-color), 1);
  border-radius: 15px;
}
body.dark-mode .address-list-box .address-list .address-box {
  background-color: rgba(var(--bg-color), 1);
}
.address-list-box .address-list .address-box img {
  border-radius: 10px;
}
.address-list-box .address-list .address-box .address-list-contant .address-name {
  display: flex;
}
.address-list-box .address-list .address-box .address-list-contant .address-name svg {
  width: 20px;
  height: 20px;
  stroke: rgba(var(--dark-bg), 1);
  fill: none;
}
.address-list-box .address-list .address-box .address-list-contant .address-name h5 {
  margin-left: 6px;
  font-size: 18px;
  font-weight: 500;
  color: rgba(var(--dark-bg), 1);
}
[dir=rtl] .address-list-box .address-list .address-box .address-list-contant .address-name h5 {
  margin-left: unset;
  margin-right: 6px;
}
.address-list-box .address-list .address-box .address-list-contant p {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  white-space: normal;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}

.wallet-banner {
  position: relative;
}
.wallet-banner img {
  width: 100%;
  height: 76px;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-right-radius: 12px;
  border-top-left-radius: 12px;
}
.wallet-banner .wallet-total {
  position: absolute;
  top: 50%;
  margin-left: 15px;
  transform: translateY(-50%);
  color: rgba(var(--dark-bg), 1);
}
[dir=rtl] .wallet-banner .wallet-total {
  left: 0;
}
.wallet-banner .wallet-total h5 {
  font-size: 14px;
  font-weight: 400;
}
.wallet-banner .wallet-total h4 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 4px;
}

.wallet-wrapper li {
  padding: 15px 5px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(var(--border), 0.3);
}
.wallet-wrapper li .wallet-content {
  font-size: 14px;
}
.wallet-wrapper li .wallet-content h5 {
  font-weight: 500;
  color: rgba(var(--dark-bg), 1);
}
.wallet-wrapper li .wallet-content h6 {
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  margin-top: 5px;
}
.wallet-wrapper li .wallet-price {
  font-size: 14px;
}
.wallet-wrapper li .wallet-price h6 {
  font-weight: 600;
  color: rgba(var(--dark-bg), 1);
}
.wallet-wrapper li .wallet-price .credit-title {
  font-weight: 500;
  color: rgba(var(--success-color), 1);
  margin-top: 5px;
}
.wallet-wrapper li .wallet-price .debit-title {
  font-weight: 500;
  color: rgb(255, 75, 75);
  margin-top: 5px;
}

.food-cart-section ul li {
  width: 100%;
  background-color: rgba(var(--white), 1);
  box-shadow: 0 0 9.8px 1px rgba(var(--bg-color), 1);
  padding: 12px;
  display: flex;
  gap: 10px;
  border-radius: 13px;
}
.dark-mode .food-cart-section ul li {
  background-color: rgba(var(--bg-color), 1);
}
.food-cart-section ul li + li {
  margin-top: 18px;
}
.food-cart-section ul li a {
  width: 73px;
  height: 73px;
  border-radius: 10px;
  overflow: hidden;
}
.food-cart-section ul li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.2s ease-in-out;
}
.food-cart-section ul li .food-cart-content {
  width: calc(100% - 10px - 73px);
}
.food-cart-section ul li .food-cart-content a {
  transition: all 0.2s ease-in-out;
  color: rgba(var(--title-color), 1);
  font-size: 14px;
  font-weight: 600;
}
.food-cart-section ul li .food-cart-content h5 {
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.food-cart-section ul li .food-cart-content .food-count {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.food-cart-section ul li .food-cart-content .food-count .plus-minus {
  margin: 0;
  display: inline-flex;
  align-items: center;
  text-align: center;
  padding: 4px 8px;
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--theme-color), 1);
  border-radius: 4px;
}
.dark-mode .food-cart-section ul li .food-cart-content .food-count .plus-minus {
  background-color: rgba(var(--second-color), 1);
  border-color: rgb(59, 59, 59);
}
.dark-mode .food-cart-section ul li .food-cart-content .food-count .plus-minus input {
  background-color: transparent;
}
.food-cart-section ul li .food-cart-content .food-count .plus-minus .icon {
  --Iconsax-Size: 16px;
  --Iconsax-Color: rgba(var(--theme-color), 1);
}
.food-cart-section ul li .food-cart-content .food-count .plus-minus input {
  width: 35px;
  color: rgba(var(--theme-color), 1);
  border: none;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
.food-cart-section ul li .food-cart-content .food-count .plus-minus input:focus-visible {
  outline: none;
}
.food-cart-section ul li .food-cart-content .food-count .dollar {
  color: rgba(var(--theme-color), 1);
  font-size: 16px;
  font-weight: 600;
}
[dir=rtl] .food-cart-section ul li .food-cart-content .food-count .dollar {
  margin-left: unset;
  margin-right: auto;
}
.food-cart-section ul li:hover .food-cart-content a {
  color: rgba(var(--theme-color), 1);
}
.food-cart-section ul li:hover a img {
  transform: scale(1.1);
}

.theme-box li {
  width: 100%;
  padding-bottom: 15px;
}
.theme-box li + li {
  border-top: 1px solid rgba(var(--border-color), 1);
}
.theme-box li label {
  font-weight: 500;
  font-size: 14px;
}
.theme-box li label h6 {
  width: 100%;
}

.order-success-section .order-success-content {
  width: 100%;
  display: flex;
  align-items: center;
  height: 100vh;
  flex-direction: column;
  justify-content: center;
}
.order-success-section .order-success-content h3 {
  font-size: 30px;
  font-weight: 600;
  color: rgba(var(--dark-bg), 0.9);
}
@media (max-width: 600px) {
  .order-success-section .order-success-content h3 {
    font-size: calc(22px + 8 * (100vw - 320px) / 280);
  }
}
.order-success-section .order-success-content h5 {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .order-success-section .order-success-content h5 {
    font-size: calc(12px + 2 * (100vw - 320px) / 280);
  }
}

.food-search li + li {
  margin-top: 15px;
}
.food-search li a {
  display: flex;
  align-items: flex-end;
  gap: 5px;
}
.food-search li a .time-icon {
  --Iconsax-Size: 20px;
  --Iconsax-Color: rgba(var(--content-color), 1);
}

/* ==========================
   5.6 Chatting SCSS
   ========================== */
.message-chat-box {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  z-index: 2;
  padding: 10px 20px;
  background-color: rgba(var(--white), 1);
}
body.dark-mode .message-chat-box {
  background-color: rgba(var(--body-color), 1);
}
@media (max-width: 600px) {
  .message-chat-box {
    padding-inline: calc(12px + 8 * (100vw - 320px) / 280);
  }
}
.message-chat-box .chat-input {
  position: relative;
  width: 100%;
  padding-block: 14px;
  padding-right: calc(100% - (100% - 120px));
  padding-left: 35px;
  color: rgba(var(--title-color), 1);
  border: 1px solid rgba(var(--content-color), 0.15);
  box-shadow: 0 2px 15px 0 rgba(var(--black), 0.08);
  border-radius: 8px;
  outline: none;
  background-color: rgba(var(--white), 1);
}
[dir=rtl] .message-chat-box .chat-input {
  padding-right: 35px;
  padding-left: calc(100% - (100% - 120px));
}
.message-chat-box .chat-input::-moz-placeholder {
  color: rgba(var(--content-color), 1);
}
.message-chat-box .chat-input::placeholder {
  color: rgba(var(--content-color), 1);
}
.message-chat-box .chat-input.story-chat {
  padding-right: 40px;
}
.message-chat-box .smile {
  width: 26px;
  height: 26px;
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
  cursor: pointer;
}
@media (max-width: 600px) {
  .message-chat-box .smile {
    left: calc(18px + 7 * (100vw - 320px) / 280);
  }
}
[dir=rtl] .message-chat-box .smile {
  left: unset;
  right: 25px;
}
@media (max-width: 600px) {
  [dir=rtl] .message-chat-box .smile {
    right: calc(18px + 7 * (100vw - 320px) / 280);
  }
}
.message-chat-box .chat-message-icon {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: 20%;
  gap: 16px;
  display: flex;
  align-items: center;
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 20px;
  transform: translateY(-50%);
  cursor: pointer;
}
@media (max-width: 500px) and (min-width: 440px) {
  .message-chat-box .chat-message-icon {
    right: 24%;
  }
}
@media (max-width: 439px) and (min-width: 400px) {
  .message-chat-box .chat-message-icon {
    right: 25%;
  }
}
@media (max-width: 399px) {
  .message-chat-box .chat-message-icon {
    right: 30%;
  }
}
[dir=rtl] .message-chat-box .chat-message-icon {
  right: unset;
  left: 20%;
}
@media (max-width: 375px) {
  [dir=rtl] .message-chat-box .chat-message-icon {
    right: unset;
    left: 33%;
  }
}
.message-chat-box .chat-icon {
  right: 8%;
}
.message-chat-box .input-icon {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  font-size: 18px;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 375px) {
  .message-chat-box .input-icon {
    right: 8%;
  }
}
[dir=rtl] .message-chat-box .input-icon {
  right: unset;
  left: 14%;
}
.message-chat-box .input-icon .chat-icon {
  position: absolute !important;
  transform: translate(80%, -40px) !important;
  border: none;
  background-color: transparent;
  margin-top: 20px;
}
[dir=rtl] .message-chat-box .input-icon .chat-icon {
  transform: translate(-77%, -40px) !important;
}
.message-chat-box .input-icon .chat-icon .dropdown-item {
  width: 47px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(var(--white), 1);
  opacity: 1;
  box-shadow: -2px 6px 8px 0px rgba(var(--bg-color), 1);
  border: none;
}
.message-chat-box .input-icon .chat-icon .dropdown-item:hover {
  background: var(--theme-color);
}
.message-chat-box .input-icon .chat-icon .dropdown-item:hover .clip-icon {
  --Iconsax-Color: rgba(var(--white), 1);
}
.message-chat-box .send-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--theme-color);
  border: none;
  padding: 7px;
  border-radius: 6px;
  cursor: pointer;
}
@media (max-width: 600px) {
  .message-chat-box .send-btn {
    padding: calc(6px + 2 * (100vw - 320px) / 280);
  }
}
.message-chat-box .send-btn .send-icon {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 24px;
}
body.dark-mode .message-chat-box .send-btn .send-icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .message-chat-box .send-btn .send-icon {
    --Iconsax-Size: calc(20px + (24 - 20) * ((100vw - 320px) / (600 - 320)));
  }
}

.chatting-section {
  height: calc(100vh - 116px - 82px + 40px);
  margin-top: -30px;
  border-radius: 30px 30px 0 0;
  background-color: rgba(var(--white), 1);
  overflow: unset;
  z-index: 1;
  position: relative;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.chatting-section ::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}
body.dark-mode .chatting-section {
  background-color: rgba(var(--body-color), 1);
}
.chatting-section .chatting-scroll {
  height: calc(100vh - 115px);
  overflow: auto;
}
.chatting-section .chatting-scroll:has(.message-chat-box) {
  height: calc(100vh - 185px);
}
.chatting-section.chatting-height-scroll {
  overflow: auto;
  height: calc(100vh - 108px - 82px + 40px);
}
.chatting-section.chatting-height-scroll2 {
  overflow: auto;
  height: calc(100vh - 100px + 40px);
}
.chatting-section .message-box-list {
  max-height: 660px;
  margin-top: 30px;
}
@media (max-width: 600px) {
  .chatting-section .message-box-list {
    margin-top: calc(10px + 20 * (100vw - 320px) / 280);
  }
}
.chatting-section .message-box-list li {
  width: 100%;
  align-items: center;
  gap: 10px;
}
.chatting-section .message-box-list li .message-box .message-details-box {
  position: relative;
  padding: 12px;
  max-width: 245px;
  display: inline-flex;
  flex-direction: column;
}
.chatting-section .message-box-list li + li {
  margin-top: 20px;
}
.chatting-section .message-box-list .left-chat-box {
  display: flex;
  justify-content: flex-start;
}
.chatting-section .message-box-list .left-chat-box .message-box {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}
.chatting-section .message-box-list .left-chat-box .person-img {
  width: 35px;
  height: 35px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
}
.chatting-section .message-box-list .left-chat-box .message-details-box {
  background-color: rgba(var(--content-color), 0.05);
  border-radius: 20px 20px 20px 0;
  border: 1px solid rgba(var(--content-color), 0.15);
}
.chatting-section .message-box-list .left-chat-box .message-details-box h5 {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(var(--title-color), 1);
  letter-spacing: 0.5px;
  word-wrap: break-word;
}
.chatting-section .message-box-list .left-chat-box .message-details-box .timing {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  margin-top: 8px;
}
.chatting-section .message-box-list .left-chat-box .message-details-box .timing h6 {
  font-size: 12px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
  letter-spacing: 0.5px;
  word-wrap: break-word;
}
.chatting-section .message-box-list .left-chat-box .message-details-box .voice-content {
  display: flex;
  align-items: center;
  gap: 10px;
}
.chatting-section .message-box-list .left-chat-box .message-details-box .voice-content .play-button {
  width: 22px;
  height: 22px;
  background: var(--theme-color);
  border-radius: 100%;
  position: relative;
}
.chatting-section .message-box-list .left-chat-box .message-details-box .voice-content .play-button::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  border-left: 9px solid rgba(var(--white), 1);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.chatting-section .message-box-list .left-chat-box .message-details-box .voice-content img {
  width: 138px;
  height: 26px;
}
.chatting-section .message-box-list .left-chat-box .message-details-box .voice-content h6 {
  font-size: 12px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.chatting-section .message-box-list .right-chat-box {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0;
}
.chatting-section .message-box-list .right-chat-box .message-details-box {
  background: var(--theme-color);
  border-radius: 20px 20px 0 20px;
}
body.dark-mode .chatting-section .message-box-list .right-chat-box .message-details-box h5 {
  color: rgba(var(--title-color), 1);
}
body.dark-mode .chatting-section .message-box-list .right-chat-box .message-details-box .timing h6 {
  color: rgba(var(--title-color), 1);
}
.chatting-section .message-box-list .right-chat-box .message-details-box h5 {
  color: rgba(var(--white), 1);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  word-wrap: break-word;
  display: inline-block;
}
.chatting-section .message-box-list .right-chat-box .message-details-box .timing {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  margin-top: 8px;
}
.chatting-section .message-box-list .right-chat-box .message-details-box .timing h6 {
  color: rgba(var(--white), 1);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.5px;
}
.chatting-section .message-box-list .forward {
  display: flex;
  align-items: center;
  gap: 14px;
}
.chatting-section .message-box-list .forward a {
  background-color: rgba(var(--content-color), 0.1);
  border-radius: 100%;
  padding: 5px;
}
.chatting-section .message-box-list .forward .media-img {
  background-color: rgba(var(--content-color), 0.1);
  border-radius: 20px 20px 0 20px;
  display: flex;
  justify-content: center;
}
.chatting-section .message-box-list .forward .media-img img {
  border-radius: 20px;
  padding: 11px 9px;
}

.message-chat-time {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
  text-align: center;
  margin-top: 36px;
}
@media (max-width: 600px) {
  .message-chat-time {
    margin-top: calc(25px + 11 * (100vw - 320px) / 280);
  }
}

.chatting-theme-card .theme-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-radius: 16px;
  background-color: rgba(var(--light-blue), 0.12);
  border: 1px solid rgba(var(--light-blue), 1);
}
@media (max-width: 600px) {
  .chatting-theme-card .theme-card {
    border-radius: calc(8px + 8 * (100vw - 320px) / 280);
    padding: calc(10px + 6 * (100vw - 320px) / 280);
  }
}
.chatting-theme-card .theme-card .theme-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.chatting-theme-card .theme-card .theme-info .icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(var(--white), 1);
}
.chatting-theme-card .theme-card .theme-info .icon-container img {
  width: 20px;
  height: 20px;
}
.chatting-theme-card .theme-card .theme-info span {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.chatting-theme-card .theme-card .chat-check[type=checkbox] {
  display: none;
}
.chatting-theme-card .theme-card .chat-check[type=checkbox]:checked + .message-round::after {
  width: 10px;
  height: 10px;
  content: "";
  background: var(--theme-color);
  border-radius: 50%;
  transition: all 0.3s ease;
  opacity: 1;
  transform: scale(1);
}
.chatting-theme-card .theme-card .fill-circle {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  gap: 10px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
  padding-bottom: 10px;
}
.chatting-theme-card .theme-card .fill-circle .message-round {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(var(--light-blue), 1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.chatting-theme-card .theme-card .fill-circle .message-round::after {
  content: "";
  position: absolute;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
  border-radius: 50%;
}

.chat-setting-list {
  margin-top: 30px;
}
@media (max-width: 600px) {
  .chat-setting-list {
    margin-top: calc(15px + 15 * (100vw - 320px) / 280);
  }
}
.chat-setting-list li {
  width: 100%;
}
.chat-setting-list li + li {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(var(--content-color), 0.15);
}
@media (max-width: 600px) {
  .chat-setting-list li + li {
    margin-top: calc(15px + 10 * (100vw - 320px) / 280);
    padding-top: calc(15px + 10 * (100vw - 320px) / 280);
  }
}
.chat-setting-list li a {
  display: flex;
  align-items: center;
  gap: 15px;
}
.chat-setting-list li a .chat-icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 24px;
}
@media (max-width: 600px) {
  .chat-setting-list li a .chat-icon {
    --Iconsax-Size: calc(20px + (24 - 20) * ((100vw - 320px) / (600 - 320)));
  }
}
.chat-setting-list li a .log-icon {
  rotate: 180deg;
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 22px;
}
.chat-setting-list li a .chat-setting-contant {
  width: calc(100% - 24px - 15px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-setting-list li a .chat-setting-contant h5 {
  color: rgba(var(--title-color), 1);
  font-size: 14px;
  font-weight: 500;
}
.chat-setting-list li a .chat-setting-contant .back-icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 22px;
}
@media (max-width: 600px) {
  .chat-setting-list li a .chat-setting-contant .back-icon {
    --Iconsax-Size: calc(20px + (24 - 20) * ((100vw - 320px) / (600 - 320)));
  }
}

.chat-radio[type=radio] {
  display: none;
}
.chat-radio[type=radio]:checked + .message-round::after {
  width: 10px;
  height: 10px;
  content: "";
  background: var(--theme-color);
  border-radius: 50%;
  transition: all 0.3s ease;
  opacity: 1;
  transform: scale(1);
}

.fill-circle {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  gap: 10px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
  padding-bottom: 10px;
}
.fill-circle .message-round {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(var(--light-blue), 1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.fill-circle .message-round::after {
  content: "";
  position: absolute;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
  border-radius: 50%;
}

.language-section li {
  width: 100%;
}
.language-section li + li {
  margin-top: 18px;
}
.language-section li input[type=radio] {
  display: none;
}
.language-section li input[type=radio]:checked + label {
  border: 1px solid rgba(var(--light-blue), 1);
}
.language-section li .language-list-box {
  border: 1px solid rgba(var(--content-color), 0.2);
  border-radius: 18px;
  padding: 12px 10px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  gap: 10px;
}
.language-section li .language-list-box img {
  width: 35px;
  height: 35px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
}
@media (max-width: 600px) {
  .language-section li .language-list-box img {
    width: calc(30px + 5 * (100vw - 320px) / 280);
    height: calc(30px + 5 * (100vw - 320px) / 280);
  }
}
.language-section li .language-list-box .language-contant {
  width: calc(100% - 10px - 35px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.language-section li .language-list-box .language-contant .language-name {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .language-section li .language-list-box .language-contant .language-name {
    font-size: calc(15px + 1 * (100vw - 320px) / 280);
  }
}
.language-section li .language-list-box .language-contant .language-name span {
  color: rgba(var(--title-color), 0.8);
  font-size: 14px;
  font-weight: 500;
}
.language-section li .language-list-box .language-contant .language-name2 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}

.finger-section .lock-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media (max-width: 600px) {
  .finger-section .lock-content {
    gap: calc(10px + 2 * (100vw - 320px) / 280);
  }
}
.finger-section .lock-content .lock-icon {
  --Iconsax-Size: 35px;
  --Iconsax-Color: rgba(var(--light-blue), 1);
}
@media (max-width: 600px) {
  .finger-section .lock-content .lock-icon {
    --Iconsax-Size: calc(28px + (35 - 28) * ((100vw - 320px) / (600 - 320)));
  }
}
.finger-section .lock-content h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .finger-section .lock-content h2 {
    font-size: calc(20px + 4 * (100vw - 320px) / 280);
  }
}
.finger-section .finger-image {
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block: 50px;
}
@media (max-width: 600px) {
  .finger-section .finger-image {
    margin-block: calc(25px + 25 * (100vw - 320px) / 280);
  }
}
.finger-section .finger-image img {
  width: 200px;
  height: 200px;
}
body.dark-mode .finger-section .finger-image img {
  filter: brightness(0) invert(1);
}
@media (max-width: 600px) {
  .finger-section .finger-image img {
    width: calc(150px + 50 * (100vw - 320px) / 280);
    height: calc(150px + 50 * (100vw - 320px) / 280);
  }
}
.finger-section div {
  text-align: center;
}
.finger-section div h4 {
  font-size: 18px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.finger-section div p {
  color: rgba(var(--content-color), 1);
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
}

.avatar-box {
  background: var(--theme-color);
  position: relative;
}
.avatar-box .select-avatar {
  display: flex;
  justify-content: center;
}
.avatar-box .select-avatar img {
  width: 230px;
  height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 50px;
  border-radius: 100%;
  background-color: rgba(var(--white), 0.3);
  -o-object-position: top;
     object-position: top;
  background: radial-gradient(circle, rgba(var(--white), 0.2) 0%, rgba(var(--white), 0.4) 100%);
}
@media (max-width: 600px) {
  .avatar-box .select-avatar img {
    width: calc(184px + 66 * (100vw - 320px) / 280);
    height: calc(184px + 66 * (100vw - 320px) / 280);
  }
}
.avatar-box .select-avatar img.square {
  border-radius: 8px;
}
.avatar-box .avatar-list {
  background-color: rgba(var(--white), 1);
  border-radius: 30px 30px 0 0;
  max-width: 600px;
  margin: 35px auto 0;
  padding-inline: 20px;
  padding-block: 20px 40px;
  overflow: auto;
  max-height: 450px;
  scrollbar-width: none;
}
.avatar-box .avatar-list ::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}
@media (max-width: 600px) {
  .avatar-box .avatar-list {
    padding-bottom: calc(6px + 34 * (100vw - 320px) / 280);
    padding-inline: calc(10px + 10 * (100vw - 320px) / 280);
  }
}
.avatar-box .avatar-list h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}
.avatar-box .avatar-list ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  padding-bottom: 40px;
}
@media (max-width: 600px) {
  .avatar-box .avatar-list ul {
    gap: calc(11px + 4 * (100vw - 320px) / 280);
    padding-bottom: calc(20px + 20 * (100vw - 320px) / 280);
  }
}
@media (max-width: 546.98px) {
  .avatar-box .avatar-list ul {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 435.98px) {
  .avatar-box .avatar-list ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
.avatar-box .avatar-list ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  padding: 5px;
  background-color: rgba(var(--light-blue), 0.07);
  border-radius: 50%;
  overflow: hidden;
  margin-inline: auto;
  border: 2px solid transparent;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
@media (max-width: 600px) {
  .avatar-box .avatar-list ul li {
    width: calc(70px + 20 * (100vw - 320px) / 280);
    height: calc(70px + 20 * (100vw - 320px) / 280);
  }
}
.avatar-box .avatar-list ul li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.avatar-box .avatar-list ul li .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 40px;
}
@media (max-width: 600px) {
  .avatar-box .avatar-list ul li .icon {
    --Iconsax-Size: calc(35px + (40 - 35) * ((100vw - 320px) / (600 - 320)));
  }
}
.avatar-box .avatar-list ul .active {
  border: 2px solid rgba(var(--light-color), 1);
}
.avatar-box .avatar-list .square-avatar-list {
  padding-bottom: 0;
}
.avatar-box .avatar-list .square-avatar-list li {
  border-radius: 8px;
}

.invite-list-wrapper li {
  width: 100%;
}
.invite-list-wrapper li + li {
  border-top: 1px solid rgba(var(--content-color), 0.15);
  padding-top: 16px;
  margin-top: 16px;
}
@media (max-width: 600px) {
  .invite-list-wrapper li + li {
    padding-top: calc(10px + 6 * (100vw - 320px) / 280);
    margin-top: calc(10px + 6 * (100vw - 320px) / 280);
  }
}
.invite-list-wrapper li .invited-list-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.invite-list-wrapper li .invited-list-box img {
  width: 50px;
  height: 50px;
  border-radius: 100%;
}
@media (max-width: 600px) {
  .invite-list-wrapper li .invited-list-box img {
    width: calc(40px + 10 * (100vw - 320px) / 280);
    height: calc(40px + 10 * (100vw - 320px) / 280);
  }
}
.invite-list-wrapper li .invited-list-box .invite-contant {
  width: calc(100% - 10px - 50px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .invite-list-wrapper li .invited-list-box .invite-contant {
    width: calc(100% - 10px - (40px + 10 * (100vw - 320px) / 280));
  }
}
.invite-list-wrapper li .invited-list-box .invite-contant h5 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .invite-list-wrapper li .invited-list-box .invite-contant h5 {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.invite-list-wrapper li .invited-list-box button {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--content-color), 0.13);
  border-radius: 50px;
  padding: 10px 22px;
  border: none;
}
.invite-list-wrapper li .invited-list-box button:hover {
  background: var(--theme-color);
  color: rgba(var(--white), 1);
}
body.dark-mode .invite-list-wrapper li .invited-list-box button:hover {
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .invite-list-wrapper li .invited-list-box button {
    font-size: calc(13px + 3 * (100vw - 320px) / 280);
    padding-inline: calc(14px + 8 * (100vw - 320px) / 280);
  }
}

.chatting-list-title {
  font-size: 20px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}

.chatting-list-wrapper {
  padding-top: 24px;
  height: 100%;
}
@media (max-width: 600px) {
  .chatting-list-wrapper {
    padding-top: calc(15px + 9 * (100vw - 320px) / 280);
  }
}
.chatting-list-wrapper li {
  width: 100%;
}
.chatting-list-wrapper li + li {
  border-top: 1px solid rgba(var(--content-color), 0.15);
  padding-top: 12px;
  margin-top: 12px;
}
@media (max-width: 600px) {
  .chatting-list-wrapper li + li {
    padding-top: calc(8px + 4 * (100vw - 320px) / 280);
    margin-top: calc(8px + 4 * (100vw - 320px) / 280);
  }
}
.chatting-list-wrapper li .chat-check-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chatting-list-wrapper li .chatting-contant {
  width: calc(100% - (1px + 9 * (100vw - 320px) / 280) - 50px);
}
.chatting-list-wrapper li a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.chatting-list-wrapper li a .group-icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--theme-color);
  border-radius: 100%;
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 20px;
}
body.dark-mode .chatting-list-wrapper li a .group-icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
}
.chatting-list-wrapper li a img {
  width: 50px;
  height: 50px;
  border-radius: 100%;
}
@media (max-width: 600px) {
  .chatting-list-wrapper li a img {
    width: calc(40px + 10 * (100vw - 320px) / 280);
    height: calc(40px + 10 * (100vw - 320px) / 280);
  }
}
.chatting-list-wrapper li a .chatting-name-box h5 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .chatting-list-wrapper li a .chatting-name-box h5 {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.chatting-list-wrapper li a .chatting-name-box h6 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .chatting-list-wrapper li a .chatting-name-box h6 {
    font-size: calc(12px + 2 * (100vw - 320px) / 280);
  }
}
.chatting-list-wrapper li a .chatting-name-box h6 span {
  font-weight: 700;
}
.chatting-list-wrapper li a .chatting-name-box h6 .check-svg {
  width: 16px;
  height: 16px;
  fill: var(--theme-color);
}
.chatting-list-wrapper li a .chatting-name-box h6 .chat-svg {
  margin-top: -1px;
  fill: rgba(var(--content-color), 1);
}
.chatting-list-wrapper li a .chatting-name-box h6 svg {
  width: 16px;
  height: 16px;
  fill: var(--theme-color);
  stroke: var(--theme-color);
}
.chatting-list-wrapper li a .chatting-name-box h6 .out-icon,
.chatting-list-wrapper li a .chatting-name-box h6 .going-icon {
  --Iconsax-Color: rgba(var(--online), 1);
  rotate: -44deg;
  transform: scale(1.4);
  margin-right: 6px;
}
.chatting-list-wrapper li a .chatting-name-box h6 .going-icon {
  --Iconsax-Color: rgba(var(--error-color), 1);
  transform: scale(-1.4);
}
.chatting-list-wrapper li a .chatting-name-box .fill-box {
  background-color: rgba(var(--content-color), 0.09);
  border-radius: 10px 10px 10px 0px;
  padding: 10px;
}
.chatting-list-wrapper li a .chatting-name-box .fill-box .star-msg {
  width: 13px;
  height: 13px;
  margin-top: -3px;
  margin-left: 10px;
}
.chatting-list-wrapper li a .chatting-name-box .fill-text {
  background: var(--theme-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.chatting-list-wrapper li.chatting-list-box {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.chatting-list-wrapper li.chatting-list-box .story {
  border-radius: 50%;
  background-color: rgba(var(--theme-default), 1);
  position: relative;
  padding: 5px;
}
.chatting-list-wrapper li.chatting-list-box .story::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100%;
  padding: 2px;
  background: var(--theme-color);
  -webkit-mask: linear-gradient(white 0 0) content-box, linear-gradient(white 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  transition: all 0.4s ease-in-out;
}
.chatting-list-wrapper li.chatting-list-box .story1 {
  border-radius: 50%;
  background-color: rgba(var(--theme-default), 1);
  position: relative;
}
.chatting-list-wrapper li.chatting-list-box .story1::after {
  content: "";
  position: absolute;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  padding: 2px;
  background: #00ACFF;
  -webkit-mask: linear-gradient(white 0 0) content-box, linear-gradient(white 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 600px) {
  .chatting-list-wrapper li.chatting-list-box .story1::after {
    width: calc(100% + 8px + 4 * (100vw - 320px) / 280);
    height: calc(100% + 8px + 4 * (100vw - 320px) / 280);
  }
}
.chatting-list-wrapper li.chatting-list-box.online .chatting-image {
  position: relative;
}
.chatting-list-wrapper li.chatting-list-box.online .chatting-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 2px;
  width: 10px;
  height: 10px;
  background-color: #4DD68C;
  border: 1.8px solid rgba(var(--white), 1);
  border-radius: 100%;
}
.chatting-list-wrapper li.chatting-list-box .chatting-contant {
  width: calc(100% - 10px - 50px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
@media (max-width: 600px) {
  .chatting-list-wrapper li.chatting-list-box .chatting-contant {
    gap: calc(7px + 8 * (100vw - 320px) / 280);
    width: calc(100% - 10px - (44px + 6 * (100vw - 320px) / 280));
  }
}
.chatting-list-wrapper li.chatting-list-box .group-icon {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 24px;
  background: var(--theme-color);
  border-radius: 100%;
  padding: 10px;
}
.chatting-list-wrapper li .chatting-msg .phone-icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 24px;
}
@media (max-width: 600px) {
  .chatting-list-wrapper li .chatting-msg .phone-icon {
    --Iconsax-Size: calc(20px + (24 - 20) * ((100vw - 320px) / (600 - 320)));
  }
}
.chatting-list-wrapper li .chatting-msg h6 {
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  text-align: right;
  white-space: nowrap;
}
.chatting-list-wrapper li .chatting-msg h6.fill-primary {
  font-size: 13px;
  font-weight: 400;
  background: var(--theme-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.chatting-list-wrapper li .chatting-msg .msg-count {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background: var(--theme-color);
  color: rgba(var(--white), 1);
  font-size: 11px;
  margin-left: auto;
  margin-top: 6px;
  line-height: 0;
}
.chatting-list-wrapper li .chatting-msg .pin svg {
  width: 16px;
  height: 16px;
  fill: rgba(var(--content-color), 1);
  display: flex;
  margin-left: auto;
  margin-top: 6px;
}
@media (max-width: 600px) {
  .chatting-list-wrapper li .chatting-msg .pin svg {
    width: calc(14px + 2 * (100vw - 320px) / 280);
    height: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.chatting-list-wrapper li .chatting-msg input[type=checkbox] {
  width: 20px;
  height: 20px;
  position: relative;
  border: 2px solid rgba(var(--light-blue), 1);
  border-radius: 3px;
  background: none;
  cursor: pointer;
  outline: 0;
  padding: 0;
  vertical-align: text-top;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 600px) {
  .chatting-list-wrapper li .chatting-msg input[type=checkbox] {
    width: calc(18px + 2 * (100vw - 320px) / 280);
    height: calc(18px + 2 * (100vw - 320px) / 280);
  }
}
.chatting-list-wrapper li .chatting-msg input[type=checkbox]:before {
  content: "";
  position: absolute;
  right: 48%;
  top: 50%;
  width: 6px;
  height: 12px;
  border: solid rgba(var(--white), 1);
  border-width: 0 2px 2px 0;
  margin: -1px -1px 0 -1px;
  transform: rotate(45deg) translate(-50%, -50%) scale(0, 0);
  z-index: 2;
  transition: all 0.3s ease-in-out;
}
body.dark-mode .chatting-list-wrapper li .chatting-msg input[type=checkbox]:before {
  border-color: rgba(var(--title-color), 1);
}
.chatting-list-wrapper li .chatting-msg input[type=checkbox]:checked {
  background: var(--theme-color);
}
.chatting-list-wrapper li .chatting-msg input[type=checkbox]:checked::before {
  transform: rotate(45deg) translate(-50%, -50%) scale(1, 1);
}

.new-group-content {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  background-color: rgba(var(--white), 1);
  box-shadow: 0 2px 15px 0 rgba(var(--black), 0.08);
  z-index: 2;
  border: 1px solid rgba(var(--content-color), 0.2);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding-inline: 15px;
  padding-top: 0;
}
.new-group-content .selected-person-list {
  display: flex;
  align-items: center;
  gap: 34px;
  scrollbar-width: none;
  overflow-x: auto;
}
@media (max-width: 600px) {
  .new-group-content .selected-person-list {
    gap: calc(16px + 18 * (100vw - 320px) / 280);
  }
}
.new-group-content .selected-person-list ::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}
.new-group-content .selected-person-list li .selected-person-box {
  position: relative;
  width: 65px;
  text-align: center;
  padding-block: 16px 12px;
}
@media (max-width: 600px) {
  .new-group-content .selected-person-list li .selected-person-box {
    padding-block: calc(12px + 2 * (100vw - 320px) / 280) calc(8px + 4 * (100vw - 320px) / 280);
    width: calc(60px + 5 * (100vw - 320px) / 280);
  }
}
.new-group-content .selected-person-list li .selected-person-box .person-img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
}
@media (max-width: 600px) {
  .new-group-content .selected-person-list li .selected-person-box .person-img {
    width: calc(50px + 10 * (100vw - 320px) / 280);
    height: calc(50px + 10 * (100vw - 320px) / 280);
  }
}
.new-group-content .selected-person-list li .selected-person-box h5 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
  margin-top: 5px;
  text-align: center;
}
.new-group-content .selected-person-list li .selected-person-box .add {
  color: rgba(var(--white), 1);
  transform: rotate(45deg) translateY(-50%);
  bottom: 24px;
  right: 4px;
  font-size: 16px;
  font-weight: 500;
  position: absolute;
  background-color: rgba(var(--error-color), 1);
  border-radius: 100%;
  padding: 1px 4px;
  border: 2px solid rgba(var(--white), 1);
}
body.dark-mode .new-group-content .selected-person-list li .selected-person-box .add {
  color: rgba(var(--title-color), 1);
}
.new-group-content .selected-person-list li .selected-person-box .added {
  background-color: rgba(var(--content-color), 1);
}

.star-message-list li {
  width: 100%;
  background-color: rgba(var(--content-color), 0.06);
  border-radius: 30px;
  padding: 18px 15px;
  position: relative;
}
@media (max-width: 600px) {
  .star-message-list li {
    border-radius: calc(8px + 22 * (100vw - 320px) / 280);
    padding: calc(15px + 3 * (100vw - 320px) / 280) calc(12px + 3 * (100vw - 320px) / 280);
  }
}
.star-message-list li + li {
  margin-top: 20px;
}
@media (max-width: 600px) {
  .star-message-list li + li {
    margin-top: calc(12px + 8 * (100vw - 320px) / 280);
  }
}
.star-message-list li .star-list-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.star-message-list li .star-list-box img {
  height: 50px;
  border-radius: 100%;
}
@media (max-width: 600px) {
  .star-message-list li .star-list-box img {
    height: calc(40px + 10 * (100vw - 320px) / 280);
  }
}
.star-message-list li .star-msg-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 10px - 50px);
}
.star-message-list li .star-msg-box h4 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  font-weight: 600;
  font-size: 16px;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .star-message-list li .star-msg-box h4 {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.star-message-list li .star-msg-box h6 {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
  margin-top: 5px;
}
@media (max-width: 600px) {
  .star-message-list li .star-msg-box h6 {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
  }
}
.star-message-list li .star-msg-box span {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--title-color), 0.8);
}
@media (max-width: 600px) {
  .star-message-list li .star-msg-box span {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
  }
}
.star-message-list li .star-msg-box span img {
  width: 14px;
  height: 14px;
}
.star-message-list li p {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  white-space: normal;
  line-height: 1.4;
  margin-top: 12px;
  padding-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
  border-top: 1px solid rgba(var(--content-color), 0.2);
}
@media (max-width: 600px) {
  .star-message-list li p {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
    padding-top: calc(6px + 9 * (100vw - 320px) / 280);
    margin-top: calc(6px + 9 * (100vw - 320px) / 280);
  }
}

.message-time {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 35px;
}
.message-time img {
  height: 180px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 600px) {
  .message-time img {
    height: calc(145px + 35 * (100vw - 320px) / 280);
  }
}
.message-time h5 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
  margin-top: 30px;
}
@media (max-width: 600px) {
  .message-time h5 {
    margin-top: calc(15px + 15 * (100vw - 320px) / 280);
  }
}
.message-time p {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .message-time p {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
  }
}

.message-time-content {
  display: flex;
  gap: 10px;
  border-top: 1px solid rgba(var(--content-color), 0.15);
  padding-top: 15px;
  margin-top: 20px;
}
@media (max-width: 600px) {
  .message-time-content {
    padding-top: calc(12px + 3 * (100vw - 320px) / 280);
    margin-top: calc(10px + 6 * (100vw - 320px) / 280);
    gap: calc(6px + 4 * (100vw - 320px) / 280);
  }
}
.message-time-content .clock-icon {
  background-color: rgba(var(--light-color), 0.2);
  --Iconsax-Color: rgba(var(--light-blue), 1);
  --Iconsax-Size: 25px;
  padding: 10px;
  border-radius: 100%;
}
@media (max-width: 600px) {
  .message-time-content .clock-icon {
    padding: calc(8px + 2 * (100vw - 320px) / 280);
    --Iconsax-Size: calc(22px + (25 - 22) * ((100vw - 320px) / (600 - 320)));
  }
}
.message-time-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .message-time-content h4 {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.message-time-content p {
  font-weight: 500;
  color: rgba(var(--content-color), 1);
  margin-top: 4px;
}

.message-button {
  margin-top: 30px;
}
@media (max-width: 600px) {
  .message-button {
    margin-top: calc(20px + 10 * (100vw - 320px) / 280);
  }
}

.video-page-section .video-back-image {
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.video-page-section .video-back-image img {
  width: 100%;
  height: 50vh;
  -o-object-fit: cover;
  object-fit: cover;
}

.audio-back-image {
  background: var(--theme-color);
  min-height: 100vh;
  position: relative;
}
.audio-back-image img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.call-person-image {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%);
  background-color: rgba(var(--white), 0.07);
  border-radius: 100%;
  padding: 25px;
}
.call-person-image img {
  border-radius: 100%;
}
.call-person-image::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%);
  height: 100%;
  width: 100%;
  border-radius: 100%;
  padding: 1.6px;
  background: linear-gradient(164deg, rgba(255, 255, 255, 0.66) 50%, rgba(247, 247, 247, 0.04) 85%, rgba(255, 255, 255, 0.06) 0%);
  -webkit-mask: linear-gradient(#36d80e 0 0) content-box, linear-gradient(#450ddf 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: all 0.4s ease-in-out;
  animation: subtlePulse 2s infinite ease-in-out;
}
.call-person-image::after {
  content: "";
  position: absolute;
  top: -18%;
  left: 50%;
  transform: translate(-50%);
  height: 135%;
  width: 135%;
  border-radius: 100%;
  padding: 1.6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.66) 51%, rgba(247, 247, 247, 0.19) 73%, rgba(255, 255, 255, 0.08) 0%);
  -webkit-mask: linear-gradient(#36d80e 0 0) content-box, linear-gradient(#450ddf 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: all 0.4s ease-in-out;
  animation: subtlePulse 2s infinite ease-in-out;
}
.call-person-image span {
  content: "";
  position: absolute;
  top: -37%;
  left: 50%;
  transform: translate(-50%);
  height: 170%;
  width: 170%;
  border-radius: 100%;
  padding: 1.6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.66) 51%, rgba(247, 247, 247, 0.05) 73%, rgba(255, 255, 255, 0.04) 0%);
  -webkit-mask: linear-gradient(#36d80e 0 0) content-box, linear-gradient(#450ddf 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: all 0.4s ease-in-out;
  animation: subtlePulse 2s infinite ease-in-out;
}

.group-name {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%);
  font-weight: 500;
  color: rgba(var(--white), 1);
  text-align: center;
}
body.dark-mode .group-name h5,
body.dark-mode .group-name h6 {
  color: rgba(var(--title-color), 1);
}
@media (max-width: 337px) {
  .group-name {
    top: 50%;
    width: 100%;
  }
}
.group-name h5 {
  font-size: 20px;
}
.group-name h6 {
  margin-top: 5px;
  font-size: 14px;
}

.audio-call-button {
  position: absolute;
  bottom: 38px;
  left: 50%;
  text-align: center;
  transform: translateX(-50%);
}
.audio-call-button .call-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 57px;
  height: 57px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 150px;
  border-radius: 100%;
  background-color: rgba(var(--error-color), 0.9);
  box-shadow: -1px -1px 2px 17px rgba(var(--error-color), 0.32);
}
@media (max-width: 600px) {
  .audio-call-button .call-button {
    width: calc(50px + 7 * (100vw - 320px) / 280);
    height: calc(50px + 7 * (100vw - 320px) / 280);
  }
}
.audio-call-button .call-button::before {
  content: "";
  position: absolute;
  top: -34%;
  left: 50%;
  transform: translate(-50%);
  height: 165%;
  width: 165%;
  border-radius: 100%;
  padding: 2px;
  background: rgba(var(--error-color), 0.38);
  -webkit-mask: linear-gradient(#36d80e 0 0) content-box, linear-gradient(#450ddf 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: all 0.4s ease-in-out;
  animation: pulseBefore 1.8s infinite ease-in-out;
}
.audio-call-button .call-button::after {
  content: "";
  position: absolute;
  top: -16%;
  left: 50%;
  transform: translate(-50%);
  height: 130%;
  width: 130%;
  border-radius: 100%;
  padding: 2px;
  background: rgba(var(--error-color), 0.62);
  -webkit-mask: linear-gradient(#36d80e 0 0) content-box, linear-gradient(#450ddf 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: all 0.4s ease-in-out;
  animation: pulseAfter 2s infinite ease-in-out;
}
.audio-call-button .call-button-option {
  background-color: rgba(var(--white), 1);
  border-radius: 100px;
  position: fixed;
  bottom: 48px;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 19px 20px;
}
@media (max-width: 600px) {
  .audio-call-button .call-button-option {
    padding-block: calc(14px + 5 * (100vw - 320px) / 280);
  }
}
.audio-call-button .call-button-option i {
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 24px;
}
body.dark-mode .audio-call-button .call-button-option i {
  --Iconsax-Color: rgba(var(--title-color), 1);
}
.audio-call-button .call-button-option .mute {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
}
.audio-call-button .call-button-option .mute .icon {
  display: inline;
}
.audio-call-button .call-button-option .mute .mute-icon {
  display: none;
}
.audio-call-button .call-button-option .mute input.toggle-mute:checked ~ .icon {
  display: none;
}
.audio-call-button .call-button-option .mute input.toggle-mute:checked ~ .mute-icon {
  display: inline;
}

.story-slider .story-person-content {
  position: fixed;
  width: 100%;
  top: 0;
  padding: 30px 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 2;
  max-width: 600px;
}
@media (max-width: 600px) {
  .story-slider .story-person-content {
    padding-top: calc(20px + 10 * (100vw - 320px) / 280);
  }
}
body.dark-mode .story-slider .story-person-content h3,
body.dark-mode .story-slider .story-person-content h4,
body.dark-mode .story-slider .story-person-content .back-icon {
  color: rgba(var(--title-color), 1);
  --Iconsax-Color: rgba(var(--title-color), 1);
}
.story-slider .story-person-content .back-icon {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 24px;
}
.story-slider .story-person-content img {
  width: 50px;
  height: 50px;
  border-radius: 100%;
}
@media (max-width: 600px) {
  .story-slider .story-person-content img {
    width: calc(42px + 8 * (100vw - 320px) / 280);
    height: calc(42px + 8 * (100vw - 320px) / 280);
  }
}
.story-slider .story-person-content h3 {
  color: rgba(var(--white), 1);
  font-size: 16px;
  font-weight: 600;
}
.story-slider .story-person-content h4 {
  color: rgba(var(--white), 0.83);
  font-size: 14px;
  font-weight: 500;
}
.story-slider .swiper-slide img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.story-slider .swiper-pagination {
  position: absolute;
  bottom: unset !important;
  top: 14px;
  display: flex;
  flex-wrap: nowrap;
  padding-inline: 15px;
}
@media (max-width: 600px) {
  .story-slider .swiper-pagination {
    top: calc(10px + 4 * (100vw - 320px) / 280);
  }
}
.story-slider .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  flex: 1;
  height: 5px;
  background-color: rgba(var(--white), 0.2);
  border-radius: 100px;
  overflow: hidden;
}
@media (max-width: 600px) {
  .story-slider .swiper-pagination .swiper-pagination-bullet {
    height: calc(3px + 2 * (100vw - 320px) / 280);
  }
}
.story-slider .swiper-pagination .swiper-pagination-bullet .progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--theme-color);
  border-radius: 100px;
  transition: width 0.2s linear;
}
.story-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: rgba(var(--white), 0.2);
}

.sidebar-button {
  width: 53px;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--theme-color);
  bottom: 40px;
  position: absolute;
  right: 17px;
  border-radius: 100%;
  z-index: 1;
  border: none;
}
@media (max-width: 600px) {
  .sidebar-button {
    width: calc(45px + 8 * (100vw - 320px) / 280);
    height: calc(45px + 8 * (100vw - 320px) / 280);
  }
}
.sidebar-button .send-icon {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 24px;
}
.sidebar-button .chat-svg {
  width: 30px;
  height: 30px;
  fill: rgba(var(--white), 1);
}
@media (max-width: 600px) {
  .sidebar-button .chat-svg {
    width: calc(25px + 5 * (100vw - 320px) / 280);
    height: calc(25px + 5 * (100vw - 320px) / 280);
  }
}

/* =====================
5.6 Hotel Booking SCSS
=========================*/
.hotel-booking {
  background-color: rgba(var(--white), 1);
}
.hotel-booking.dark-mode {
  background-color: rgba(var(--body-color), 1);
}

.hotel-tab-section {
  margin-top: 23px;
}
.hotel-tab-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}

.hotel-hero-section {
  padding-top: 17px;
}

.hotel-tab {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
}
.hotel-tab::-webkit-scrollbar {
  width: 0;
}
.hotel-tab li {
  width: 100%;
}
.hotel-tab li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
  text-decoration: none;
  width: 100%;
  border-radius: 8px;
  padding: 10px 14px;
  background-color: rgba(var(--content-color), 0.1);
  transition: 0.3s;
}
@media (max-width: 600px) {
  .hotel-tab li a {
    padding: calc(8px + 2 * (100vw - 320px) / 280) calc(12px + 2 * (100vw - 320px) / 280);
  }
}
.hotel-tab li a .iconsax {
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 20px;
}
.hotel-tab li.active a {
  background-color: rgba(var(--theme-color), 1);
  color: rgba(var(--white), 1);
  font-weight: 600;
}
body.dark-mode .hotel-tab li.active a {
  color: rgba(var(--title-color), 1);
}
body.dark-mode .hotel-tab li.active a .iconsax {
  --Iconsax-Color: rgba(var(--title-color), 1);
}
.hotel-tab li.active a .iconsax {
  --Iconsax-Color: rgba(var(--white), 1);
}

.hotel-banner {
  margin-top: 20px;
  width: 100%;
  border-radius: 11px;
}

.hotel-room-list {
  margin-top: 10px;
}
.hotel-room-list li {
  box-shadow: 0 2px 12px 0 rgba(var(--theme-color), 0.04);
  width: 100%;
  border: 1px solid rgba(var(--theme-color), 0.1);
  background-color: rgba(var(--white), 1);
  border-radius: 12px;
  padding: 12px;
}
@media (max-width: 600px) {
  .hotel-room-list li {
    padding: calc(8px + 4 * (100vw - 320px) / 280);
  }
}
.hotel-room-list li + li {
  margin-top: 12px;
}
.hotel-room-list li .hotel-list-box {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hotel-room-list li .hotel-list-box img {
  border-radius: 12px;
  width: 84px;
  height: 84px;
}
@media (max-width: 600px) {
  .hotel-room-list li .hotel-list-box img {
    width: calc(70px + 14 * (100vw - 320px) / 280);
    height: calc(70px + 14 * (100vw - 320px) / 280);
  }
}
.hotel-room-list li .hotel-list-box .hotel-list-content {
  width: calc(100% - 84px);
}
.hotel-room-list li .hotel-list-box .hotel-list-content h4 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  font-size: 14px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.hotel-room-list li .hotel-list-box .hotel-list-content h5 {
  margin-top: 3px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 575px) {
  .hotel-room-list li .hotel-list-box .hotel-list-content h5 {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
  }
}
.hotel-room-list li .hotel-list-box .hotel-list-content .wishlist-btn {
  font-size: 20px;
  border: none;
  display: flex;
  align-items: center;
  border-radius: 100%;
  background-color: rgba(var(--white), 1) !important;
}
[dir=rtl] .hotel-room-list li .hotel-list-box .hotel-list-content .wishlist-btn {
  right: unset;
  left: 8%;
}
.hotel-room-list li .hotel-list-box .hotel-list-content .wishlist-btn .icli {
  color: rgba(var(--theme-color), 1);
}
.hotel-room-list li .hotel-list-box .hotel-list-content .wishlist-btn .icbo {
  display: none;
}
.hotel-room-list li .hotel-list-box .hotel-list-content .wishlist-btn.active .icli {
  display: none;
}
.hotel-room-list li .hotel-list-box .hotel-list-content .wishlist-btn.active .icbo {
  display: flex;
  color: rgba(var(--error-color), 1);
}
.hotel-room-list li .hotel-list-box .hotel-list-content .wishlist-btn.active .effect:before {
  animation: fireworkLine 0.5s linear 0.1s;
}
.hotel-room-list li .hotel-list-box .hotel-list-content .wishlist-btn.active .effect:after {
  animation: fireworkPoint 0.5s linear 0.1s;
}
.hotel-room-list li .hotel-list-box .hotel-list-content .button-close-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--content-color), 0.18);
  border-radius: 100%;
  border: none;
}
.hotel-room-list li .hotel-list-box .hotel-list-content .button-close-icon .icon {
  rotate: 46deg;
  --Iconsax-Size: 20px;
  --Iconsax-Color: rgba(var(--title-color), 1);
}
.hotel-room-list li .hotel-list-box .price-rating {
  margin-top: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hotel-room-list li .hotel-list-box .price-rating img {
  width: 16px;
  height: 16px;
}
@media (max-width: 600px) {
  .hotel-room-list li .hotel-list-box .price-rating img {
    width: calc(10px + 6 * (100vw - 320px) / 280);
    height: calc(10px + 6 * (100vw - 320px) / 280);
  }
}
.hotel-room-list li .hotel-list-box .price-rating h5 {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 3px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.hotel-room-list li .hotel-list-box .price-rating h5 span {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.hotel-room-list li .hotel-list-box .price-rating h6 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  font-size: 14px;
  font-weight: 500;
  background-color: rgba(var(--theme-color), 1);
  padding: 3px 7px;
  border-radius: 6px;
  color: rgba(var(--white), 1);
}
body.dark-mode .hotel-room-list li .hotel-list-box .price-rating h6 {
  color: rgba(var(--title-color), 1);
}
.hotel-room-list li .hotel-list-box .price-rating h6 span {
  font-size: 13px;
  font-weight: 400;
}
.hotel-room-list li .view-add {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  padding-top: 8px;
  display: block;
  text-align: center;
  border-top: 1px dashed rgba(var(--content-color), 0.3);
}

.hotel-slider .swiper-slide {
  border-bottom-left-radius: 37px;
  border-bottom-right-radius: 37px;
}
.hotel-slider .swiper-slide img {
  width: 100%;
  height: 253px;
  border-bottom-left-radius: 37px;
  border-bottom-right-radius: 37px;
  -o-object-fit: cover;
     object-fit: cover;
}
.hotel-slider .swiper-pagination {
  position: relative;
  margin-top: 10px;
}
.hotel-slider .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: rgba(var(--content-color), 0.46);
  border-radius: 100px;
  opacity: 1;
  transition: 0.2s;
}
.hotel-slider .swiper-pagination .swiper-pagination-bullet-active {
  width: 25px;
  height: 8px;
  background-color: rgba(var(--theme-color), 1);
}

.travel-content {
  border-bottom: 1px dashed rgba(var(--content-color), 0.4);
  padding-bottom: 20px;
  margin-top: 20px;
}
@media (max-width: 600px) {
  .travel-content {
    padding-bottom: calc(12px + 8 * (100vw - 320px) / 280);
  }
}
.travel-content .hotel-room-timing {
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 600px) {
  .travel-content .hotel-room-timing {
    margin-top: calc(4px + 3 * (100vw - 320px) / 280);
    gap: calc(10px + 10 * (100vw - 320px) / 280);
  }
}
.travel-content .hotel-room-timing li {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 600px) {
  .travel-content .hotel-room-timing li {
    gap: calc(10px + 10 * (100vw - 320px) / 280);
  }
}
@media (max-width: 600px) {
  .travel-content .hotel-room-timing li {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.travel-content .hotel-room-timing li + li::before {
  width: 8px;
  height: 8px;
  content: "";
  display: block;
  border-radius: 100%;
  background-color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .travel-content .hotel-room-timing li + li::before {
    width: calc(4px + 4 * (100vw - 320px) / 280);
    height: calc(4px + 4 * (100vw - 320px) / 280);
  }
}
.travel-content .hotel-room-booking {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}
@media (max-width: 600px) {
  .travel-content .hotel-room-booking {
    margin-top: calc(8px + 6 * (100vw - 320px) / 280);
  }
}
.travel-content .hotel-room-booking li {
  background-color: rgba(var(--content-color), 0.06);
  padding: 13px 19px;
  border-radius: 10px;
}
@media (max-width: 600px) {
  .travel-content .hotel-room-booking li {
    padding: calc(10px + 3 * (100vw - 320px) / 280) calc(8px + 11 * (100vw - 320px) / 280);
  }
}
.travel-content .hotel-room-booking li a {
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(var(--theme-color), 1);
}
@media (max-width: 600px) {
  .travel-content .hotel-room-booking li a {
    font-size: calc(13px + 2 * (100vw - 320px) / 280);
  }
}
.travel-content .hotel-room-booking li a .icon {
  --Iconsax-Color: rgba(var(--title-color), 0.8);
  --Iconsax-Size: 20px;
}
@media (max-width: 600px) {
  .travel-content .hotel-room-booking li a .icon {
    --Iconsax-Size: calc(18px + (20 - 18) * ((100vw - 320px) / (600 - 320)));
  }
}

.hotel-room-detail-section .hotel-room-detail {
  color: rgba(var(--title-color), 1);
}
.hotel-room-detail-section .hotel-room-detail h6 {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
.hotel-room-detail-section .hotel-room-detail h5 {
  font-size: 16px;
  font-weight: 700;
}
.hotel-room-detail-section .hotel-room-detail h4 {
  font-size: 14px;
  font-weight: 400;
}
.hotel-room-detail-section .hotel-about-detail {
  margin-top: 17px;
}
@media (max-width: 600px) {
  .hotel-room-detail-section .hotel-about-detail {
    margin-top: calc(14px + 3 * (100vw - 320px) / 280);
  }
}
.hotel-room-detail-section .hotel-about-detail h5 {
  font-size: 14px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
.hotel-room-detail-section .hotel-about-detail p {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 400px) {
  .hotel-room-detail-section .hotel-about-detail p {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
  }
}
.hotel-room-detail-section .hotel-about-detail .custom-collapse-box.open .custom-box {
  height: auto;
}
.hotel-room-detail-section .hotel-about-detail .custom-collapse-box.open .toggle-arrow::before {
  background: transparent !important;
}
.hotel-room-detail-section .hotel-about-detail .custom-collapse-box.open .toggle-arrow i {
  transform: rotate(180deg);
}
.hotel-room-detail-section .hotel-about-detail .custom-collapse-box .custom-box {
  height: 70px;
  overflow: hidden;
}
.hotel-room-detail-section .hotel-about-detail .custom-collapse-box .custom-box p {
  color: rgba(var(--content-color), 1);
}
.hotel-room-detail-section .hotel-about-detail .custom-collapse-box .custom-box p + p {
  margin-top: 10px;
}
.hotel-room-detail-section .hotel-about-detail .custom-collapse-box .toggle-arrow {
  text-align: center;
  position: relative;
  z-index: 0;
}
.hotel-room-detail-section .hotel-about-detail .custom-collapse-box .toggle-arrow::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(360deg, rgb(246, 247, 246) 0%, rgba(246, 247, 246, 0.37) 100%);
  z-index: -1;
}
body.dark-mode .hotel-room-detail-section .hotel-about-detail .custom-collapse-box .toggle-arrow::before {
  background: linear-gradient(360deg, rgb(49, 49, 49) 0%, rgba(49, 49, 49, 0.41) 100%);
}
.hotel-room-detail-section .hotel-about-detail .custom-collapse-box .toggle-arrow .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 24px;
}

.hotel-offer-card-section {
  padding-top: 20px;
}
.hotel-offer-card-section .amenities-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 10px;
  gap: 14px;
}
.hotel-offer-card-section .amenities-list li a .amenities-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: rgba(var(--content-color), 0.08);
  border-radius: 10px;
}
.hotel-offer-card-section .amenities-list li a .amenities-image h6 {
  font-size: 18px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.hotel-offer-card-section .amenities-list li a h5 {
  margin-top: 8px;
  color: rgba(var(--title-color), 1);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.hotel-offer-card-section .hotel-offer-card {
  margin-top: 20px;
  background-color: rgba(var(--theme-color), 0.1);
  border-radius: 11px;
  text-align: center;
  padding: 15px;
}
.hotel-offer-card-section .hotel-offer-card .offer-card-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.hotel-offer-card-section .hotel-offer-card .offer-card-title h3 {
  color: rgba(var(--theme-color), 1);
  font-size: 14px;
  font-weight: 700;
}
.hotel-offer-card-section .hotel-offer-card p {
  margin-top: 5px;
  color: rgba(var(--content-color), 1);
  font-size: 13px;
  font-weight: 400;
}
.hotel-offer-card-section .hotel-offer-card p a {
  color: rgba(var(--theme-color), 1);
  border-bottom: 1px solid rgba(var(--theme-color), 1);
}

.hotel-gallery-box {
  border-top: 1px dashed rgba(var(--content-color), 0.4);
  border-bottom: 1px dashed rgba(var(--content-color), 0.4);
  padding-block: 20px;
}
.hotel-gallery-box .gallery-list {
  display: flex;
  margin-top: 10px;
  gap: 9px;
  overflow-x: auto;
  scrollbar-width: none;
}
.hotel-gallery-box a {
  position: relative;
  display: block;
}
.hotel-gallery-box a img {
  width: 90px;
  min-width: 90px;
  height: 90px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

.all-photos {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  position: absolute;
  background-color: rgba(var(--black), 0.5);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
.all-photos h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 18px;
  font-weight: 700;
  color: rgba(var(--white), 1);
}
.all-photos h4 span {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: rgba(var(--white), 0.8);
}

.hotel-location-wrapper {
  border-bottom: 1px dashed rgba(var(--content-color), 0.4);
  padding-bottom: 20px;
}
.hotel-location-wrapper h5 {
  margin-top: 3px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 0.7);
}
.hotel-location-wrapper iframe {
  width: 100%;
  margin-top: 13px;
  border-radius: 10px;
  cursor: grab;
}

.hotel-contact-wrapper {
  border-top: 1px dashed rgba(var(--content-color), 0.4);
  padding-top: 24px;
}
.hotel-contact-wrapper .contact-user {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 15px;
}
.hotel-contact-wrapper .contact-user .user {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--content-color), 0.08);
  border-radius: 100%;
}
.hotel-contact-wrapper .contact-user .user-contant {
  width: calc(100% - 6px - 35px);
}
.hotel-contact-wrapper .contact-user .user-contant h5 {
  font-size: 16px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
.hotel-contact-wrapper .contact-user .user-contant h6 {
  color: rgba(var(--contant-color), 1);
  font-size: 14px;
}
.hotel-contact-wrapper .contact-user .user-contant a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--theme-color), 1);
  border-radius: 100%;
}
.hotel-contact-wrapper .contact-user .user-contant a .icon {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 20px;
}

.hotel-review-box {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  max-width: 600px;
  z-index: 1;
  width: 100%;
  padding: 15px;
  background-color: rgba(var(--white), 1);
  box-shadow: 0px -6px 7px rgba(var(--black), 0.02);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dark-mode .hotel-review-box {
  background-color: rgba(var(--body-color), 1);
}
.hotel-review-box div {
  width: 100%;
}
.hotel-review-box div h5 {
  color: rgba(var(--theme-color), 1);
  font-size: 14px;
  font-weight: 700;
}
.hotel-review-box div h5 span {
  color: rgba(var(--content-color), 1);
  font-weight: 500;
}
.hotel-review-box div h6 {
  margin-top: 4px;
  color: rgba(var(--title-color), 1);
  font-size: 13px;
  font-weight: 600;
}
.hotel-review-box a {
  color: rgba(var(--title-color), 1);
  font-size: 14px;
  font-weight: 500;
}
.hotel-review-box .review-button {
  width: 100%;
  color: rgba(var(--white), 1);
  font-size: 16px;
  font-weight: 500;
  padding: 14px;
  border-radius: 6px;
  background-color: rgba(var(--theme-color), 1);
  text-align: center;
}
body.dark-mode .hotel-review-box .review-button {
  color: rgba(var(--title-color), 1);
}

.hotel-reset {
  box-shadow: 0 0 4px 0px rgba(var(--black), 0.05);
  gap: 15px;
}
.hotel-reset .reset-btn {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
  padding: 14px;
  border-radius: 6px;
  background-color: rgba(var(--content-color), 0.12);
  text-align: center;
}
body.dark-mode .hotel-reset .reset-btn {
  background-color: rgba(var(--light-bg), 1);
}

.hotel-guest-list {
  margin-top: 16px;
  border-bottom: 1px dashed rgba(var(--content-color), 0.4);
  padding-bottom: 27px;
}
@media (max-width: 600px) {
  .hotel-guest-list {
    padding-bottom: calc(15px + 5 * (100vw - 320px) / 280);
  }
}
.hotel-guest-list h3 {
  font-size: 14px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
.hotel-guest-list .room-list li {
  position: relative;
  font-size: 13px;
  color: rgba(var(--content-color), 1);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  margin-left: 12px;
}
.hotel-guest-list .room-list li::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: rgba(var(--content-color), 1);
  top: 5px;
  left: -13px;
  border-radius: 100%;
}
.hotel-guest-list .room-list li del {
  font-size: 13px;
  color: rgba(var(--content-color), 1);
  font-weight: 500;
}
.hotel-guest-list .room-list li h5 {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--contant-color), 1);
  text-align: end;
}
.hotel-guest-list .room-list li span {
  color: rgba(var(--theme-color), 1);
  font-size: 13px;
  font-weight: 700;
}
.hotel-guest-list .room-list li h6 {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 16px;
  font-weight: 600;
}
.hotel-guest-list .more-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.hotel-guest-list .more-detail a {
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
}
.hotel-guest-list .more-detail h6 {
  background-color: rgba(var(--theme-color), 1);
  padding: 4px 7px;
  border-radius: 6px;
  color: rgba(var(--white), 1);
}
body.dark-mode .hotel-guest-list .more-detail h6 {
  color: rgba(var(--title-color), 1);
}

.booking-room {
  margin-top: 2px;
  border: 1px solid rgba(var(--theme-color), 0.2);
  box-shadow: 0 2px 12px 0 rgba(var(--black), 0.02);
  border-radius: 12px;
}
.booking-room .room-img {
  height: 182px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
@media (max-width: 600px) {
  .booking-room .room-img {
    height: calc(140px + 42 * (100vw - 320px) / 280);
  }
}
.booking-room .booking-room-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
}
.booking-room .booking-room-content h4 {
  color: rgba(var(--title-color), 1);
  font-weight: 700;
  font-size: 14px;
}
.booking-room .booking-room-content h5 {
  margin-top: 3px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
.booking-room .booking-room-content h6 {
  font-size: 13px;
  color: rgba(var(--title-color), 1);
  font-weight: 700;
}

.hotel-review-section {
  padding-top: 20px;
}
@media (max-width: 600px) {
  .hotel-review-section {
    padding-top: calc(15px + 5 * (100vw - 320px) / 280);
  }
}

.guest-room-detail {
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(var(--content-color), 0.4);
}
@media (max-width: 600px) {
  .guest-room-detail {
    padding-bottom: calc(15px + 5 * (100vw - 320px) / 280);
  }
}
.guest-room-detail div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
}
.guest-room-detail div h5 {
  color: rgba(var(--content-color), 1);
}

.room-detail {
  margin-top: 20px;
  border-bottom: 1px dashed rgba(var(--content-color), 0.4);
  padding-bottom: 20px;
}
@media (max-width: 600px) {
  .room-detail {
    margin-top: calc(15px + 5 * (100vw - 320px) / 280);
    padding-bottom: calc(15px + 5 * (100vw - 320px) / 280);
  }
}
.room-detail h5 {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .room-detail h5 {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
    margin-top: calc(2px + 3 * (100vw - 320px) / 280);
  }
}
.room-detail ul {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.room-detail ul li {
  display: flex;
  align-items: center;
  gap: 4px;
}
.room-detail ul li h6 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}

.hotel-rules-list {
  background-color: rgba(var(--content-color), 0.09);
  border-radius: 8px;
  margin-top: 20px;
  padding: 12px 15px;
}
.hotel-rules-list h3 {
  color: rgba(var(--theme-color), 1);
  font-size: 16px;
  font-weight: 700;
}
.hotel-rules-list ul {
  padding-left: 22px;
  margin-top: 12px;
}
.hotel-rules-list ul li {
  list-style: disc;
  display: list-item;
  font-size: 14px;
  color: rgba(var(--title-color), 1);
  font-weight: 500;
  line-height: 1.5;
}
.hotel-rules-list ul li + li {
  margin-top: 12px;
}

body.dark-mode .payment-card-section .payment-options-list li:nth-child(2) img {
  filter: brightness(0) invert(1);
}
.payment-card-section .payment-options-list {
  margin-top: 15px;
}
@media (max-width: 600px) {
  .payment-card-section .payment-options-list {
    margin-top: calc(10px + 5 * (100vw - 320px) / 280);
  }
}
.payment-card-section .payment-options-list li {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(var(--theme-color), 0.1);
  box-shadow: 0 2px 12px 0 rgba(var(--black), 0.04);
  background-color: rgba(var(--white), 1);
}
.payment-card-section .payment-options-list li + li {
  margin-top: 15px;
}
.payment-card-section .payment-options-list li .payment-info-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
}
@media (max-width: 600px) {
  .payment-card-section .payment-options-list li .payment-info-card {
    gap: calc(12px + 6 * (100vw - 320px) / 280);
    padding: calc(12px + 8 * (100vw - 320px) / 280);
  }
}
.payment-card-section .payment-options-list li .payment-info-card img {
  width: 34px;
}
@media (max-width: 600px) {
  .payment-card-section .payment-options-list li .payment-info-card img {
    width: calc(30px + 4 * (100vw - 320px) / 280);
  }
}
.payment-card-section .payment-options-list li .payment-info-card .payment-contact-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 17px - 34px);
}
@media (max-width: 600px) {
  .payment-card-section .payment-options-list li .payment-info-card .payment-contact-details {
    width: calc(100% - (12px + 6 * (100vw - 320px) / 280) - (30px + 4 * (100vw - 320px) / 280));
  }
}
.payment-card-section .payment-options-list li .payment-info-card .payment-contact-details h4 {
  font-size: 14px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .payment-card-section .payment-options-list li .payment-info-card .payment-contact-details h4 {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
  }
}
.payment-card-section .payment-options-list li .payment-info-card .payment-contact-details h5 {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .payment-card-section .payment-options-list li .payment-info-card .payment-contact-details h5 {
    font-size: calc(12px + 1 * (100vw - 320px) / 280);
  }
}
.payment-card-section .payment-options-list li .payment-info-card .payment-contact-details .icon {
  --Iconsax-Color: rgba(var(--title-color), 0.6);
  --Iconsax-Size: 24px;
  rotate: 90deg;
}
@media (max-width: 600px) {
  .payment-card-section .payment-options-list li .payment-info-card .payment-contact-details .icon {
    --Iconsax-Size: calc(20px + (24 - 20) * ((100vw - 320px) / (600 - 320)));
  }
}
.payment-card-section .payment-options-list li .payment-info-card .payment-contact-details .dropdown-menu-end {
  min-width: 84px;
  padding: 0;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(var(--theme-color), 0.1);
  overflow: hidden;
  --bs-dropdown-bg: rgba(var(--light-bg), 1);
}
.payment-card-section .payment-options-list li .payment-info-card .payment-contact-details .dropdown-menu-end li {
  box-shadow: none;
  border: none;
  border-radius: 0;
  padding: 0;
}
.payment-card-section .payment-options-list li .payment-info-card .payment-contact-details .dropdown-menu-end li + li {
  border-top: 1px solid rgba(var(--theme-color), 0.1);
  margin-top: 0;
}
.payment-card-section .payment-options-list li .payment-info-card .payment-contact-details .dropdown-menu-end li .dropdown-item {
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--light-bg), 1);
}
.payment-card-section .payment-options-list li .payment-info-card .payment-contact-details .dropdown-menu-end li .dropdown-item:active {
  background-color: rgba(var(--theme-color), 1);
  color: #fff;
}
.payment-card-section .payment-options-list .add-card {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
}

.booking-confirmation {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 25px;
}
@media (max-width: 600px) {
  .booking-confirmation {
    margin-top: calc(10px + 15 * (100vw - 320px) / 280);
  }
}
.booking-confirmation img {
  height: 164px;
}
@media (max-width: 600px) {
  .booking-confirmation img {
    height: calc(130px + 34 * (100vw - 320px) / 280);
  }
}
.booking-confirmation h2 {
  text-align: center;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .booking-confirmation h2 {
    margin-top: calc(10px + 10 * (100vw - 320px) / 280);
    font-size: calc(16px + 2 * (100vw - 320px) / 280);
  }
}

.booking-success-message li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.booking-success-message li + li {
  margin-top: 23px;
}
.booking-success-message li .card-detail {
  text-align: right;
}
[dir=rtl] .booking-success-message li .card-detail {
  text-align: left;
}
.booking-success-message li h4 {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.booking-success-message li h5 {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}

.hotel-map-image {
  width: 100%;
}
.hotel-map-image iframe {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.list-fixed {
  background-color: rgba(var(--white), 1);
  padding: 20px;
  position: fixed;
  width: 100%;
  max-width: 600px;
  left: 50%;
  bottom: 0;
  transform: translate(-50%);
}
@media (max-width: 600px) {
  .list-fixed {
    padding: calc(15px + 5 * (100vw - 320px) / 280);
  }
}

.notification-section {
  margin-top: 30px;
}
@media (max-width: 600px) {
  .notification-section {
    margin-top: calc(8px + 22 * (100vw - 320px) / 280);
  }
}
.notification-section + .notification-section {
  margin-top: 50px;
}
@media (max-width: 600px) {
  .notification-section + .notification-section {
    margin-top: calc(25px + 25 * (100vw - 320px) / 280);
  }
}

.notification-wrapper {
  margin-top: 20px;
}
@media (max-width: 600px) {
  .notification-wrapper {
    margin-top: calc(15px + 5 * (100vw - 320px) / 280);
  }
}
.notification-wrapper li {
  display: flex;
  gap: 10px;
}
.notification-wrapper li + li {
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px dashed rgba(var(--content-color), 0.4);
}
@media (max-width: 600px) {
  .notification-wrapper li + li {
    margin-top: calc(10px + 4 * (100vw - 320px) / 280);
    padding-top: calc(10px + 4 * (100vw - 320px) / 280);
  }
}
.notification-wrapper li img,
.notification-wrapper li h3 {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--light-bg), 1);
}
@media (max-width: 600px) {
  .notification-wrapper li img,
  .notification-wrapper li h3 {
    width: calc(42px + 8 * (100vw - 320px) / 280);
    height: calc(42px + 8 * (100vw - 320px) / 280);
    font-size: calc(20px + 2 * (100vw - 320px) / 280);
  }
}
.notification-wrapper li > div {
  width: calc(100% - 10px - 50px);
}
@media (max-width: 600px) {
  .notification-wrapper li > div {
    width: calc(100% - 10px - (42px + 8 * (100vw - 320px) / 280));
  }
}
.notification-wrapper li h4 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .notification-wrapper li h4 {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.notification-wrapper li h5 {
  margin-top: 5px;
  color: rgba(var(--content-color), 1);
  font-weight: 500;
  font-size: 14px;
}
@media (max-width: 600px) {
  .notification-wrapper li h5 {
    margin-top: calc(4px + 1 * (100vw - 320px) / 280);
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
  }
}

.my-language-wrapper {
  padding-bottom: 80px;
}
.my-language-wrapper .language-select-item {
  width: 100%;
}
.my-language-wrapper .language-select-item + .language-select-item {
  margin-top: 20px;
}
.my-language-wrapper .language-select-item label {
  display: flex;
  align-items: center;
  background-color: rgba(var(--content-color), 0.05);
  border-radius: 100px;
  padding: 15px 12px;
  gap: 10px;
  cursor: pointer;
  position: relative;
}
@media (max-width: 600px) {
  .my-language-wrapper .language-select-item label {
    padding: calc(10px + 5 * (100vw - 320px) / 280) calc(10px + 2 * (100vw - 320px) / 280);
  }
}
.my-language-wrapper .language-select-item input[type=radio] {
  display: none;
}
.my-language-wrapper img {
  width: 35px;
  height: 35px;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.my-language-wrapper .language-label {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .my-language-wrapper .language-label {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.my-language-wrapper .language-label span {
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.my-language-wrapper .custom-checkmark {
  width: 20px;
  height: 20px;
  margin-left: auto;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid rgba(var(--content-color), 1);
  position: relative;
}
[dir=rtl] .my-language-wrapper .custom-checkmark {
  margin-left: unset;
  margin-right: auto;
}
.my-language-wrapper .language-select-item input[type=radio]:checked ~ .custom-checkmark {
  background-color: rgba(var(--theme-color), 1);
  border: 1px solid transparent;
}
.my-language-wrapper .language-select-item input[type=radio]:checked ~ .custom-checkmark::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 7px;
  width: 5px;
  height: 12px;
  border: solid rgba(var(--white), 1);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  border-color: rgba(var(--white), 1);
}

.privacy-police-section .privacy-police-wrapper {
  margin-top: 20px;
}
.privacy-police-section .privacy-police-wrapper + .privacy-police-wrapper {
  margin-top: 30px;
}
.privacy-police-section .privacy-police-wrapper .privacy-title {
  color: rgba(var(--title-color), 1);
}
.privacy-police-section .privacy-police-wrapper .privacy-title h3 {
  font-size: 18px;
  font-weight: 700;
}
.privacy-police-section .privacy-police-wrapper .privacy-title h5 {
  font-size: 15px;
  font-weight: 600;
  margin-top: 8px;
  color: rgba(var(--content-color), 1);
}
.privacy-police-section .privacy-police-wrapper .privacy-police-detail {
  padding-left: 27px;
  margin-top: 10px;
}
.privacy-police-section .privacy-police-wrapper .privacy-police-detail li {
  list-style: disc;
  margin-top: 3px;
  display: list-item;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--title-color), 0.65);
}
.privacy-police-section .privacy-police-wrapper .privacy-police-detail li span {
  margin-right: 5px;
  color: rgba(var(--title-color), 1);
  font-weight: 700;
  font-size: 15px;
}

.hotel-help-wrapper {
  margin-top: 20px;
}
.hotel-help-wrapper .help-title {
  color: rgba(var(--title-color), 1);
  font-weight: 600;
}
.hotel-help-wrapper .help-title h2 {
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 600px) {
  .hotel-help-wrapper .help-title h2 {
    font-size: calc(18px + 2 * (100vw - 320px) / 280);
  }
}
.hotel-help-wrapper .help-title p {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 0.8);
}
@media (max-width: 600px) {
  .hotel-help-wrapper .help-title p {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
    margin-top: calc(6px + 4 * (100vw - 320px) / 280);
  }
}
.hotel-help-wrapper .help-title h3 {
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 600px) {
  .hotel-help-wrapper .help-title h3 {
    font-size: calc(15px + 3 * (100vw - 320px) / 280);
  }
}
.hotel-help-wrapper .help-title h4 {
  font-size: 16px;
  margin-top: 15px;
}
@media (max-width: 600px) {
  .hotel-help-wrapper .help-title h4 {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
    margin-top: calc(12px + 3 * (100vw - 320px) / 280);
  }
}
.hotel-help-wrapper .help-title h4 .icon {
  --Iconsax-Color: rgba(var(--theme-color), 1);
  --Iconsax-Size: 20px;
  margin-right: 5px;
}
.hotel-help-wrapper .help-details {
  margin-top: 25px;
}
.hotel-help-wrapper .help-details ol {
  margin-top: 8px;
  margin-bottom: 0;
}
.hotel-help-wrapper .help-details ol li {
  margin-top: 8px;
  display: list-item;
  list-style: disc inside;
  color: rgba(var(--title-color), 0.65);
  font-size: 14px;
  font-weight: 500;
}

.gallery-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
@media (max-width: 600px) {
  .gallery-image {
    border-radius: calc(8px + 4 * (100vw - 320px) / 280);
  }
}
.gallery-image img {
  height: 182px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 600px) {
  .gallery-image img {
    height: calc(120px + 62 * (100vw - 320px) / 280);
  }
}
.gallery-image .image-overlay {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 100px;
  position: relative;
}
.gallery-image .image-overlay .image-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(var(--title-color), 0.7);
  padding: 7px 15px;
  backdrop-filter: blur(1px);
  color: rgba(var(--white), 1);
}
.gallery-image .image-overlay .image-content h5 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.gallery-image .image-overlay .image-content h6 {
  color: rgba(var(--white), 0.6);
  margin-top: 3px;
  font-size: 12px;
}

/* =====================
5.8 Blog Theme CSS 
========================*/
.blog {
  background-color: rgba(var(--white), 1);
}
.blog.dark-mode {
  background-color: rgba(var(--body-color), 1);
}

.blog-topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 30px;
}
@media (max-width: 600px) {
  .blog-topic-list {
    gap: calc(8px + 4 * (100vw - 320px) / 280);
    padding-top: calc(10px + 20 * (100vw - 320px) / 280);
  }
}
.blog-topic-list input[type=checkbox] {
  display: none;
}
.blog-topic-list input[type=checkbox]:checked + span {
  background: rgba(var(--theme-color), 1);
  color: rgba(var(--white), 1);
}
body.dark-mode .blog-topic-list input[type=checkbox]:checked + span {
  color: rgba(var(--title-color), 1);
}
.blog-topic-list label span {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 9px 26px;
  background-color: rgba(var(--content-color), 0.09);
  border-radius: 8px;
  color: rgba(var(--title-color), 1);
  font-size: 14px;
  font-weight: 500;
}

.blog-follow-list {
  margin-top: 25px;
  padding-bottom: 85px;
}
@media (max-width: 600px) {
  .blog-follow-list {
    margin-top: calc(8px + 17 * (100vw - 320px) / 280);
  }
}
.blog-follow-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-follow-list li + li {
  border-top: 1px solid rgba(var(--content-color), 0.18);
  padding-top: 12px;
  margin-top: 12px;
}
@media (max-width: 600px) {
  .blog-follow-list li + li {
    padding-top: calc(8px + 4 * (100vw - 320px) / 280);
    margin-top: calc(8px + 4 * (100vw - 320px) / 280);
  }
}
.blog-follow-list li img {
  width: 54px;
  height: 54px;
  border-radius: 100%;
}
@media (max-width: 600px) {
  .blog-follow-list li img {
    width: calc(45px + 9 * (100vw - 320px) / 280);
    height: calc(45px + 9 * (100vw - 320px) / 280);
  }
}
.blog-follow-list li .follow-content {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.blog-follow-list li .follow-content h5 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  font-size: 14px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.blog-follow-list li .follow-content h6 {
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.blog-follow-list li .follow-content .follow-btn {
  width: 95px;
  border: 1px solid rgba(var(--theme-color), 1);
  background-color: rgba(var(--theme-color), 1);
  color: rgba(var(--white), 1);
  border-radius: 8px;
  padding: 6px 18px;
  font-size: 14px;
  font-weight: 500;
}
body.dark-mode .blog-follow-list li .follow-content .follow-btn {
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .blog-follow-list li .follow-content .follow-btn {
    width: calc(80px + 15 * (100vw - 320px) / 280);
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
    padding: calc(4px + 2 * (100vw - 320px) / 280) calc(10px + 8 * (100vw - 320px) / 280);
  }
}
.blog-follow-list li .follow-content .following {
  background-color: rgba(var(--white), 1);
  color: rgba(var(--theme-color), 1);
}
body.dark-mode .blog-follow-list li .follow-content .following {
  background-color: transparent;
}

.blog-category-list {
  margin-top: 15px;
}
.blog-category-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(var(--content-color), 0.12);
  border-radius: 12px;
  padding: 10px;
}
@media (max-width: 600px) {
  .blog-category-list li {
    padding: calc(6px + 4 * (100vw - 320px) / 280);
  }
}
.blog-category-list li + li {
  margin-top: 16px;
}
.blog-category-list li img {
  width: 85px;
  height: 85px;
  border-radius: 6px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 600px) {
  .blog-category-list li img {
    width: calc(70px + 15 * (100vw - 320px) / 280);
    height: calc(70px + 15 * (100vw - 320px) / 280);
  }
}
.blog-category-list li .category-content {
  width: calc(100% - 85px - 12px);
}
@media (max-width: 600px) {
  .blog-category-list li .category-content {
    width: calc(100% - (70px + 15 * (100vw - 320px) / 280) - 12px);
  }
}
.blog-category-list li .category-content h5 {
  font-size: 14px;
  font-weight: 300;
  color: rgba(var(--content-color), 1);
}
.blog-category-list li .category-content a {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
  line-height: 1.1;
  display: inline-block;
}
@media (max-width: 600px) {
  .blog-category-list li .category-content a {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.blog-category-list li .category-content .zone-list {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 3px;
}
.blog-category-list li .category-content .zone-list li {
  display: flex;
  align-items: center;
  gap: 5px;
  border: none;
  padding: 0;
  margin: 0;
}
.blog-category-list li .category-content .zone-list li .icon {
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 12px;
}
.blog-category-list li .category-content .zone-list li span {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  font-size: 13px;
  font-weight: 300;
  color: rgba(var(--content-color), 1);
}

.blog-related {
  padding-bottom: 20px;
  margin-top: 8px;
  background-color: transparent;
}
.blog-related li {
  padding: 0;
  border: 0;
}

.blog-comment-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 15px;
}
.blog-comment-wrapper .blog-comment-box {
  border: 1px solid rgba(var(--content-color), 0.12);
  background-color: rgba(var(--white), 1);
  border-radius: 12px;
}
.blog-comment-wrapper .blog-comment-box img {
  width: 100%;
  border-radius: 12px;
}
.blog-comment-wrapper .blog-comment-box .comment-content {
  padding: 15px 12px;
}
@media (max-width: 600px) {
  .blog-comment-wrapper .blog-comment-box .comment-content {
    padding: calc(8px + 7 * (100vw - 320px) / 280) calc(8px + 4 * (100vw - 320px) / 280);
  }
}
.blog-comment-wrapper .blog-comment-box .comment-content a {
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .blog-comment-wrapper .blog-comment-box .comment-content a {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.blog-comment-wrapper .blog-comment-box .comment-content ul {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 5px;
}
.blog-comment-wrapper .blog-comment-box .comment-content ul li {
  color: rgba(var(--content-color), 1);
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 600px) {
  .blog-comment-wrapper .blog-comment-box .comment-content ul li {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
  }
}
.blog-comment-wrapper .blog-comment-box .comment-content ul li + li {
  position: relative;
}
.blog-comment-wrapper .blog-comment-box .comment-content ul li + li::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  top: 50%;
  left: -9px;
  transform: translate(-50%, -50%);
  background-color: rgba(var(--content-color), 1);
  border-radius: 100%;
}
[dir=rtl] .blog-comment-wrapper .blog-comment-box .comment-content ul li + li::before {
  left: unset;
  right: -14px;
}

.top-trends-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 15px;
}
.top-trends-list li {
  display: flex;
}
.top-trends-list li a {
  font-size: 14px;
  font-weight: 400;
  background-color: rgba(var(--content-color), 0.11);
  color: rgba(var(--title-color), 1);
  padding: 10px 17px;
  border-radius: 100px;
  letter-spacing: 1px;
}

.single-blog-section {
  padding: 0;
}
.single-blog-section .blog-image {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
}
.single-blog-section .single-account-view {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}
.single-blog-section .single-account-view img {
  width: 44px;
  height: 44px;
  border-radius: 100%;
}
.single-blog-section .single-account-view .single-account-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 44px - 10px);
}
.single-blog-section .single-account-view .single-account-content h5 {
  font-size: 18px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.single-blog-section .single-account-view .single-account-content h6 {
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.single-blog-section .single-account-view .single-account-content .follow-btn {
  padding: 10px 28px;
  background-color: rgba(var(--theme-color), 1);
  color: rgba(var(--white), 1);
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
}
body.dark-mode .single-blog-section .single-account-view .single-account-content .follow-btn {
  color: rgba(var(--title-color), 1);
}

.post-details h6 {
  text-align: justify;
  letter-spacing: 0.5px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .post-details h6 {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.post-details p {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 300;
  text-align: justify;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .post-details p {
    margin-top: calc(10px + 5 * (100vw - 320px) / 280);
  }
}

.comments-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}
.comments-wrapper .replies-list {
  padding-left: 50px;
  margin-top: 18px;
}
@media (max-width: 600px) {
  .comments-wrapper .replies-list {
    padding-left: calc(35px + 15 * (100vw - 320px) / 280);
  }
}
.comments-wrapper li .user-comments {
  display: flex;
  gap: 8px;
}
.comments-wrapper li .user-comments img {
  width: 46px;
  height: 46px;
  border-radius: 100%;
}
.comments-wrapper li .user-comments h4 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.comments-wrapper li .user-comments p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .comments-wrapper li .user-comments p {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    white-space: normal;
  }
}
.comments-wrapper li .user-comments .date-list {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 600px) {
  .comments-wrapper li .user-comments .date-list {
    margin-top: calc(8px + 2 * (100vw - 320px) / 280);
  }
}
.comments-wrapper li .user-comments .date-list li {
  color: rgba(var(--content-color), 1);
  font-size: 12px;
  font-weight: 400;
}
.comments-wrapper li .user-comments .date-list .dot {
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: rgba(var(--content-color), 1);
}

.blog-notification-list {
  padding-block: 15px 85px;
}
@media (max-width: 600px) {
  .blog-notification-list {
    padding-top: calc(8px + 7 * (100vw - 320px) / 280);
  }
}
.blog-notification-list li {
  padding: 13px;
  border: 1px solid rgba(var(--content-color), 0.12);
  background-color: rgba(var(--white), 1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 14px;
}
@media (max-width: 600px) {
  .blog-notification-list li {
    padding: calc(10px + 3 * (100vw - 320px) / 280);
  }
}
.blog-notification-list li + li {
  margin-top: 13px;
}
.blog-notification-list li img {
  width: 70px;
  height: 70px;
  border-radius: 6px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 600px) {
  .blog-notification-list li img {
    width: calc(60px + 10 * (100vw - 320px) / 280);
    height: calc(60px + 10 * (100vw - 320px) / 280);
  }
}
.blog-notification-list li .notification-content {
  width: calc(100% - 14px - 70px);
}
.blog-notification-list li .notification-content h4 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .blog-notification-list li .notification-content h4 {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.blog-notification-list li .notification-content h5 {
  margin-top: 3px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}

.author-listing {
  margin-top: 16px;
  display: flex;
}
.author-listing li {
  width: 100%;
  font-size: 15px;
  text-align: center;
}
.author-listing li + li {
  border-left: 1px solid rgba(var(--content-color), 0.3);
}
.author-listing li h3 {
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.author-listing li h4 {
  font-size: 15px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .author-listing li h4 {
    font-size: calc(14px + 1 * (100vw - 320px) / 280);
  }
}

.blog-user-list {
  display: grid;
  grid-template-columns: auto auto;
  gap: 15px;
  margin-top: 41px;
}
.blog-user-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.blog-user-list li a {
  width: 100%;
  border-radius: 10px;
  padding-block: 15px;
  background-color: rgba(var(--content-color), 0.11);
}
@media (max-width: 600px) {
  .blog-user-list li a {
    padding-block: calc(12px + 3 * (100vw - 320px) / 280);
  }
}
.blog-user-list li .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 26px;
}
@media (max-width: 600px) {
  .blog-user-list li .icon {
    --Iconsax-Size: calc(22px + (26 - 22) * ((100vw - 320px) / (600 - 320)));
  }
}
.blog-user-list li h5 {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}

.blog-language-list {
  padding-bottom: 85px;
}
.blog-language-list .language-select-item {
  width: 100%;
}
.blog-language-list .language-select-item + .language-select-item {
  margin-top: 20px;
}
@media (max-width: 600px) {
  .blog-language-list .language-select-item + .language-select-item {
    margin-top: calc(12px + 8 * (100vw - 320px) / 280);
  }
}
.blog-language-list .language-select-item label {
  display: flex;
  align-items: center;
  background-color: rgba(var(--content-color), 0.05);
  border-radius: 100px;
  padding: 15px 16px;
  gap: 10px;
  cursor: pointer;
  position: relative;
}
.blog-language-list .language-select-item input[type=radio] {
  display: none;
}
.blog-language-list .language-select-item input[type=radio]:checked ~ .check-round::after {
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 50%;
  transition: all 0.3s ease;
  opacity: 1;
  transform: scale(1);
  background-color: rgba(var(--theme-color), 1);
}
.blog-language-list .language-select-item .check-round {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(var(--theme-color), 1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.blog-language-list .language-select-item .check-round::after {
  content: "";
  position: absolute;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
  border-radius: 50%;
}
.blog-language-list .language-select-item img {
  width: 35px;
  height: 35px;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 600px) {
  .blog-language-list .language-select-item img {
    width: calc(28px + 7 * (100vw - 320px) / 280);
    height: calc(28px + 7 * (100vw - 320px) / 280);
  }
}
.blog-language-list .language-select-item .language-label {
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
  width: calc(100% - 35px - 10px - 18px);
}
@media (max-width: 600px) {
  .blog-language-list .language-select-item .language-label {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.blog-language-list .language-select-item .language-label span {
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}

.account-profile {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid rgba(var(--content-color), 0.12);
  padding-bottom: 15px;
}
.account-profile img {
  width: 50px;
  height: 50px;
  border-radius: 100%;
}
.account-profile .icon-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--content-color), 0.08);
  border-radius: 100%;
  --Iconsax-Size: 24px;
  --Iconsax-Color: rgba(var(--title-color), 1) ;
}
.account-profile .account-profile-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 50px - 10px);
}
.account-profile .account-profile-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .account-profile .account-profile-content h4 {
    font-size: calc(15px + 1 * (100vw - 320px) / 280);
  }
}
.account-profile .account-profile-content p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  margin-top: 5px;
}
.account-profile .account-profile-content h5 {
  margin-top: 3px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .account-profile .account-profile-content h5 {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
  }
}
.account-profile .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
}

.settings-options {
  margin-top: 15px;
}
.settings-options li {
  width: 100%;
}
.settings-options li + li {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(var(--content-color), 0.12);
}
@media (max-width: 600px) {
  .settings-options li + li {
    margin-top: calc(8px + 2 * (100vw - 320px) / 280);
    padding-top: calc(8px + 2 * (100vw - 320px) / 280);
  }
}
.settings-options li .setting-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.settings-options li .setting-list .icon-btn {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 18px;
}
.settings-options li .setting-list .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(var(--content-color), 0.06);
  border-radius: 100%;
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 18px;
}
.settings-options li .setting-list .setting-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 40px - 8px);
}
.settings-options li .setting-list .setting-content h4 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 0.87);
}
@media (max-width: 600px) {
  .settings-options li .setting-list .setting-content h4 {
    font-size: calc(15px + 1 * (100vw - 320px) / 280);
  }
}
.settings-options li .setting-list .setting-content p {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}

.privacy-detail {
  margin-top: 10px;
}
.privacy-detail p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}

.user-privacy-panel {
  padding-left: 8px;
}
.user-privacy-panel li {
  width: 100%;
}
.user-privacy-panel li + li {
  margin-top: 15px;
}
@media (max-width: 600px) {
  .user-privacy-panel li + li {
    margin-top: calc(12px + 3 * (100vw - 320px) / 280);
  }
}
.user-privacy-panel li h4 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.user-privacy-panel p {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .user-privacy-panel p {
    margin-top: calc(1px + 7 * (100vw - 320px) / 280);
  }
}

.blog-security-box {
  margin-top: 20px;
  padding-bottom: 25px;
}
@media (max-width: 600px) {
  .blog-security-box {
    margin-top: calc(10px + 10 * (100vw - 320px) / 280);
    padding-bottom: calc(20px + 5 * (100vw - 320px) / 280);
  }
}
.blog-security-box li + li {
  margin-top: 20px;
}
@media (max-width: 600px) {
  .blog-security-box li + li {
    margin-top: calc(10px + 10 * (100vw - 320px) / 280);
  }
}
.blog-security-box li .security-panel {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-security-box li .security-panel .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(var(--content-color), 0.06);
  border-radius: 100%;
  --Iconsax-Color: rgba(var(--theme-color), 1);
  --Iconsax-Size: 18px;
}
.blog-security-box li p {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .blog-security-box li p {
    margin-top: calc(2px + 3 * (100vw - 320px) / 280);
  }
}

body.dark-mode .swal2-popup {
  background-color: rgba(var(--body-color), 1);
}

.swal2-popup.swal2-toast.swal2-show {
  border: 1px solid rgba(0, 128, 0, 0.3019607843);
}
@media (max-width: 600px) {
  .swal2-popup.swal2-toast.swal2-show {
    padding: calc(5px + 5 * (100vw - 320px) / 280);
  }
}
.swal2-popup.swal2-toast.swal2-show .swal2-title {
  font-size: 18px;
  margin-left: 5px;
  font-weight: 700;
  color: green;
}
.swal2-popup.swal2-toast.swal2-show .swal2-close {
  display: flex !important;
  top: 10px;
  position: absolute;
  color: green;
  font-size: 22px;
}
.swal2-popup.swal2-toast.swal2-show .swal2-timer-progress-bar-container .swal2-timer-progress-bar {
  background-color: rgba(0, 128, 0, 0.7019607843);
  border-radius: 10px;
}
.swal2-popup.swal2-toast.swal2-show .swal2-icon.swal2-success .swal2-success-ring {
  border: none;
}
.swal2-popup.swal2-toast.swal2-show .swal2-success-line-tip,
.swal2-popup.swal2-toast.swal2-show .swal2-success-line-long {
  background-color: green !important;
  z-index: 3;
  top: 0;
}

/* ================
5.9 Learning CSS
===================*/
.learning {
  background-color: rgba(var(--content-color), 0.07);
  max-width: 600px;
  width: 100%;
}
.learning.dark-mode {
  background-color: rgba(var(--body-color), 1);
}

.learn-category-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}
.learn-category-section li {
  width: 100%;
}
.learn-category-section li h5 {
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.learn-category-section li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 60px;
  background-color: rgba(var(--white), 1);
  border-radius: 8px;
  box-shadow: 2px 2px 0 0 rgba(var(--theme-color), 1);
  margin: auto;
}
.learn-category-section li:nth-child(2) a {
  box-shadow: 2px 2px 0 0 rgba(var(--secondary-color), 1);
}
.learn-category-section li:nth-child(3) a {
  box-shadow: 2px 2px 0 0 rgba(var(--light-blue), 1);
}
.learn-category-section li:nth-child(4) a {
  box-shadow: 2px 2px 0 0 rgb(248, 217, 158);
}

.learn-main--image {
  border-radius: 25px;
}

.courses-slider-box {
  border: 1px solid rgba(var(--content-color), 0.2);
  background-color: rgba(var(--light-bg), 1);
  border-radius: 10px;
  padding: 8px;
  margin-top: 10px;
}
.courses-slider-box img {
  position: relative;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  height: 107px;
}
.courses-slider-box .wishlist-btn {
  position: absolute;
  top: 5px;
  right: 10px;
  padding: 6px;
  border-radius: 100%;
  border: none;
}
.courses-slider-box .wishlist-btn:hover {
  background-color: transparent !important;
}
[dir=rtl] .courses-slider-box .wishlist-btn {
  right: unset;
  left: 8%;
}
.courses-slider-box .wishlist-btn .icli {
  color: rgba(var(--white), 1);
  font-size: 20px;
}
.courses-slider-box .wishlist-btn .icbo {
  display: none;
}
.courses-slider-box .wishlist-btn.active .icli {
  display: none;
}
.courses-slider-box .wishlist-btn.active .icbo {
  display: flex;
  color: rgba(var(--white), 1);
  font-size: 20px;
}
.courses-slider-box .course-detail {
  padding: 8px 8px 0px 8px;
}
.courses-slider-box .course-detail h3 {
  display: flex;
  align-items: flex-end;
  font-size: 13px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
  gap: 3px;
}
.courses-slider-box .course-detail h3 .icon {
  --Iconsax-Color: rgba(var(--black), 1);
  --Iconsax-Size: 16px;
}
.courses-slider-box .course-detail h4 {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.courses-slider-box .course-detail .course-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.courses-slider-box .course-detail .course-price span {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(var(--theme-color), 1);
}
.courses-slider-box .course-detail .course-price span del {
  color: rgba(var(--content-color), 1);
  margin-left: 5px;
  font-weight: 600;
}
.courses-slider-box .course-detail .course-price h4 {
  display: flex;
  align-items: center;
  gap: 3px;
  color: rgba(var(--title-color), 1);
  font-size: 12px;
  font-weight: 400;
}
.courses-slider-box .course-detail .course-price h4 img {
  width: 14px;
  height: 14px;
}

.coach-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  overflow-x: auto;
  scrollbar-width: none;
  margin-top: 10px;
}
.coach-wrapper li {
  text-align: center;
  width: 100%;
}
.coach-wrapper li a img {
  width: 66px;
  height: 66px;
  border-radius: 100%;
}
@media (max-width: 600px) {
  .coach-wrapper li a img {
    width: calc(44px + 22 * (100vw - 320px) / 280);
    height: calc(44px + 22 * (100vw - 320px) / 280);
  }
}
.coach-wrapper li h4 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  text-align: center;
  margin-top: 5px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}

.learning-wrapper {
  margin-top: 13px;
}
@media (max-width: 600px) {
  .learning-wrapper {
    margin-top: calc(5px + 8 * (100vw - 320px) / 280);
  }
}
.learning-wrapper li {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(var(--white), 1);
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 0 4px 0 rgba(var(--black), 0.09);
}
.learning-wrapper li + li {
  margin-top: 15px;
}
.learning-wrapper li a img {
  width: 73px;
  height: 65px;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 600px) {
  .learning-wrapper li a img {
    width: calc(65px + 8 * (100vw - 320px) / 280);
    height: calc(55px + 10 * (100vw - 320px) / 280);
  }
}
.learning-wrapper li .close-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  background-color: rgba(var(--white), 1);
  border-radius: 100%;
  top: -5px;
  right: -4px;
  box-shadow: 0px 0px 2px 0px rgba(var(--black), 0.08);
  cursor: pointer;
}
.learning-wrapper li .close-icon .close-icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 14px;
  transform: rotate(45deg);
}
.learning-wrapper li .learning-list-content {
  width: calc(100% - 10px - 73px);
}
@media (max-width: 600px) {
  .learning-wrapper li .learning-list-content {
    width: calc(100% - 10px - (65px + 8 * (100vw - 320px) / 280));
  }
}
.learning-wrapper li .learning-list-content .coaching-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.learning-wrapper li .learning-list-content .coaching-list h3 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  align-items: flex-end;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
.learning-wrapper li .learning-list-content .coaching-list h3 .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 16px;
  vertical-align: -3px;
}
.learning-wrapper li .learning-list-content .coaching-list h4 {
  font-size: 12px;
  font-weight: 400;
  color: rgba(var(--secondary-color), 1);
  background-color: rgba(var(--secondary-color), 0.13);
  border-radius: 25px;
  padding: 4px 12px;
}
@media (max-width: 600px) {
  .learning-wrapper li .learning-list-content .coaching-list h4 {
    font-size: calc(10px + 2 * (100vw - 320px) / 280);
    padding-inline: calc(8px + 4 * (100vw - 320px) / 280);
  }
}
.learning-wrapper li .learning-list-content a {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  color: rgba(var(--title-color), 1);
  font-size: 14px;
  font-weight: 500;
  margin-top: 3px;
}
@media (max-width: 600px) {
  .learning-wrapper li .learning-list-content a {
    font-size: calc(12px + 2 * (100vw - 320px) / 280);
  }
}
.learning-wrapper li .learning-list-content .reading-view h6 {
  text-align: end;
  font-size: 12px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
  margin: 0;
}
.learning-wrapper li .learning-list-content .reading-view .progress {
  margin-top: 5px;
  height: 5px;
  border-radius: 50px;
  background-color: rgba(var(--content-color), 0.09);
}
body.dark-mode .learning-wrapper li .learning-list-content .reading-view .progress {
  background-color: rgba(var(--body-color), 1);
}
.learning-wrapper li .learning-list-content .reading-view .progress .progress-bar {
  border-radius: 50px;
  background-color: rgba(var(--theme-color), 1);
}
.learning-wrapper li .learning-list-content .learning-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.learning-wrapper li .learning-list-content .learning-price span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(var(--theme-color), 1);
}
.learning-wrapper li .learning-list-content .learning-price span del {
  color: rgba(var(--content-color), 1);
  margin-left: 5px;
  font-weight: 600;
}
.learning-wrapper li .learning-list-content .learning-price h4 {
  display: flex;
  gap: 3px;
  color: rgba(var(--title-color), 1);
  font-size: 12px;
  font-weight: 400;
}
.learning-wrapper li .learning-list-content .learning-price h4 img {
  width: 14px;
  height: 14px;
}
.learning-wrapper li:nth-child(1) .progress-bar {
  width: 50%;
}
.learning-wrapper li:nth-child(2) .progress-bar {
  width: 30%;
}
.learning-wrapper li:nth-child(3) .progress-bar {
  width: 80%;
}
.learning-wrapper li:nth-child(4) .progress-bar {
  width: 90%;
}

.learn-tab {
  margin-top: 20px;
}
@media (max-width: 600px) {
  .learn-tab {
    margin-top: calc(12px + 8 * (100vw - 320px) / 280);
  }
}
.learn-tab li + li {
  margin-top: 27px;
}
@media (max-width: 600px) {
  .learn-tab li + li {
    margin-top: calc(20px + 7 * (100vw - 320px) / 280);
  }
}

.wishlist-tab {
  margin-top: 23px;
}
@media (max-width: 600px) {
  .wishlist-tab {
    margin-top: calc(12px + 11 * (100vw - 320px) / 280);
  }
}
.wishlist-tab li + li {
  margin-top: 23px;
}
@media (max-width: 600px) {
  .wishlist-tab li + li {
    margin-top: calc(12px + 11 * (100vw - 320px) / 280);
  }
}

.learn-coupon-box {
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--content-color), 0.1);
  border-radius: 8px;
  border: none;
  box-shadow: 2px 2px 0 0 rgba(var(--title-color), 1);
  display: flex;
  padding: 17px 16px;
  gap: 10px;
  margin-top: 10px;
}
body.dark-mode .learn-coupon-box {
  box-shadow: 2px 2px 0 0 rgb(0, 0, 0);
}
.learn-coupon-box img {
  width: 26px;
  height: 26px;
}
.learn-coupon-box .coupon-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 26px - 10px);
}
.learn-coupon-box .coupon-content h4 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.learn-coupon-box .coupon-content .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 24px;
}

.cart-list-wrapper {
  border-bottom: 1px solid rgba(var(--content-color), 0.2);
  padding-bottom: 20px;
}
.cart-list-wrapper li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
  padding-inline: 20px;
}
.cart-list-wrapper li + li {
  margin-top: 8px;
}
.cart-list-wrapper li span {
  color: rgba(var(--content-color), 1);
}
.cart-list-wrapper .cart-total {
  background-color: rgba(var(--content-color), 0.1);
  border-top: 1px solid rgba(var(--content-color), 0.2);
  border-bottom: 1px solid rgba(var(--content-color), 0.2);
  padding: 19px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 11px;
  font-weight: 600;
}
.cart-list-wrapper .cart-total h4 {
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.cart-list-wrapper .cart-total span {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--theme-color), 1);
}

.learn-payment-box {
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--content-color), 0.1);
  border-radius: 8px;
  border: none;
  box-shadow: 2px 2px 0 0 rgba(var(--title-color), 1);
  display: flex;
  padding: 18px 16px;
  gap: 10px;
  margin-top: 14px;
}
body.dark-mode .learn-payment-box {
  box-shadow: 2px 2px 0 0 rgb(0, 0, 0);
}
.learn-payment-box + .learn-payment-box {
  margin-top: 20px;
}
.learn-payment-box img {
  width: 24px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}
.learn-payment-box .payment-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 24px - 10px);
}
.learn-payment-box .payment-content h4 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.learn-payment-box .radio-circle[type=radio] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 100%;
  border: 1px solid rgba(var(--content-color), 1);
  position: relative;
  transition: all 0.2s ease-in-out;
  flex-shrink: 0;
}
.learn-payment-box .radio-circle[type=radio]::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: rgba(var(--theme-color), 1);
  border-radius: 100%;
  content: "";
  transition: all 0.2s ease-in-out;
}
.learn-payment-box .radio-circle[type=radio]:checked {
  border-color: rgba(var(--theme-color), 1);
}
.learn-payment-box .radio-circle[type=radio]:checked::before {
  transform: translate(-50%, -50%) scale(1);
}

.main-search-list {
  margin-top: 10px;
}
.main-search-list li + li {
  margin-top: 14px;
}
.main-search-list li + li h5 {
  font-size: 16px;
  font-weight: 400;
}

.learn-top-coach-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.learn-top-coach-list li + li {
  border-top: 1px solid rgba(var(--content-color), 0.3);
  padding-top: 16px;
  margin-top: 16px;
}
@media (max-width: 600px) {
  .learn-top-coach-list li + li {
    padding-top: calc(12px + 4 * (100vw - 320px) / 280);
    margin-top: calc(12px + 4 * (100vw - 320px) / 280);
  }
}
.learn-top-coach-list li img {
  width: 55px;
  height: 55px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
}
@media (max-width: 600px) {
  .learn-top-coach-list li img {
    width: calc(45px + 10 * (100vw - 320px) / 280);
    height: calc(45px + 10 * (100vw - 320px) / 280);
  }
}
.learn-top-coach-list li .coach-list-content {
  width: calc(100% - 55px - 10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .learn-top-coach-list li .coach-list-content {
    width: calc(100% - (45px + 10 * (100vw - 320px) / 280) - 10px);
  }
}
.learn-top-coach-list li .coach-list-content h4 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .learn-top-coach-list li .coach-list-content h4 {
    font-size: calc(15px + 1 * (100vw - 320px) / 280);
  }
}
.learn-top-coach-list li .coach-list-content h5 {
  margin-top: 2px;
  font-weight: 300;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .learn-top-coach-list li .coach-list-content h5 {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
  }
}
.learn-top-coach-list li .coach-list-content .coach-contact-list {
  display: flex;
  align-items: center;
  gap: 9px;
}
.learn-top-coach-list li .coach-list-content .coach-contact-list a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--white), 1);
  border-radius: 100%;
  border: 1px solid rgba(var(--content-color), 0.18);
}
@media (max-width: 600px) {
  .learn-top-coach-list li .coach-list-content .coach-contact-list a {
    width: calc(35px + 7 * (100vw - 320px) / 280);
    height: calc(35px + 7 * (100vw - 320px) / 280);
  }
}
.learn-top-coach-list li .coach-list-content .coach-contact-list a .icon {
  --Iconsax-Color: rgba(var(--theme-color), 1);
  --Iconsax-Size: 24px;
}
@media (max-width: 600px) {
  .learn-top-coach-list li .coach-list-content .coach-contact-list a .icon {
    --Iconsax-Size: calc(20px + (24 - 20) * ((100vw - 320px) / (600 - 320)));
  }
}

.learn-user-chat-wrapper {
  height: calc(100vh - 165px);
  overflow: auto;
  scroll-behavior: smooth;
  padding-top: 20px;
}
.learn-user-chat-wrapper::-webkit-scrollbar {
  width: 0;
}
.learn-user-chat-wrapper .message-chat-time {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  margin: 0;
}
.learn-user-chat-wrapper .message-box-list {
  max-height: 660px;
  margin-top: 30px;
}
@media (max-width: 600px) {
  .learn-user-chat-wrapper .message-box-list {
    margin-top: calc(10px + 20 * (100vw - 320px) / 280);
  }
}
.learn-user-chat-wrapper .message-box-list li {
  width: 100%;
  align-items: center;
  gap: 10px;
}
.learn-user-chat-wrapper .message-box-list li .message-box .message-details-box {
  position: relative;
  padding: 12px;
  max-width: 245px;
  display: inline-flex;
  flex-direction: column;
}
.learn-user-chat-wrapper .message-box-list li + li {
  margin-top: 20px;
}
.learn-user-chat-wrapper .message-box-list .left-chat-box {
  display: flex;
  justify-content: flex-start;
}
.learn-user-chat-wrapper .message-box-list .message-box {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}
.learn-user-chat-wrapper .message-box-list .person-img {
  width: 35px;
  height: 35px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
}
.learn-user-chat-wrapper .message-box-list .message-details-box {
  background-color: rgba(var(--content-color), 0.05);
  border-radius: 20px 20px 20px 0;
  border: 1px solid rgba(var(--content-color), 0.15);
}
.learn-user-chat-wrapper .message-box-list .message-details-box h5 {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(var(--title-color), 1);
  letter-spacing: 0.5px;
  word-wrap: break-word;
}
.learn-user-chat-wrapper .message-box-list .message-details-box .timing {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 5px;
  margin-top: 8px;
}
.learn-user-chat-wrapper .message-box-list .message-details-box .timing h6 {
  font-size: 12px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  letter-spacing: 0.5px;
  word-wrap: break-word;
}
.learn-user-chat-wrapper .message-box-list .message-details-box .voice-content {
  display: flex;
  align-items: center;
  gap: 10px;
}
.learn-user-chat-wrapper .message-box-list .message-details-box .voice-content .play-button {
  width: 22px;
  height: 22px;
  background-color: rgba(var(--theme-color), 1);
  border-radius: 100%;
  position: relative;
}
.learn-user-chat-wrapper .message-box-list .message-details-box .voice-content .play-button::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  border-left: 9px solid rgba(var(--white), 1);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.learn-user-chat-wrapper .message-box-list .message-details-box .voice-content img {
  width: 138px;
  height: 26px;
}
.learn-user-chat-wrapper .message-box-list .message-details-box .voice-content h6 {
  font-size: 12px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.learn-user-chat-wrapper .message-box-list .right-chat-box {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0;
}
.learn-user-chat-wrapper .message-box-list .right-chat-box .message-details-box {
  background-color: rgba(var(--theme-color), 1);
  border-radius: 20px 20px 0 20px;
  border: none;
}
.learn-user-chat-wrapper .message-box-list .right-chat-box .message-details-box h5 {
  color: rgba(var(--white), 1);
}
body.dark-mode .learn-user-chat-wrapper .message-box-list .right-chat-box .message-details-box h5 {
  color: rgba(var(--title-color), 1);
}
.learn-user-chat-wrapper .message-box-list .right-chat-box .message-details-box .timing {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  margin-top: 8px;
}
.learn-user-chat-wrapper .message-box-list .right-chat-box .message-details-box .timing h6 {
  color: rgba(var(--white), 1);
}
body.dark-mode .learn-user-chat-wrapper .message-box-list .right-chat-box .message-details-box .timing h6 {
  color: rgba(var(--title-color), 1);
}
.learn-user-chat-wrapper .message-box-list .forward {
  display: flex;
  align-items: center;
  gap: 14px;
}
.learn-user-chat-wrapper .message-box-list .forward a {
  background-color: rgba(var(--content-color), 0.1);
  border-radius: 100%;
  padding: 5px;
}
.learn-user-chat-wrapper .message-box-list .forward .media-img {
  background-color: rgba(var(--content-color), 0.1);
  border-radius: 20px 20px 0 20px;
  display: flex;
  justify-content: center;
}
.learn-user-chat-wrapper .message-box-list .forward .media-img img {
  border-radius: 20px;
  padding: 11px 9px;
}
.learn-user-chat-wrapper .message-chat-box .dropdown-menu .dropdown-item:hover {
  background-color: rgba(var(--theme-color), 1);
}
.learn-user-chat-wrapper .message-chat-box .send-btn {
  background-color: rgba(var(--theme-color), 1);
}

.audio-call-button .learn-call-btn {
  background-color: rgba(var(--theme-color), 1);
}
.audio-call-button .learn-call-btn .icon {
  --Iconsax-Color: rgba(var(--white), 1);
}
.audio-call-button .learn-call-btn .mute-icon {
  --Iconsax-Color: rgba(var(--white), 1);
}

.learning-video-img {
  position: relative;
  height: 225px;
}
.learning-video-img img {
  height: 225px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}
.learning-video-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 225px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  background-color: rgba(var(--black), 0.44);
  z-index: 1;
  top: 0;
}

.learn-play-button {
  width: 36px;
  height: 36px;
  background-color: rgba(var(--white), 1);
  border-radius: 100%;
  position: relative;
  top: -139px;
  z-index: 1;
  left: 50%;
  transform: translate(-50%);
  cursor: pointer;
}
[dir=rtl] .learn-play-button {
  left: inset;
  right: 50%;
  transform: translate(50%);
}
.learn-play-button:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 13px;
  border-top: 8px solid rgba(0, 0, 0, 0);
  border-bottom: 8px solid rgba(0, 0, 0, 0);
  border-left: 14px solid rgba(var(--theme-color), 1);
}

.video-title h5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--theme-color), 1);
}
.video-title h5 span {
  font-weight: 600;
}
.video-title h6 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
  margin-top: 5px;
}
.video-title h6 span {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
.video-title .course-list {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 7px;
  padding-left: 15px;
}
.video-title .course-list li {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  position: relative;
}
.video-title .course-list li::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: rgba(var(--content-color), 1);
  border-radius: 100%;
  top: 7px;
  left: -15px;
}

.coach-contact-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.coach-contact-wrapper img {
  width: 58px;
  height: 58px;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.coach-contact-wrapper .coach-contact-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 58px - 10px);
}
.coach-contact-wrapper .coach-contact-detail h5 {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.coach-contact-wrapper .coach-contact-detail h6 {
  margin-top: 2px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.coach-contact-wrapper .coach-contact-detail .contact-icon {
  display: flex;
  align-items: center;
  gap: 8px;
}
.coach-contact-wrapper .coach-contact-detail .contact-icon a {
  width: 37px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--white), 1);
  border-radius: 100%;
}
.coach-contact-wrapper .coach-contact-detail .contact-icon a img {
  width: 24px;
  height: 24px;
}

.students-detail-list {
  margin-top: 10px;
}
.students-detail-list li {
  display: flex;
  align-items: center;
  gap: 50px;
  font-size: 14px;
  font-weight: 400;
}
.students-detail-list li span {
  min-width: 160px;
  color: rgba(var(--title-color), 1);
}
.students-detail-list li h6 {
  color: rgba(var(--content-color), 1);
}
.students-detail-list li + li {
  margin-top: 18px;
}
@media (max-width: 600px) {
  .students-detail-list li + li {
    margin-top: calc(12px + 6 * (100vw - 320px) / 280);
  }
}

.learning-modal .modal-content {
  padding: 0;
  overflow: hidden;
}
.learning-modal .modal-content .modal-header {
  border-bottom: none;
  padding: 0;
}
.learning-modal .modal-content .modal-header .close-button {
  border-radius: 6px;
  position: absolute;
  background-color: rgba(var(--white), 1);
  top: 12px;
  right: 12px;
  z-index: 1;
  font-size: 12px;
  opacity: 1;
  margin: 0;
}
.learning-modal .modal-content .learning-video {
  padding: 0;
}
.learning-modal .modal-content .learning-video video {
  width: 100%;
  margin-bottom: -8px;
}

.learn-privacy-detail p {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.learn-privacy-detail + .learn-privacy-detail {
  margin-top: 25px;
}
.learn-privacy-detail .learn-social-media-list {
  padding-top: 15px;
  padding-left: 20px;
}
[dir=rtl] .learn-privacy-detail .learn-social-media-list {
  padding-inline: 20px 0;
}
.learn-privacy-detail .learn-social-media-list li {
  width: 100%;
  list-style: disc;
  display: list-item;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--title-color), 0.81);
}
.learn-privacy-detail .learn-social-media-list li + li {
  margin-top: 8px;
}

.learn-coupon-box {
  background-color: rgba(var(--content-color), 0.1);
  border-radius: 8px;
  box-shadow: 2px 2px 0 0 rgba(var(--title-color), 1);
  padding: 20px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 600px) {
  .learn-coupon-box {
    padding: calc(12px + 8 * (100vw - 320px) / 280);
  }
}
.learn-coupon-box img {
  width: 26px;
  height: 26px;
}
.learn-coupon-box .coupon-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 10px - 26px);
}
.learn-coupon-box .coupon-content h4 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .learn-coupon-box .coupon-content h4 {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.learn-coupon-box .coupon-content .icon {
  --Iconsax-Color: rgba(var(--black), 1);
  --Iconsax-Size: 24px;
}
@media (max-width: 600px) {
  .learn-coupon-box .coupon-content .icon {
    --Iconsax-Size: calc(22px + (24 - 22) * ((100vw - 320px) / (600 - 320)));
  }
}
.learn-coupon-box .coupon-content input[type=radio] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  display: block;
  accent-color: rgba(var(--theme-color), 1);
  transition: all 0.3s ease-in-out;
  position: relative;
  transition: all 0.25s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 100%;
  border: 1px solid rgba(var(--content-color), 1);
}
.learn-coupon-box .coupon-content input[type=radio]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: rgba(var(--theme-color), 1);
  border-radius: 100%;
  width: 10px;
  height: 10px;
  transition: all 0.25s ease-in-out;
}
.learn-coupon-box .coupon-content input[type=radio]:checked {
  border-color: rgba(var(--theme-color), 1);
}
.learn-coupon-box .coupon-content input[type=radio]:checked::before {
  transform: translate(-50%, -50%) scale(1);
}

.cart-list-wrapper {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(var(--content-color), 0.2);
}
@media (max-width: 600px) {
  .cart-list-wrapper {
    padding-bottom: calc(15px + 5 * (100vw - 320px) / 280);
  }
}
.cart-list-wrapper li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
  padding-inline: 20px;
}
@media (max-width: 600px) {
  .cart-list-wrapper li {
    font-size: calc(15px + 1 * (100vw - 320px) / 280);
  }
}
.cart-list-wrapper li + li {
  margin-top: 10px;
}
@media (max-width: 600px) {
  .cart-list-wrapper li + li {
    margin-top: calc(6px + 4 * (100vw - 320px) / 280);
  }
}
.cart-list-wrapper li span {
  color: rgba(var(--content-color), 1);
}
.cart-list-wrapper .cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 20px;
  border-top: 1px solid rgba(var(--content-color), 0.2);
  border-bottom: 1px solid rgba(var(--content-color), 0.2);
  background-color: rgba(var(--content-color), 0.02);
  margin-top: 12px;
}
@media (max-width: 600px) {
  .cart-list-wrapper .cart-total {
    padding-block: calc(12px + 7 * (100vw - 320px) / 280);
  }
}
.cart-list-wrapper .cart-total h4 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.cart-list-wrapper .cart-total span {
  font-weight: 500;
  color: rgba(var(--theme-color), 1);
}

.learn-security .security-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.learn-security .security-image img {
  height: 250px;
}
@media (max-width: 600px) {
  .learn-security .security-image img {
    height: calc(150px + 100 * (100vw - 320px) / 280);
  }
}
.learn-security .security-detail {
  margin-top: 20px;
}
.learn-security .security-detail p {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.learn-security .security-detail .learn-security-content {
  margin-top: 8px;
  padding-left: 20px;
}
[dir=rtl] .learn-security .security-detail .learn-security-content {
  padding-inline: 20px 0;
}
.learn-security .security-detail .learn-security-content li {
  list-style: disc;
  display: list-item;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.learn-security .security-detail .learn-security-content li + li {
  margin-top: 6px;
}

/* =================
5.10 Cab Booking SCSS 
==================*/
.cab-map-image iframe {
  width: 100%;
  height: 370px;
}
.cab-map-image iframe > div {
  border: none;
}
.cab-map-image.cab-location iframe {
  width: 100%;
  height: 650px;
}

.choose-cab-list {
  display: flex;
  align-items: center;
  gap: 15px;
  overflow: hidden;
  overflow-x: auto;
  scrollbar-width: none;
}
.choose-cab-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 104px;
  flex-direction: column;
  gap: 19px;
  background-color: rgba(var(--light-bg), 0.78);
  border-radius: 12px;
  padding: 15px;
}
body.dark-mode .choose-cab-list li a {
  background-color: rgba(var(--dark-bg), 1);
}
.choose-cab-list li a img {
  width: 100%;
  height: 51px;
  -o-object-fit: contain;
     object-fit: contain;
}
.choose-cab-list li a h5 {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}

.cab-book-search {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cab-book-search span {
  font-size: 18px;
  font-weight: 300;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .cab-book-search span {
    font-size: calc(16px + 2 * (100vw - 320px) / 280);
  }
}

.cab-booking-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cab-booking-wrapper li {
  width: 100%;
  border: 1px solid rgba(var(--content-color), 0.4);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  position: relative;
  line-height: 1;
  height: 38px;
}
.cab-booking-wrapper li .circle-1 {
  width: 8px;
  height: 8px;
  background-color: rgba(var(--theme-color), 1);
  border-radius: 100%;
  outline: 1px solid rgba(var(--theme-color), 1);
  outline-offset: 2px;
}
.cab-booking-wrapper li .icon {
  --Iconsax-Color: #607080;
  --Iconsax-Size: 16px;
}
.cab-booking-wrapper li h5 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.cab-booking-wrapper li span {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.cab-booking-wrapper li:last-child {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(var(--white), 1);
  border-radius: 100%;
  border: 1px solid rgba(var(--content-color), 0.4);
}
.cab-booking-wrapper li:last-child .icon {
  --Iconsax-Color: rgba(var(--theme-color), 1);
  --Iconsax-Size: 16px;
}

.cab-booking-banner {
  background-color: rgba(var(--content-color), 0.17);
  padding: 15px 20px;
}
.cab-booking-banner h4 {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}

.booking-calender-list h5 {
  text-align: center;
  color: #FFB400;
  font-size: 18px;
  font-weight: 500;
}
.booking-calender-list .datepicker-container {
  margin-top: 16px;
  border: 1px solid rgba(var(--content-color), 0.4);
  border-radius: 6px;
  position: relative;
}
.booking-calender-list .datepicker-container .form-control {
  border: none;
}
.booking-calender-list .datepicker-container .form-control:focus {
  border: none !important;
}
body.dark-mode .booking-calender-list .datepicker-container .form-control {
  background-color: rgba(var(--dark-bg), 1);
  color: rgba(var(--title-color), 1);
  border: none;
}
body.dark-mode .booking-calender-list .datepicker-container .form-control::-moz-placeholder {
  color: rgba(var(--title-color), 1);
}
body.dark-mode .booking-calender-list .datepicker-container .form-control::placeholder {
  color: rgba(var(--title-color), 1);
}
body.dark-mode .booking-calender-list .datepicker-container .datepicker-picker {
  background-color: rgba(var(--dark-bg), 1);
}
body.dark-mode .booking-calender-list .datepicker-container .datepicker-picker .datepicker-controls {
  background-color: rgba(var(--dark-bg), 1);
}
body.dark-mode .booking-calender-list .datepicker-container .datepicker-picker .datepicker-controls .button {
  background-color: rgba(var(--dark-bg), 1);
  color: rgba(var(--title-color), 1);
}
.booking-calender-list .datepicker-container .datepicker-main {
  margin: 20px;
  background-color: rgba(var(--white), 1);
}
.booking-calender-list .datepicker-container .datepicker {
  width: 100%;
  max-width: 600px;
}
.booking-calender-list .datepicker-container .datepicker .datepicker-view {
  width: 100%;
}
.booking-calender-list .datepicker-container .datepicker .dow {
  font-weight: 400;
  font-size: 16px;
  color: rgba(var(--content-color), 1);
}
.booking-calender-list .datepicker-container .datepicker .datepicker-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  padding-block: 10px;
}
@media (max-width: 399px) {
  .booking-calender-list .datepicker-container .datepicker .datepicker-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.booking-calender-list .datepicker-container .datepicker .datepicker-grid span {
  background-color: rgba(var(--content-color), 0.13);
  height: 45px;
  color: rgba(var(--title-color), 1);
}
.booking-calender-list .datepicker-container .datepicker .datepicker-grid span.selected {
  background-color: rgba(var(--theme-color), 1);
  color: rgba(var(--white), 1);
}
body.dark-mode .booking-calender-list .datepicker-container .datepicker .datepicker-grid span.selected {
  background-color: rgba(var(--title-color), 1);
  border: 1px solid rgba(var(--theme-color), 1);
  color: rgba(var(--theme-color), 1);
}
body.dark-mode .booking-calender-list .datepicker-container .datepicker .datepicker-grid span {
  background-color: rgba(var(--dark-bg), 1);
}
.booking-calender-list .datepicker-container .datepicker .datepicker-grid .today {
  color: rgba(var(--white), 1);
  background-color: rgba(var(--theme-color), 1);
}
body.dark-mode .booking-calender-list .datepicker-container .datepicker .datepicker-grid .today {
  background-color: rgba(var(--title-color), 1);
  border: 1px solid rgba(var(--theme-color), 1);
  color: rgba(var(--theme-color), 1);
}
.booking-calender-list .datepicker-container .form-control {
  border-bottom: none;
}
.booking-calender-list .datepicker-container .form-control:focus {
  border: 1px solid rgba(var(--content-color), 0.4);
  box-shadow: none;
}
.booking-calender-list .datepicker-container .icon {
  position: absolute;
  top: 12px;
  right: 10px;
  --Iconsax-Size: 18px;
  --Iconsax-Color: rgba(var(--title-color), 1);
}

.choose-cab-book-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.choose-cab-book-list .choose-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.8px solid rgba(var(--content-color), 0.24);
  border-radius: 6px;
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.choose-cab-book-list .choose-box .cab-coupon {
  display: flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  top: 0;
  right: 90px;
  padding: 3px 6px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  color: rgba(var(--white), 1);
  background-color: rgba(var(--theme-color), 1);
  font-size: 14px;
  font-weight: 400;
}
[dir=rtl] .choose-cab-book-list .choose-box .cab-coupon {
  right: unset;
  left: 90px;
}
body.dark-mode .choose-cab-book-list .choose-box .cab-coupon {
  color: rgba(var(--title-color), 1);
}
.choose-cab-book-list .choose-box .cab-coupon img {
  width: 17px;
  height: 17px;
}
.choose-cab-book-list .choose-box input[type=radio] {
  display: none;
}
.choose-cab-book-list .choose-box .image {
  width: 46px;
  height: 42px;
}
.choose-cab-book-list .choose-box .cab-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 46px - 12px);
}
.choose-cab-book-list .choose-box .cab-content .left-text {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.choose-cab-book-list .choose-box .cab-content .left-text .content {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.choose-cab-book-list .choose-box .cab-content .right-text {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.choose-cab-book-list .choose-box .cab-content .right-text .content {
  margin-top: -6px;
}
.choose-cab-book-list .choose-box .cab-content .right-text .content del {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.choose-cab-book-list .choose-box:has(input[type=radio]:checked) {
  border-color: rgba(var(--theme-color), 1);
}
.choose-cab-book-list .choose-box:has(input[type=radio]:checked) .text {
  color: rgba(var(--title-color), 1);
}

.choose-book-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
}
.choose-book-wrapper .booking-space {
  display: flex;
  align-items: center;
  gap: 12px;
}
.choose-book-wrapper .booking-space h4 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.choose-book-wrapper .booking-space h5 {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
  border-left: 1.5px solid rgba(var(--content-color), 0.24);
  padding-left: 8px;
}
body.dark-mode .choose-book-wrapper .booking-space h5 img {
  filter: invert(1);
}
.choose-book-wrapper span {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 22px;
  font-weight: 500;
  color: rgba(var(--theme-color), 1);
}
.choose-book-wrapper span del {
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}

.select-cab-wrapper {
  border-top: 1px solid rgba(var(--content-color), 0.15);
  border-bottom: 1px solid rgba(var(--content-color), 0.15);
}
.select-cab-wrapper img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: 18px;
}
.select-cab-wrapper .book-timer-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 14px;
}
.select-cab-wrapper .book-timer-box h4 {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.select-cab-wrapper .book-timer-box h4 .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 16px;
}
.select-cab-wrapper .book-timer-box h5 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  margin-top: 4px;
}
.select-cab-wrapper .book-timer-box h6 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
  position: relative;
}
.select-cab-wrapper .book-timer-box h6::after {
  width: 5px;
  height: 5px;
  content: "";
  position: absolute;
  background-color: rgba(var(--title-color), 1);
  border-radius: 100%;
  top: 6px;
  left: -12px;
}

.select-payment {
  margin-top: 18px;
}
.select-payment .cab-auth-form {
  margin-top: 0;
}
.select-payment .cab-auth-form .form-select {
  margin-top: 10px;
  color: rgba(var(--theme-color), 1);
  font-size: 14px;
  font-weight: 500;
}

.pickup-header {
  margin-top: 10px;
  border-bottom: 1px solid rgba(var(--content-color), 0.25);
  padding-bottom: 10px;
}
.pickup-header h3 {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}

.pickup-search-box {
  margin-top: 18px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pickup-search-box h4 {
  font-size: 14px;
  color: rgba(var(--title-color), 1);
}
.pickup-search-box h5 {
  margin-top: 3px;
  font-size: 13px;
  color: rgba(var(--content-color), 1);
}
.pickup-search-box a .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 22px;
}

.cab-payment-list li {
  width: 100%;
  background-color: rgba(var(--content-color), 0.08);
  display: flex;
  align-items: center;
  padding: 17px 16px;
  gap: 18px;
  border-radius: 4px;
}
.cab-payment-list li + li {
  margin-top: 25px;
}
.cab-payment-list li label {
  display: flex;
  align-items: center;
  gap: 18px;
  width: calc(100% - 18px - 18px);
  cursor: pointer;
}
.cab-payment-list li label img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.cab-payment-list li label span {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.cab-payment-list li .radio-circle[type=radio] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 100%;
  border: 1px solid rgba(var(--content-color), 1);
  position: relative;
  transition: all 0.2s ease-in-out;
  flex-shrink: 0;
}
.cab-payment-list li .radio-circle[type=radio]::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: rgba(var(--theme-color), 1);
  border-radius: 100%;
  content: "";
  transition: all 0.2s ease-in-out;
}
.cab-payment-list li .radio-circle[type=radio]:checked {
  border-color: rgba(var(--theme-color), 1);
}
.cab-payment-list li .radio-circle[type=radio]:checked::before {
  transform: translate(-50%, -50%) scale(1);
}

.cab-driver-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: rgba(var(--white), 1);
  border-radius: 13px;
  padding: 14px 12px;
  box-shadow: 2px 3px 6px 0px rgba(var(--black), 0.19);
  margin-top: -36px;
  z-index: 1;
  position: relative;
}
.cab-driver-contact img {
  width: 50px;
  height: 45px;
  border-radius: 8px;
}
.cab-driver-contact .driver-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 50px - 12px);
}
.cab-driver-contact .driver-details h4 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.cab-driver-contact .driver-details h5 {
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.cab-driver-contact .driver-details a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: rgba(var(--content-color), 0.1);
  border-radius: 4px;
}
.cab-driver-contact .driver-details a .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
}
.cab-driver-contact .driver-details a + a {
  background-color: rgba(var(--success-color), 1);
}
.cab-driver-contact .driver-details a + a .icon {
  --Iconsax-Color: rgba(var(--white), 1);
}
body.dark-mode .cab-driver-contact .driver-details a + a .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
}

.ride-min-section {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 16px;
  margin-top: 31px;
}
.ride-min-section img {
  width: 50px;
  height: 45px;
  -o-object-fit: cover;
     object-fit: cover;
}
.ride-min-section h4 {
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.ride-min-section h5 {
  color: rgba(var(--content-color), 1);
  font-weight: 400;
}

.pickup-taming {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pickup-taming li {
  background-color: rgba(var(--content-color), 0.1);
  border-radius: 18px;
  padding: 8px 20px;
  color: rgba(var(--title-color), 1);
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pickup-taming li .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 16px;
}

.pickup-time-list {
  margin-top: 16px;
  background-color: rgba(var(--content-color), 0.09);
  padding-block: 16px;
  display: flex;
  justify-content: center;
  gap: 54px;
}
.pickup-time-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.pickup-time-list li .up-btn {
  width: 28px;
  height: 28px;
  border-radius: 100%;
  background-color: rgba(var(--white), 1);
  border: none;
}
.pickup-time-list li .up-btn .icon {
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 19px;
}
.pickup-time-list li h5 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}

.select-passenger-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.select-passenger-box .icon {
  --Iconsax-Size: 20px;
  --Iconsax-Color: rgba(var(--title-color), 1) ;
}
.select-passenger-box .count-user-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 20px - 10px);
}
.select-passenger-box .count-user-content h5 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.select-passenger-box .count-user-content .plus-minus {
  display: inline-flex;
  align-items: center;
  text-align: center;
  padding: 4px 8px;
  background-color: rgba(var(--white), 1);
  border: none;
  margin: 0;
}
.select-passenger-box .count-user-content .plus-minus .icon {
  --Iconsax-Size: 16px;
  --Iconsax-Color: rgba(var(--title-color), 1);
  background-color: rgba(var(--content-color), 0.08);
  padding: 4px;
  border-radius: 4px;
}
.select-passenger-box .count-user-content .plus-minus input {
  background-color: rgba(var(--white), 1);
  color: rgba(var(--title-color), 1);
  border: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  outline: none;
  width: 35px;
  text-align: center;
}

.lotion-option-box {
  display: flex;
  align-items: center;
  gap: 11px;
}
.lotion-option-box li {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(var(--content-color), 0.1);
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
}
@media (max-width: 600px) {
  .lotion-option-box li {
    padding-inline: calc(8px + 8 * (100vw - 320px) / 280);
  }
}
.lotion-option-box li img {
  width: 24px;
  height: 24px;
}
.lotion-option-box li h5 {
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .lotion-option-box li h5 {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.lotion-option-box li .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 16px;
}

.booking-current-location {
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--content-color), 0.2);
  border-radius: 10px;
  padding: 15px;
}
.booking-current-location li {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  width: 100%;
}
.booking-current-location li img {
  width: 20px;
  height: 20px;
}
body.dark-mode .booking-current-location li img {
  filter: invert(1);
}
.booking-current-location li .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
}
.booking-current-location li .icon-add {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
  border-left: 1px solid rgba(var(--content-color), 0.27);
  padding-left: 5px;
  cursor: pointer;
}
.booking-current-location li .current-location-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 10px - 20px);
}
.booking-current-location li .current-location-detail h5 {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.booking-current-location li .current-location-detail .enter {
  color: rgba(var(--content-color), 1);
}
.booking-current-location li + li {
  position: relative;
}
.booking-current-location li + li::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 10px;
  width: 2px;
  height: calc(100% - 16px);
  border-left: 1px dashed rgba(var(--title-color), 1);
}
.booking-current-location li + li .current-location-detail {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(var(--content-color), 0.29);
}

.cab-different-location-list li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 16px;
}
.cab-different-location-list li + li {
  border-top: 1px solid rgba(var(--content-color), 0.19);
  padding-top: 16px;
}
.cab-different-location-list li .icon {
  --Iconsax-Size: 24px;
  --Iconsax-Color: rgba(var(--title-color), 1);
}
.cab-different-location-list li h5 {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.cab-different-location-list li h6 {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}

.confirm-modal .modal-header {
  border: none;
  padding: 0;
}
.confirm-modal .modal-header .btn-close {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: rgba(var(--content-color), 0.2);
  color: rgba(var(--title-color), 1);
  font-size: 10px;
  box-shadow: none;
  opacity: 1;
  padding: 3px;
}
body.dark-mode .confirm-modal .modal-header .btn-close {
  filter: invert(1);
}
.confirm-modal .confirm-pickup-modal img {
  display: flex;
  margin-right: auto;
  margin-left: auto;
}
.confirm-modal .confirm-pickup-modal h4 {
  margin-top: 18px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.confirm-modal .confirm-pickup-modal h5 {
  margin-top: 6px;
  color: rgba(var(--content-color), 1);
  font-weight: 400;
}
.confirm-modal .confirm-pickup-modal .text-cancel {
  text-align: center;
  display: block;
  margin-top: 12px;
  color: rgba(var(--title-color), 1);
  font-size: 16px;
  font-weight: 500;
}

.safety-page {
  padding: 18px 10px;
  background-color: #f9fbfd;
}
.safety-page h3 {
  font-size: 24px;
  font-weight: 600;
  color: rgba(var(--theme-color), 1);
}
.safety-page .safety-section {
  margin-top: 20px;
  background: rgba(var(--white), 1);
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(var(--black), 0.03);
}
.safety-page .safety-section h4 {
  font-size: 18px;
  font-weight: 600;
  color: rgb(var(--title-color), 1);
}
.safety-page .safety-section p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 300;
  color: rgba(var(--content-color), 1);
}
.safety-page .safety-section .safety-list {
  margin-top: 10px;
}
.safety-page .safety-section .safety-list li {
  width: 100%;
  padding-left: 10px;
}
.safety-page .safety-section .safety-list li + li {
  margin-top: 8px;
}
.safety-page .safety-section .safety-list li .icon {
  --Iconsax-Color: rgba(var(--theme-color), 1);
  --Iconsax-Size: 20px;
  margin-right: 6px;
}

.cab-setting-list {
  background-color: rgba(var(--content-color), 0.06);
  border-radius: 12px;
  margin-top: 15px;
  padding: 15px 8px;
}
.cab-setting-list h3 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
.cab-setting-list .user-setting-list {
  margin-top: 18px;
}
.cab-setting-list .user-setting-list li {
  width: 100%;
}
.cab-setting-list .user-setting-list li + li {
  margin-top: 15px;
}
.cab-setting-list .user-setting-list li .user-list {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.cab-setting-list .user-setting-list li .user-list .icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 18px;
  background-color: rgba(var(--white), 1);
  border-radius: 100%;
}
.cab-setting-list .user-setting-list li .user-list .cab-user-contant {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 10px - 30px);
}
.cab-setting-list .user-setting-list li .user-list .cab-user-contant h4 {
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.cab-setting-list .user-setting-list li .user-list .user {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cab-language-list li {
  width: 100%;
  border: 1px solid rgba(var(--content-color), 0.2);
  padding: 17px 16px;
  gap: 18px;
  border-radius: 50px;
}
.cab-language-list li + li {
  margin-top: 20px;
}
.cab-language-list li label {
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
}
.cab-language-list li label img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.cab-language-list li label .language-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 24px - 18px);
}
.cab-language-list li label .language-name span {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.cab-language-list li:has(input:checked) {
  background-color: rgba(var(--theme-color), 0.07);
  border-color: transparent;
  transition: all 0.3s ease-in-out;
}
.cab-language-list li .radio-circle[type=radio] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 100%;
  border: 1px solid rgba(var(--content-color), 1);
  position: relative;
  transition: all 0.2s ease-in-out;
  flex-shrink: 0;
}
.cab-language-list li .radio-circle[type=radio]::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: rgba(var(--theme-color), 1);
  border-radius: 100%;
  content: "";
  transition: all 0.2s ease-in-out;
}
.cab-language-list li .radio-circle[type=radio]:checked {
  border-color: rgba(var(--theme-color), 1);
}
.cab-language-list li .radio-circle[type=radio]:checked::before {
  transform: translate(-50%, -50%) scale(1);
}

.cab-wallet-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}
.cab-wallet-wrapper .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 24px;
  background-color: rgba(var(--white), 1);
  box-shadow: 2px 3px 6px 0px rgba(var(--black), 0.19);
  border-radius: 100%;
}
.cab-wallet-wrapper .wallet-offer-content {
  width: calc(100% - 40px - 15px);
}
.cab-wallet-wrapper .wallet-offer-content h4 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.cab-wallet-wrapper .wallet-offer-content p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}

.cab-wallet-list {
  margin-top: 20px;
}
.cab-wallet-list li {
  display: flex;
  align-items: center;
  gap: 15px;
}
.cab-wallet-list li + li {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(var(--content-color), 0.12);
}
.cab-wallet-list li img {
  width: 40px;
  height: 40px;
  border-radius: 100%;
}
.cab-wallet-list li .cab-wallet-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 40px - 15px);
}
.cab-wallet-list li .cab-wallet-content h3 {
  font-weight: 500;
  font-size: 16px;
  color: rgba(var(--title-color), 1);
}
.cab-wallet-list li .cab-wallet-content h4 {
  font-size: 14px;
  color: rgba(var(--content-color), 1);
  margin-top: 2px;
  font-weight: 400;
}
.cab-wallet-list li .cab-wallet-content h5 {
  text-align: end;
  font-size: 14px;
  color: rgba(var(--content-color), 1);
  font-weight: 400;
}
.cab-wallet-list li .cab-wallet-content h6 {
  color: rgba(var(--success-color), 1);
  font-size: 14px;
  margin-top: 2px;
  font-weight: 300;
}

.cab-bank-detail-box {
  margin-top: 15px;
  border: 1px solid rgba(var(--content-color), 0.12);
  background-color: rgba(var(--white), 1);
  border-radius: 6px;
  padding: 12px 10px;
}
.cab-bank-detail-box li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(var(--content-color), 1);
  font-size: 14px;
  font-weight: 500;
}
.cab-bank-detail-box li + li {
  margin-top: 12px;
}

.booking-offer-list li {
  display: flex;
  gap: 15px;
  width: 100%;
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--theme-color), 0.11);
  border-radius: 6px;
  padding: 12px 8px;
  box-shadow: 2px 3px 6px 0px rgba(192, 192, 192, 0.19);
}
.booking-offer-list li + li {
  margin-top: 20px;
}
.booking-offer-list li .icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 24px;
  background-color: rgba(var(--theme-color), 0.09);
}
.booking-offer-list li .offer-content {
  width: calc(100% - 15px - 40px);
}
.booking-offer-list li .offer-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.booking-offer-list li .offer-content h5 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 300;
  color: rgba(var(--content-color), 1);
}
.booking-offer-list li .offer-content .apply-btn {
  border: none;
  color: rgba(var(--theme-color), 1);
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
  margin-top: 4px;
  background-color: transparent;
}
.booking-offer-list li .offer-content .apply-btn .icon {
  --Iconsax-Color: rgba(var(--theme-color), 1);
  --Iconsax-Size: 20px;
  margin-left: 3px;
  transition: all 0.2s ease-in-out;
}
.booking-offer-list li .offer-content .apply-btn:hover .icon {
  margin-left: 6px;
}
.booking-offer-list li:nth-child(2) .icon-btn {
  background-color: rgba(255, 0, 0, 0.0901960784);
}
.booking-offer-list li:nth-child(3) .icon-btn {
  background-color: rgba(0, 128, 0, 0.1294117647);
}
.booking-offer-list li:nth-child(4) .icon-btn {
  background-color: rgba(128, 0, 128, 0.1098039216);
}

.cab-offer-modal .cab-offer-box {
  padding: 0;
}
.cab-offer-modal .cab-offer-box img {
  display: flex;
  margin-right: auto;
  margin-left: auto;
}
.cab-offer-modal .cab-offer-box h3 {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.cab-offer-modal .cab-offer-box p {
  color: rgba(var(--content-color), 1);
  margin-top: 2px;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
}

.choose-modal .modal-header {
  justify-content: center;
  padding: 0 0 10px 0;
}
.choose-modal .pickup-content {
  padding: 10px 0 0 0;
}
.choose-modal .pickup-content ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.choose-modal .pickup-content ul li + li {
  margin-top: 12px;
}
.choose-modal .pickup-content ul li .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(var(--theme-color), 0.1);
  border-radius: 100%;
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px ;
}
.choose-modal .pickup-content ul li .icon-add {
  cursor: pointer;
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px ;
}
.choose-modal .pickup-content ul li span {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.choose-modal .pickup-content ul li .pick-text {
  color: rgba(var(--content-color), 1);
  font-size: 14px;
  font-weight: 400;
}
.choose-modal .pickup-content ul li .space {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 40px - 10px);
}

/* =================
5.11 Fitness SCSS 
====================*/
.fitness {
  background-color: rgba(var(--body-color), 1);
}

.gender-select {
  display: flex;
  gap: 20px;
  padding-top: 20px;
}
.gender-select .gender-option {
  position: relative;
  width: 100%;
}
.gender-select .gender-option input[type=radio] {
  display: none;
}
.gender-select .custom-radio {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  background-color: rgba(var(--bg-color), 1);
  color: rgba(var(--white), 1);
  border: 2px solid rgba(var(--white), 0.03);
  cursor: pointer;
  transition: 0.3s;
}
@media (max-width: 600px) {
  .gender-select .custom-radio {
    height: calc(35px + 10 * (100vw - 320px) / 280);
  }
}
.gender-select .gender-option input[type=radio]:checked + .custom-radio {
  background-color: rgba(var(--theme-color), 1);
  color: rgba(var(--bg-color), 1);
  border-color: transparent;
  font-weight: 500;
}

.gender-image {
  background-image: url(8386e98c9078b60279a8.png);
  width: 100%;
  min-height: calc(100% - 208px);
  -o-object-fit: contain;
     object-fit: contain;
  mix-blend-mode: overlay;
  position: absolute;
}

.gender-body-img {
  position: absolute;
  bottom: 65px;
  left: 50%;
  transform: translateX(-50%);
}

.body-select-list li {
  width: 100%;
  background-color: rgba(var(--bg-color), 1);
  border: 1px solid rgba(var(--white), 0.07);
  border-radius: 50px;
  padding: 15px 19px;
}
@media (max-width: 600px) {
  .body-select-list li {
    padding: calc(10px + 5 * (100vw - 320px) / 280) calc(12px + 7 * (100vw - 320px) / 280);
  }
}
.body-select-list li + li {
  margin-top: 18px;
}
.body-select-list li label {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}
.body-select-list li label input[type=radio] {
  display: none;
}
.body-select-list li label .custom-checkmark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(var(--white), 1);
  position: relative;
}
.body-select-list li label span {
  width: calc(100% - 22px - 20px);
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.body-select-list li label input[type=radio]:checked + .custom-checkmark {
  background-color: rgba(var(--theme-color), 1);
  border: 1px solid transparent;
}
.body-select-list li label input[type=radio]:checked + .custom-checkmark::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 8px;
  width: 5px;
  height: 12px;
  border: solid rgba(var(--white), 1);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.fitness-body-part-wrapper {
  padding-top: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.fitness-body-part-wrapper .body-title {
  background-color: rgba(var(--bg-color), 1);
  border: 1px solid rgba(var(--white), 0.07);
  border-radius: 50px;
  padding: 8px 19px;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--white), 1);
}
.fitness-body-part-wrapper .fitness-body-image {
  margin-top: 38px;
}
@media (max-width: 600px) {
  .fitness-body-part-wrapper .fitness-body-image {
    margin-top: calc(15px + 23 * (100vw - 320px) / 280);
  }
}
.fitness-body-part-wrapper .fitness-body-image img {
  width: 100%;
  height: 419px;
  -o-object-fit: contain;
     object-fit: contain;
}

.workout-img {
  display: flex;
  margin-right: auto;
  margin-left: auto;
}

.exercise-list li {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: rgba(var(--bg-color), 1);
  border: 1px solid rgba(var(--white), 0.07);
  border-radius: 12px;
  padding: 12px;
}
@media (max-width: 600px) {
  .exercise-list li {
    padding: calc(8px + 4 * (100vw - 320px) / 280);
  }
}
.exercise-list li + li {
  margin-top: 20px;
}
.exercise-list li .work-img {
  width: 75px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--body-color), 1);
  border-radius: 8px;
}
@media (max-width: 600px) {
  .exercise-list li .work-img {
    width: calc(70px + 5 * (100vw - 320px) / 280);
    height: calc(50px + 8 * (100vw - 320px) / 280);
  }
}
.exercise-list li .work-img img {
  width: 42px;
  height: 42px;
  -o-object-fit: contain;
     object-fit: contain;
}
.exercise-list li .workout-content {
  width: 100%;
}
.exercise-list li .workout-content a {
  color: rgba(var(--white), 1);
  font-size: 16px;
  font-weight: 500;
}
.exercise-list li .workout-content h5 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  margin-top: 5px;
}

.apexcharts-radialbar-hollow {
  transform: scale(1.06);
  transform-origin: center;
  background-color: #313131;
}

.chart-box {
  position: relative;
}
.chart-box .circle {
  border: 1px solid #4D4D4D;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 320px);
  height: calc(100% - 65px);
  margin-top: -2px;
}

.chart-content {
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
  margin-top: 93px;
  text-align: center;
}
@media (max-width: 600px) {
  .chart-content {
    margin-top: calc(50px + 43 * (100vw - 320px) / 280);
  }
}

.fitness-hero-box {
  padding: 5px 12px;
  width: 100%;
  border: 1px solid rgba(var(--white), 0.07);
  border-radius: 8px;
  background-color: rgba(var(--bg-color), 1);
}
.fitness-hero-box .fitness-hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fitness-hero-box .fitness-hero-content h5 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.fitness-hero-box .fitness-hero-content h6 {
  font-size: 18px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
  margin-top: 4px;
}

.fitness-trainer-list {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  overflow-x: auto;
  scrollbar-width: none;
}
.fitness-trainer-list li {
  width: 100%;
  min-width: 66px;
}
.fitness-trainer-list li a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.fitness-trainer-list li a img {
  width: 66px;
  height: 66px;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 600px) {
  .fitness-trainer-list li a img {
    width: calc(55px + 11 * (100vw - 320px) / 280);
    height: calc(55px + 11 * (100vw - 320px) / 280);
  }
}
.fitness-trainer-list li a span {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}

.fitness-trining-list {
  margin-top: 10px;
}
.fitness-trining-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: rgba(var(--bg-color), 1);
  border: 1px solid rgba(var(--white), 0.07);
  border-radius: 12px;
  padding: 15px;
  position: relative;
}
@media (max-width: 600px) {
  .fitness-trining-list li {
    padding: calc(10px + 5 * (100vw - 320px) / 280);
  }
}
.fitness-trining-list li + li {
  margin-top: 20px;
}
.fitness-trining-list li a img {
  border-radius: 8px;
  width: 86px;
  height: 79px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 600px) {
  .fitness-trining-list li a img {
    height: calc(60px + 19 * (100vw - 320px) / 280);
  }
}
.fitness-trining-list li .fitness-coupon {
  position: absolute;
  top: 0;
  right: 13px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(var(--body-color), 1);
  background-color: rgba(var(--theme-color), 1);
  padding: 3px 8px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
[dir=rtl] .fitness-trining-list li .fitness-coupon {
  right: unset;
  left: 13px;
}
.fitness-trining-list li .fitness-trining-content {
  width: 100%;
}
.fitness-trining-list li .fitness-trining-content a {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .fitness-trining-list li .fitness-trining-content a {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.fitness-trining-list li .fitness-trining-content h5 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  margin-top: 3px;
}
@media (max-width: 600px) {
  .fitness-trining-list li .fitness-trining-content h5 {
    font-size: calc(12px + 2 * (100vw - 320px) / 280);
    margin-top: calc(2px + 1 * (100vw - 320px) / 280);
  }
}
.fitness-trining-list li .fitness-trining-content .fitness-time-kg {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
}
@media (max-width: 600px) {
  .fitness-trining-list li .fitness-trining-content .fitness-time-kg {
    margin-top: calc(8px + 10 * (100vw - 320px) / 280);
  }
}
.fitness-trining-list li .fitness-trining-content .fitness-time-kg div {
  display: flex;
  align-items: center;
  gap: 5px;
}
.fitness-trining-list li .fitness-trining-content .fitness-time-kg div img {
  width: 14px;
  height: 14px;
}
.fitness-trining-list li .fitness-trining-content .fitness-time-kg div span {
  color: rgba(var(--title-color), 1);
  font-size: 13px;
  font-weight: 400;
}
.fitness-trining-list li .fitness-trining-content .fitness-time-kg div .icon {
  --Iconsax-Color: rgba(var(--theme-color), 1);
  --Iconsax-Size: 14px;
}
.fitness-trining-list li .task-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.fitness-trining-list li .task-content .icon {
  --Iconsax-Color: rgba(var(--theme-color), 1);
  --Iconsax-Size: 24px;
}
@media (max-width: 600px) {
  .fitness-trining-list li .task-content .icon {
    --Iconsax-Size: calc(19px + (24 - 19) * ((100vw - 320px) / (600 - 320)));
  }
}

.fitness-banner-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.fitness-banner-wrapper img {
  width: 276px;
  border-radius: 8px;
}

.fitness-setting-box {
  background-color: rgba(var(--bg-color), 1);
  border: 1px solid rgba(var(--white), 0.07);
  border-radius: 12px;
  padding: 14px 16px;
}
.fitness-setting-box h4 {
  font-size: 18px;
  font-weight: 500;
  color: rgba(var(--theme-color), 1);
}
.fitness-setting-box ul {
  margin-top: 15px;
}
.fitness-setting-box ul li {
  width: 100%;
}
.fitness-setting-box ul li + li {
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px dashed rgba(var(--white), 0.17);
}
.fitness-setting-box ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fitness-setting-box ul li a h5 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.fitness-setting-box ul li a .arrow-icon {
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 20px;
}

.fitness-history-list {
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  overflow-x: auto;
  scrollbar-width: none;
}
.fitness-history-list li {
  width: 42px;
  height: 42px;
  background-color: rgba(var(--bg-color), 1);
  border-radius: 12px;
  border: 1px solid rgba(var(--white), 0.07);
  padding: 8px 10px;
  color: rgba(var(--content-color), 1);
  font-size: 18px;
  font-weight: 500;
}
.fitness-history-list .active {
  background-color: rgba(var(--theme-color), 1);
  border: transparent;
  color: rgba(var(--body-color), 1);
}

.workout-wrapper {
  display: flex;
  gap: 18px;
}
.workout-wrapper .workout-box {
  width: 100%;
  background-color: rgba(var(--bg-color), 1);
  border: 1px solid rgba(var(--white), 0.07);
  padding: 10px;
  border-radius: 12px;
}
@media (max-width: 600px) {
  .workout-wrapper .workout-box {
    padding: calc(8px + 2 * (100vw - 320px) / 280);
  }
}
.workout-wrapper .workout-box .workout-content {
  display: flex;
  align-items: center;
  gap: 10px;
}
.workout-wrapper .workout-box .workout-content .svg-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(var(--body-color), 1);
  border-radius: 6px;
}
.workout-wrapper .workout-box .workout-content .svg-image img {
  width: 24px;
}
.workout-wrapper .workout-box .workout-content .work-title {
  width: calc(100% - 40px - 10px);
}
.workout-wrapper .workout-box .workout-content h5 {
  font-size: 15px;
  font-weight: 500;
  color: rgba(var(--white), 1);
}
.workout-wrapper .workout-box h4 {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .workout-wrapper .workout-box h4 {
    margin-top: calc(4px + 6 * (100vw - 320px) / 280);
    font-size: calc(16px + 4 * (100vw - 320px) / 280);
  }
}

.chart-card-box {
  width: 100%;
  background-color: rgba(var(--bg-color), 1);
  border: 1px solid rgba(var(--white), 0.07);
  padding: 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chart-card-box .chart-card-content .workout-content {
  display: flex;
  align-items: center;
  gap: 10px;
}
.chart-card-box .chart-card-content .workout-content .svg-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(var(--body-color), 1);
  border-radius: 6px;
}
.chart-card-box .chart-card-content .workout-content .svg-image img {
  width: 24px;
}
.chart-card-box .chart-card-content .workout-content .svg-image h5 {
  font-size: 15px;
  font-weight: 500;
  color: rgba(var(--white), 1);
}
.chart-card-box .chart-card-content h4 {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.chart-card-box .apexcharts-canvas {
  margin-top: -45px;
}

/* =================
Notification CSS
==================*/
.fitness-notification-list {
  max-width: 600px;
}
.fitness-notification-list li {
  background-color: rgba(var(--bg-color), 1);
  border: 1px solid rgba(var(--white), 0.07);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  gap: 16px;
}
@media (max-width: 600px) {
  .fitness-notification-list li {
    padding: calc(12px + 4 * (100vw - 320px) / 280);
  }
  .fitness-notification-list li + li {
    margin-top: calc(12px + 4 * (100vw - 320px) / 280);
  }
}
.fitness-notification-list li + li {
  margin-top: 16px;
}
.fitness-notification-list li .notification-icon {
  font-size: 26px;
}
@media (max-width: 600px) {
  .fitness-notification-list li .notification-icon {
    font-size: calc(26px + -6 * (100vw - 320px) / 280);
  }
}
.fitness-notification-list li .notification-content {
  width: 100%;
}
.fitness-notification-list li .notification-content h4 {
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 600px) {
  .fitness-notification-list li .notification-content h4 {
    font-size: calc(16px + 2 * (100vw - 320px) / 280);
  }
}
.fitness-notification-list li .notification-content p {
  font-size: 15px;
  color: rgba(var(--content-color), 1);
  margin-block: 4px 10px;
  font-weight: 400;
}
@media (max-width: 600px) {
  .fitness-notification-list li .notification-content p {
    margin-block: calc(2px + 2 * (100vw - 320px) / 280) calc(8px + 2 * (100vw - 320px) / 280);
    font-size: calc(13px + 2 * (100vw - 320px) / 280);
  }
}
.fitness-notification-list li .notification-content span {
  font-size: 14px;
  color: rgba(var(--theme-color), 1);
}

.customer-review-wrapper li {
  padding: 12px;
  background-color: rgba(var(--bg-color), 1);
  border-radius: 12px;
}
.customer-review-wrapper li + li {
  margin-top: 15px;
}
.customer-review-wrapper li .customer-review-content {
  display: flex;
  align-items: center;
  gap: 14px;
}
.customer-review-wrapper li .customer-review-content img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
}
.customer-review-wrapper li .customer-review-content .customer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.customer-review-wrapper li .customer-review-content .customer-content img {
  width: 10px;
  height: 10px;
}
.customer-review-wrapper li .customer-review-content .customer-content h4 {
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
  margin-bottom: 3px;
}
.customer-review-wrapper li .customer-review-content .customer-content span {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--title-color), 0.87);
}
.customer-review-wrapper li p {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .customer-review-wrapper li p {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    margin-top: calc(6px + 2 * (100vw - 320px) / 280);
  }
}

.fitness-feedback-wrapper .feedback-profile-content {
  margin-top: 44px;
  text-align: center;
}
@media (max-width: 600px) {
  .fitness-feedback-wrapper .feedback-profile-content {
    margin-top: calc(10px + 34 * (100vw - 320px) / 280);
  }
}
.fitness-feedback-wrapper .feedback-profile-content img {
  width: 80px;
  height: 80px;
  border-radius: 100%;
}
.fitness-feedback-wrapper .feedback-profile-content h5 {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.fitness-feedback-wrapper .feedback-profile-content h6 {
  margin-top: 2px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.fitness-feedback-wrapper .emoji-feedback {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 20px;
}
.fitness-feedback-wrapper .emoji-feedback input[type=radio] {
  display: none;
}
.fitness-feedback-wrapper .emoji-feedback label.emoji {
  font-size: 32px;
  cursor: pointer;
  opacity: 0.5;
  transition: transform 0.3s, opacity 0.3s;
}
@media (max-width: 600px) {
  .fitness-feedback-wrapper .emoji-feedback label.emoji {
    font-size: calc(26px + 6 * (100vw - 320px) / 280);
  }
}
.fitness-feedback-wrapper .emoji-feedback input[type=radio]:checked + label.emoji {
  transform: scale(1.6);
  opacity: 1;
}
.fitness-feedback-wrapper .feedback-box {
  background-color: rgba(var(--white), 0.07);
  border-radius: 8px;
  padding: 20px;
}
.fitness-feedback-wrapper .feedback-box h5 {
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
  text-align: center;
}
.fitness-feedback-wrapper .feedback-box .feedback-option {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.fitness-feedback-wrapper .feedback-box .feedback-option input[type=radio] {
  display: none;
}
.fitness-feedback-wrapper .feedback-box .feedback-option label.option {
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--white), 0.17);
  background-color: rgba(var(--body-color), 1);
  opacity: 1;
  cursor: pointer;
  padding: 3px 20px 6px;
  border-radius: 50px;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 600px) {
  .fitness-feedback-wrapper .feedback-box .feedback-option label.option {
    padding-inline: calc(12px + 8 * (100vw - 320px) / 280);
  }
}
.fitness-feedback-wrapper .feedback-box .feedback-option input[type=radio]:checked + label.option {
  opacity: 1;
  background-color: rgba(var(--theme-color), 1);
  border: 1px solid rgba(var(--theme-color), 1);
  color: rgba(var(--black), 1);
}
.fitness-feedback-wrapper p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  margin-top: 20px;
  text-align: center;
}

/* =======================
5.12 Furniture CSS
===========================*/
.furniture {
  background-color: rgba(var(--white), 1);
}
.furniture.dark-mode {
  background-color: rgb(32, 32, 32);
}

.furniture-banner-img img {
  border-radius: 6px;
}

.category-selection-box {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 400px) {
  .category-selection-box {
    grid-template-columns: repeat(3, 1fr);
    gap: calc(15px + 9 * (100vw - 320px) / 280);
  }
}
.category-selection-box li {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.category-selection-box li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 66px;
  background-color: rgba(var(--bg-color), 1);
  border-radius: 11px;
  margin-bottom: 4px;
}
body.dark-mode .category-selection-box li a img {
  filter: brightness(0) invert(1);
}

.product-card-slide .product-trend-image img {
  width: 100%;
  height: 160px;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}

.furniture-cart-list {
  margin-top: 15px;
}
@media (max-width: 600px) {
  .furniture-cart-list {
    margin-top: calc(10px + 5 * (100vw - 320px) / 280);
  }
}
.furniture-cart-list li {
  background-color: rgba(var(--bg-color), 1);
  border-radius: 8px;
  padding: 12px 10px;
  display: flex;
  gap: 10px;
}
@media (max-width: 600px) {
  .furniture-cart-list li {
    padding: calc(8px + 4 * (100vw - 320px) / 280) calc(6px + 4 * (100vw - 320px) / 280);
  }
}
.furniture-cart-list li + li {
  margin-top: 20px;
}
@media (max-width: 600px) {
  .furniture-cart-list li + li {
    margin-top: calc(15px + 5 * (100vw - 320px) / 280);
  }
}
.furniture-cart-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: rgba(var(--white), 1);
  border-radius: 8px;
}
@media (max-width: 600px) {
  .furniture-cart-list li a {
    width: calc(60px + 10 * (100vw - 320px) / 280);
    height: calc(60px + 10 * (100vw - 320px) / 280);
  }
}
.furniture-cart-list li .cart-details {
  width: calc(100% - 70px - 10px);
}
@media (max-width: 600px) {
  .furniture-cart-list li .cart-details {
    width: calc(100% - (60px + 10 * (100vw - 320px) / 280) - 10px);
  }
}
.furniture-cart-list li .cart-details .cart-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.furniture-cart-list li .cart-details .cart-content .star-rate {
  display: flex;
  gap: 3px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.furniture-cart-list li .cart-details .cart-content .star-rate img {
  width: 14px;
  height: 14px;
}
.furniture-cart-list li .cart-details .cart-content h4 {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .furniture-cart-list li .cart-details .cart-content h4 {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
  }
}
.furniture-cart-list li .cart-details .cart-content h5 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.furniture-cart-list li .cart-details .cart-content .close-icon {
  cursor: pointer;
  transform: rotate(45deg);
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 18px;
}
.furniture-cart-list li .cart-details .cart-count-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5px;
}
@media (max-width: 600px) {
  .furniture-cart-list li .cart-details .cart-count-price {
    margin-top: calc(2px + 3 * (100vw - 320px) / 280);
  }
}
.furniture-cart-list li .cart-details .cart-count-price h6 {
  font-size: 15px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .furniture-cart-list li .cart-details .cart-count-price h6 {
    font-size: calc(14px + 1 * (100vw - 320px) / 280);
  }
}
.furniture-cart-list li .cart-details .cart-count-price h6 span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(var(--error-color), 1);
}
.furniture-cart-list li .cart-details .cart-count-price a {
  width: 28px;
  height: 28px;
  border-radius: 100%;
  background-color: rgba(var(--theme-color), 1);
}
.furniture-cart-list li .cart-details .cart-count-price a .bag-icon {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 18px;
}
body.dark-mode .furniture-cart-list li .cart-details .cart-count-price a .bag-icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
}
.furniture-cart-list li .cart-details .cart-count-price .plus-minus {
  display: inline-flex;
  align-items: center;
  text-align: center;
  padding: 4px;
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--title-color), 0.07);
  border-radius: 50px;
  margin: 0;
  box-shadow: 0 2px 4px 0 rgba(var(--black), 0.03);
}
.furniture-cart-list li .cart-details .cart-count-price .plus-minus .icon {
  --Iconsax-Size: 18px;
  --Iconsax-Color: rgba(var(--title-color), 1);
  background-color: rgba(var(--bg-color), 1);
  padding: 4px;
  border-radius: 100%;
}
.furniture-cart-list li .cart-details .cart-count-price .plus-minus .add {
  --Iconsax-Color: rgba(var(--white), 1);
  background-color: rgba(var(--theme-color), 1);
}
body.dark-mode .furniture-cart-list li .cart-details .cart-count-price .plus-minus .add {
  --Iconsax-Color: rgba(var(--title-color), 1);
}
.furniture-cart-list li .cart-details .cart-count-price .plus-minus input {
  background-color: transparent;
  color: rgba(var(--content-color), 1);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

.cart-location-card {
  background-color: rgba(var(--theme-color), 0.1);
  border-radius: 8px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cart-location-card .map-icon {
  width: 41px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--white), 1);
  --Iconsax-Color: rgba(var(--theme-color), 1);
  --Iconsax-Size: 30px;
  border-radius: 6px;
  box-shadow: 0 2px 12px 0 rgba(var(--black), 0.04);
}
.cart-location-card .cart-location-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 41px - 10px);
}
.cart-location-card .cart-location-details h3 {
  margin-top: 7px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--theme-color), 1);
}
.cart-location-card .cart-location-details h6 {
  font-weight: 400;
  font-size: 13px;
  color: rgba(var(--title-color), 1);
}
.cart-location-card .cart-location-details h6 span {
  font-size: 14px;
  color: rgba(var(--theme-color), 1);
  font-weight: 600;
}
.cart-location-card .cart-location-details h5 {
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.cart-location-card .cart-location-details h4 {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.cart-location-card .cart-location-details a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(var(--theme-color), 1);
  text-decoration: underline;
}
.cart-location-card .detail {
  width: 100%;
}

.order-tracker-list {
  background-color: rgba(var(--bg-color), 1);
  border-radius: 10px;
  padding: 17px 15px;
}
.order-tracker-list li {
  width: 100%;
  display: flex;
  position: relative;
  align-items: center;
  gap: 12px;
  margin-left: 3px;
}
.order-tracker-list li + li {
  margin-top: 35px;
}
.order-tracker-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  border-right: 1px dashed rgba(var(--content-color), 1);
  height: 50px;
  top: 32px;
  left: 7px;
}
[dir=rtl] .order-tracker-list li:not(:last-child)::after {
  right: 7px;
  left: unset;
}
.order-tracker-list li .bg-lighter-primary {
  z-index: 1;
  border-radius: 50px;
  width: 15px;
  height: 15px;
  outline: 5px solid rgba(var(--content-color), 0.3);
  border: 1px solid rgba(var(--white), 1);
  background-color: rgba(var(--content-color), 1);
}
.order-tracker-list li .order-contant {
  width: calc(100% - 10px - 15px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.order-tracker-list li .order-contant h5 {
  color: rgba(var(--title-color), 1);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 3px;
}
.order-tracker-list li .order-contant span {
  color: rgba(var(--content-color), 1);
  font-size: 12px;
  font-weight: 400;
}
.order-tracker-list li h6 {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
.order-tracker-list li.active .bg-lighter-primary {
  background-color: rgba(var(--theme-color), 1);
  outline: 4px solid rgba(var(--theme-color), 0.3);
}
.order-tracker-list li.active::after {
  border-right: 1px dashed rgba(var(--theme-color), 1);
}
.order-tracker-list li.active h5 {
  color: rgba(var(--theme-color), 1);
}
.order-tracker-list li.active h6 {
  color: rgba(var(--theme-color), 1);
}

.tags-list {
  margin-top: 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.tags-list li {
  margin-bottom: 8px;
}
.tags-list li a {
  border-radius: 6px;
  background-color: rgba(var(--bg-color), 1);
  padding: 6px 18px;
  color: rgba(var(--content-color), 1);
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 600px) and (min-width: 420px) {
  .furniture-category-list {
    padding-bottom: 100px;
  }
}
.furniture-category-list li {
  width: 100%;
}
.furniture-category-list li + li {
  margin-top: 20px;
}
.furniture-category-list li a {
  background-color: rgba(var(--bg-color), 1);
  padding: 10px 18px 10px 10px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 600px) {
  .furniture-category-list li a {
    gap: calc(10px + 10 * (100vw - 320px) / 280);
    padding: calc(8px + 2 * (100vw - 320px) / 280);
    padding-right: calc(10px + 8 * (100vw - 320px) / 280);
  }
}
.furniture-category-list li a .category-img {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--white), 1);
  border-radius: 11px;
}
body.dark-mode .furniture-category-list li a .category-img img {
  filter: brightness(0) invert(1);
}
@media (max-width: 600px) {
  .furniture-category-list li a .category-img {
    width: calc(50px + 10 * (100vw - 320px) / 280);
    height: calc(50px + 10 * (100vw - 320px) / 280);
  }
}
.furniture-category-list li a .category-main-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 60px - 20px);
}
@media (max-width: 600px) {
  .furniture-category-list li a .category-main-content {
    width: calc(100% - (50px + 10 * (100vw - 320px) / 280) - (10px + 10 * (100vw - 320px) / 280));
  }
}
.furniture-category-list li a .category-main-content h4 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .furniture-category-list li a .category-main-content h4 {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.furniture-category-list li a .category-main-content h5 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  margin-top: 3px;
}
@media (max-width: 600px) {
  .furniture-category-list li a .category-main-content h5 {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
  }
}
.furniture-category-list li a .category-main-content img {
  width: 28px;
}

.shipping-address-option li {
  width: 100%;
  border: 1px solid rgba(var(--content-color), 0.07);
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(var(--black), 0.04);
  background-color: rgba(var(--white), 1);
  display: flex;
  gap: 13px;
  align-items: flex-start;
  transition: border 0.3s, box-shadow 0.3s;
  position: relative;
}
.shipping-address-option li:has(.radio-circle:checked) {
  border: 1px solid rgba(var(--theme-color), 1);
  box-shadow: none;
}
.shipping-address-option li:has(.radio-circle:checked) h4 {
  color: rgba(var(--theme-color), 1);
}
.shipping-address-option li:has(.radio-circle:checked) .radio-label::before {
  border-color: rgba(var(--theme-color), 1);
}
.shipping-address-option li:has(.radio-circle:checked) .radio-label::after {
  background-color: rgba(var(--theme-color), 1);
  opacity: 1;
  transform: scale(1);
}
.shipping-address-option li + li {
  margin-top: 20px;
}
.shipping-address-option li .radio-circle {
  display: none;
}
.shipping-address-option li .radio-label {
  position: relative;
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 4px;
  cursor: pointer;
}
.shipping-address-option li .radio-label::before {
  position: relative;
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(var(--content-color), 0.4);
  display: block;
}
.shipping-address-option li .radio-label::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(var(--theme-color), 1);
  position: absolute;
  top: 4px;
  left: 4px;
  transform: scale(0);
  opacity: 0;
  transition: all 0.3s ease;
}
.shipping-address-option li .shipping-info {
  width: 100%;
}
.shipping-address-option li .shipping-info .shipping-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.shipping-address-option li .shipping-info .shipping-main h4 {
  font-size: 14px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.shipping-address-option li .shipping-info .shipping-main .add-button {
  display: flex;
  align-items: center;
  gap: 12px;
}
.shipping-address-option li .shipping-info .shipping-main .add-button .box-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(var(--white), 1);
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(var(--black), 0.04);
  padding: 3px;
  border: 1px solid rgba(var(--content-color), 0.08);
}
.shipping-address-option li .shipping-info .shipping-main .add-button .box-icon .icon {
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 18px;
}
.shipping-address-option li .shipping-info .shipping-main .add-button .box-icon .del-icon {
  --Iconsax-Color: rgba(var(--error-color), 1);
}
.shipping-address-option li .shipping-info h5 {
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.shipping-address-option li .shipping-info h6 {
  margin-top: 3px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.shipping-address-option li .shipping-info h6 span {
  color: rgba(var(--content-color), 1);
}

.new-address {
  width: 100%;
  padding-block: 12px;
  background-color: rgba(var(--theme-color), 0.2);
  border-radius: 10px;
  color: rgba(var(--theme-color), 1);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  margin-top: 25px;
  display: block;
}

.account-payment-option {
  margin-top: 12px;
}
.account-payment-option li {
  width: 100%;
}
body.dark-mode .account-payment-option li:nth-child(2) img {
  filter: brightness(0) invert(1);
}
.account-payment-option li + li {
  margin-top: 15px;
}
.account-payment-option li label.payment-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 10px;
  padding: 15px;
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--content-color), 0.07);
  box-shadow: 0 2px 6px rgba(var(--black), 0.04);
  cursor: pointer;
}
@media (max-width: 600px) {
  .account-payment-option li label.payment-box {
    padding: calc(10px + 5 * (100vw - 320px) / 280);
  }
}
.account-payment-option li .payment-info {
  display: flex;
  align-items: center;
  gap: 17px;
}
.account-payment-option li .payment-info img {
  width: 36px;
  height: 36px;
}
@media (max-width: 600px) {
  .account-payment-option li .payment-info img {
    width: calc(30px + 6 * (100vw - 320px) / 280);
    height: calc(30px + 6 * (100vw - 320px) / 280);
  }
}
body.dark-mode .account-payment-option li .payment-info img:nth-child(2) {
  filter: brightness(0) invert(1);
}
.account-payment-option li .payment-info .payment-titles {
  display: flex;
  flex-direction: column;
}
.account-payment-option li .payment-info .payment-titles .pay-title {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.account-payment-option li .payment-info .payment-titles span {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}

.add-card {
  font-size: 13px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
  text-decoration: underline;
  margin-top: 15px;
  display: flex;
  justify-content: flex-end;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(var(--black), 0.07);
}

.check-circle[type=radio] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 100%;
  border: 1px solid rgba(var(--content-color), 1);
  position: relative;
  transition: all 0.2s ease-in-out;
  flex-shrink: 0;
}
.check-circle[type=radio]::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: rgba(var(--theme-color), 1);
  border-radius: 100%;
  content: "";
  transition: all 0.2s ease-in-out;
}
.check-circle[type=radio]:checked {
  border-color: rgba(var(--theme-color), 1);
}
.check-circle[type=radio]:checked::before {
  transform: translate(-50%, -50%) scale(1);
}

.wallet-card {
  border: 1px solid rgba(var(--content-color), 0.07);
  border-radius: 10px;
  box-shadow: 0 2px 6px 0 rgba(var(--black), 0.04);
  padding: 15px;
}
body.dark-mode .wallet-card {
  border-color: rgba(var(--border-color), 0.1);
}
body.dark-mode .wallet-card li + li {
  border-top-color: rgba(var(--border-color), 0.1);
}
.wallet-card li + li {
  border-top: 1px dashed rgba(var(--black), 0.18);
  padding-top: 18px;
  margin-top: 18px;
}
@media (max-width: 600px) {
  .wallet-card li + li {
    padding-top: calc(10px + 8 * (100vw - 320px) / 280);
    margin-top: calc(10px + 8 * (100vw - 320px) / 280);
  }
}
.wallet-card li label.payment-box {
  box-shadow: none;
  border: none;
  border-radius: 0;
  padding: 0;
}

.product-slider-box {
  background-color: rgba(var(--bg-color), 1);
  height: 315px;
  padding: 12px 20px;
}
@media (max-width: 600px) {
  .product-slider-box {
    height: calc(280px + 35 * (100vw - 320px) / 280);
  }
}
.product-slider-box .color-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--white), 1);
  border-radius: 6px;
  box-shadow: 0 2px 6px 0 rgba(var(--black), 0.04);
  padding: 15px;
  gap: 20px;
  margin-top: 40px;
  max-width: 195px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 600px) {
  .product-slider-box .color-panel {
    margin-top: calc(5px + 35 * (100vw - 320px) / 280);
  }
}
.product-slider-box .color-panel li img {
  width: 20px;
  height: 20px;
  border-radius: 100%;
}
.product-slider-box .product-sofa-section {
  position: relative;
}
.product-slider-box .product-sofa-section .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
}
.product-slider-box .product-sofa-small {
  height: 235px;
}
.product-slider-box .product-sofa-small .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  width: 100%;
  margin-bottom: 19px !important;
}
@media (max-width: 600px) {
  .product-slider-box .product-sofa-small .swiper-slide {
    min-height: calc(45px + 21 * (100vw - 320px) / 280);
  }
}
.product-slider-box .product-sofa-small .swiper-slide img {
  padding: 5px;
  height: 48px;
}
@media (max-width: 600px) {
  .product-slider-box .product-sofa-small .swiper-slide img img {
    height: calc(40px + 8 * (100vw - 320px) / 280);
  }
}
.product-slider-box .product-sofa-small .swiper-slide-thumb-active {
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--theme-color), 1);
  border-radius: 8px;
}

.product-title {
  padding-top: 45px;
}
.product-title h3 {
  font-size: 18px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .product-title h3 {
    font-size: calc(16px + 2 * (100vw - 320px) / 280);
  }
}
.product-title h4 {
  margin-top: 3px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .product-title h4 {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
  }
}

.product-price-count {
  margin-top: 20px;
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.product-price-count span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 26px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .product-price-count span {
    font-size: calc(20px + 6 * (100vw - 320px) / 280);
  }
}
.product-price-count span del {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .product-price-count span del {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
  }
}
.product-price-count .plus-minus {
  display: inline-flex;
  align-items: center;
  text-align: center;
  padding: 4px 12px;
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--title-color), 0.07);
  border-radius: 8px;
  box-shadow: 0 2px 4px 0 rgba(var(--black), 0.03);
}
body.dark-mode .product-price-count .plus-minus {
  background-color: rgba(var(--light-bg), 1);
}
.product-price-count .plus-minus .icon {
  --Iconsax-Size: 16px;
  --Iconsax-Color: rgba(var(--title-color), 1);
  padding-inline: 5px;
}
.product-price-count .plus-minus input {
  background-color: transparent;
  color: rgba(var(--title-color), 1);
  border-right: 1px solid rgba(var(--content-color), 0.2);
  border-left: 1px solid rgba(var(--content-color), 0.2);
  font-size: 16px;
  font-weight: 400;
  outline: none;
  width: 40px;
  text-align: center;
}

.product-cm-box {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.product-cm-box li {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(var(--title-color), 0.07);
  border-radius: 8px;
  padding: 14px 0;
}
.product-cm-box li .icon {
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 24px;
}
.product-cm-box li .cm-icon {
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 24px;
  transform: rotate(90deg);
}
.product-cm-box li span {
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}

.product-details-list {
  margin-top: 20px;
}
@media (max-width: 600px) {
  .product-details-list {
    margin-top: calc(15px + 5 * (100vw - 320px) / 280);
  }
}
.product-details-list li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: start;
}
.product-details-list li + li {
  margin-top: 20px;
}
@media (max-width: 600px) {
  .product-details-list li + li {
    margin-top: calc(15px + 5 * (100vw - 320px) / 280);
  }
}
.product-details-list li h4 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .product-details-list li h4 {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.product-details-list li h5 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  margin-top: 4px;
}
.product-details-list li .width-content {
  min-width: 120px;
}

.product-review-list {
  margin-top: 29px;
}
.product-review-list p {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  line-height: 26px;
}
.product-review-list p a {
  text-decoration: underline;
}
.product-review-list .rating-review-content {
  display: flex;
  justify-content: space-around;
  margin-top: 13px;
  padding-block: 13px;
  border-top: 1px solid rgba(var(--content-color), 0.15);
  border-bottom: 1px solid rgba(var(--content-color), 0.15);
  position: relative;
}
@media (max-width: 374px) {
  .product-review-list .rating-review-content {
    flex-direction: column;
    gap: 10px;
  }
}
.product-review-list .rating-review-content .line-effect {
  border: 1px dashed rgba(var(--black), 0.07);
}
.product-review-list .rating-review-content .rating-review {
  text-align: center;
  padding-left: 40px;
}
@media (max-width: 600px) {
  .product-review-list .rating-review-content .rating-review {
    padding-left: calc(10px + 30 * (100vw - 320px) / 280);
  }
}
.product-review-list .rating-review-content .rating-review h4 {
  font-size: 16px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
.product-review-list .rating-review-content .rating-review .rating-star {
  display: flex;
  justify-content: center;
  gap: 5px;
}
.product-review-list .rating-review-content .rating-review .rating-star img {
  width: 13px;
  height: 13px;
}
.product-review-list .rating-review-content .rating-review h5 {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.product-review-list .rating-review-content .rating-review h6 {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.product-review-list .rating-review-content .review-range-contant li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.product-review-list .rating-review-content .review-range-contant li + li {
  margin-top: 8px;
}
@media (max-width: 600px) {
  .product-review-list .rating-review-content .review-range-contant li + li {
    margin-top: calc(5px + 3 * (100vw - 320px) / 280);
  }
}
.product-review-list .rating-review-content .review-range-contant li h4 {
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-size: 15px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
  width: 22px;
}
.product-review-list .rating-review-content .review-range-contant li h4 img {
  width: 13px;
  height: 13px;
}
.product-review-list .rating-review-content .review-range-contant li .progress {
  margin-top: 6px;
  height: 4px;
  border-radius: 50px;
  min-width: 121px;
  background-color: rgba(var(--content-color), 0.16);
}
@media (max-width: 374px) {
  .product-review-list .rating-review-content .review-range-contant li .progress {
    width: 100%;
  }
}
body.dark-mode .product-review-list .rating-review-content .review-range-contant li .progress {
  background-color: rgba(var(--content-color), 1);
}
.product-review-list .rating-review-content .review-range-contant li .progress .progress-bar {
  border-radius: 50px;
  background-color: rgba(var(--theme-color), 1);
}
.product-review-list .rating-review-content .review-range-contant li h5 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .product-review-list .rating-review-content .review-range-contant li h5 {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
  }
}
.product-review-list .rating-review-content .review-range-contant li:nth-child(1) .progress-bar {
  width: 121px;
}
.product-review-list .rating-review-content .review-range-contant li:nth-child(2) .progress-bar {
  width: 102px;
}
.product-review-list .rating-review-content .review-range-contant li:nth-child(3) .progress-bar {
  width: 54px;
}
.product-review-list .rating-review-content .review-range-contant li:nth-child(4) .progress-bar {
  width: 36px;
}
.product-review-list .rating-review-content .review-range-contant li:nth-child(5) .progress-bar {
  width: 20px;
}
.product-review-list .add-review {
  font-size: 13px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
  margin-top: 10px;
}
.product-review-list .review {
  font-size: 13px;
  font-weight: 500;
  color: rgba(var(--theme-color), 1);
  margin-top: 10px;
  text-decoration: underline;
}

.add-cart-button {
  width: 100%;
  background-color: rgba(var(--theme-color), 1);
  border-radius: 50px;
  padding: 13px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body.dark-mode .add-cart-button h5,
body.dark-mode .add-cart-button h6 {
  color: rgba(var(--title-color), 1);
}
body.dark-mode .add-cart-button .cart-icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
}
.add-cart-button h5 {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  font-weight: 600;
  color: rgba(var(--white), 1);
}
.add-cart-button h5 .cart-icon {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 18px;
}
.add-cart-button h6 {
  font-size: 18px;
  font-weight: 600;
  color: rgba(var(--white), 1);
  border-left: 1px solid rgba(var(--white), 0.12);
  padding-left: 20px;
}

.furniture-notification-page .page-title {
  font-size: 20px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
  margin-bottom: 18px;
}
.furniture-notification-page .furniture-alerts-wrapper li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background-color: rgba(var(--white), 1);
  padding: 14px 16px;
  border-radius: 8px;
  border-left: 2px solid rgba(var(--theme-color), 1);
  box-shadow: 1px 0 6px rgba(var(--black), 0.06);
}
@media (max-width: 600px) {
  .furniture-notification-page .furniture-alerts-wrapper li {
    padding: calc(12px + 2 * (100vw - 320px) / 280) calc(8px + 8 * (100vw - 320px) / 280);
  }
  .furniture-notification-page .furniture-alerts-wrapper li + li {
    margin-top: calc(15px + 5 * (100vw - 320px) / 280);
  }
}
.furniture-notification-page .furniture-alerts-wrapper li + li {
  margin-top: 20px;
}
.furniture-notification-page .furniture-alerts-wrapper li.unread {
  background-color: rgba(var(--theme-color), 0.04);
}
.furniture-notification-page .furniture-alerts-wrapper li .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: rgba(var(--theme-color), 0.1);
}
.furniture-notification-page .furniture-alerts-wrapper li .icon-box .icon {
  --Iconsax-Color: rgba(var(--theme-color), 1);
  --Iconsax-Size: 20px;
}
.furniture-notification-page .furniture-alerts-wrapper li .notification-content {
  width: calc(100% - 40px - 15px);
}
.furniture-notification-page .furniture-alerts-wrapper li .notification-content h5 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  font-size: 15px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .furniture-notification-page .furniture-alerts-wrapper li .notification-content h5 {
    font-size: calc(14px + 1 * (100vw - 320px) / 280);
  }
}
.furniture-notification-page .furniture-alerts-wrapper li .notification-content p {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  font-size: 13px;
  color: rgba(var(--content-color), 1);
  margin-top: 4px;
}
.furniture-notification-page .furniture-alerts-wrapper li .notification-content span {
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--theme-color), 1);
  margin-top: 8px;
  display: block;
}

.choose-language-wrapper {
  margin-top: 12px;
}
.choose-language-wrapper li {
  width: 100%;
}
.choose-language-wrapper li + li {
  margin-top: 15px;
}
.choose-language-wrapper li label.choose-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 10px;
  padding: 15px;
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--content-color), 0.07);
  box-shadow: 0 2px 6px rgba(var(--black), 0.04);
  cursor: pointer;
}
.choose-language-wrapper li .choose-info {
  display: flex;
  align-items: center;
  gap: 17px;
  width: 100%;
}
.choose-language-wrapper li .choose-info img {
  width: 25px;
  height: 25px;
}
.choose-language-wrapper li .choose-info .choose-language {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.choose-language-wrapper li .choose-info .choose-language .lang-title {
  font-size: 15px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.choose-language-wrapper li .choose-info .choose-language .lang-title span {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}

.product-team-condition-wrapper .condition-content h2 {
  font-size: 18px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.product-team-condition-wrapper .condition-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
  margin-top: 15px;
}
.product-team-condition-wrapper .condition-content p {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  line-height: 24px;
}

.currency-selector-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: rgba(var(--white), 1);
  box-shadow: 0px 2px 4px 0px rgba(var(--black), 0.03);
  border-radius: 8px;
  padding: 8px 17px;
  border-left: 3px solid rgba(var(--theme-color), 1);
  box-shadow: 1px 0px 6px rgba(var(--black), 0.08);
}
@media (max-width: 600px) {
  .currency-selector-list li {
    padding-inline: calc(10px + 7 * (100vw - 320px) / 280);
  }
  .currency-selector-list li + li {
    margin-top: calc(15px + 5 * (100vw - 320px) / 280);
  }
}
body.dark-mode .currency-selector-list li {
  background-color: rgba(var(--bg-color), 1);
}
.currency-selector-list li + li {
  margin-top: 20px;
}
.currency-selector-list li img {
  border-radius: 100%;
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
}
.currency-selector-list li .currency-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 12px - 40px);
}
.currency-selector-list li .currency-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.currency-selector-list li .currency-content h4 {
  margin-top: 3px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.currency-selector-list li .currency-content .add-icon {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
  border: 1px solid rgba(var(--content-color), 0.17);
  border-radius: 100%;
  padding-right: 1px;
}

.user-settings-panel {
  border: 1px solid rgba(var(--content-color), 0.1);
  border-radius: 12px;
  padding-block: 15px;
  margin-top: 20px;
  box-shadow: 1px 2px 3px rgba(var(--black), 0.03);
}
.user-settings-panel li {
  width: 100%;
  padding-inline: 15px;
}
.user-settings-panel li + li {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed rgba(var(--content-color), 0.2);
}
@media (max-width: 600px) {
  .user-settings-panel li + li {
    margin-top: calc(12px + 3 * (100vw - 320px) / 280);
    padding-top: calc(12px + 3 * (100vw - 320px) / 280);
  }
}
.user-settings-panel li .user-panel-box {
  display: flex;
  align-items: center;
  gap: 12px;
}
.user-settings-panel li .user-panel-box .icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-color: rgba(var(--content-color), 0.07);
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 18px;
}
.user-settings-panel li .user-panel-box .panel-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 12px - 30px);
}
.user-settings-panel li .user-panel-box .panel-content h5 {
  font-size: 14px;
  color: rgba(var(--title-color), 1);
  font-weight: 500;
}
.user-settings-panel li .user-panel-box .panel-content .back-icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
}
.user-settings-panel li.delete-account .icon {
  --Iconsax-Color: rgba(var(--white), 1);
  background-color: rgba(var(--error-color), 1);
}
body.dark-mode .user-settings-panel li.delete-account .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
}
.user-settings-panel li.delete-account .panel-content h5 {
  color: rgba(var(--error-color), 1);
}

.help-content {
  margin-top: 7px;
}
.help-content p {
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  line-height: 24px;
}

.help-details {
  border-top: 1px solid rgba(var(--content-color), 0.2);
  padding-top: 20px;
  margin-top: 20px;
}
.help-details li {
  color: rgba(var(--title-color), 1);
  font-size: 15px;
  font-weight: 500;
}
@media (max-width: 600px) {
  .help-details li {
    font-size: calc(14px + 1 * (100vw - 320px) / 280);
  }
}
.help-details li + li {
  margin-top: 20px;
}
.help-details li p {
  color: rgba(var(--content-color), 1);
  font-size: 13px;
  font-weight: 400;
  margin-top: 5px;
  line-height: 1.6;
}

.product-address-choose {
  padding-top: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.product-address-choose label {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
  display: flex;
  align-items: flex-start;
  gap: 5px;
}

.furniture-search {
  margin-top: 11px;
}
.furniture-search li + li {
  margin-top: 8px;
}

/* ===============
5.13 Jewellery CSS 
==================*/
.jewellery {
  background-color: rgba(var(--white), 1);
}
.jewellery.dark-mode {
  background-color: rgba(var(--body-color), 1);
}

.gold-category-list {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}
.gold-category-list::-webkit-scrollbar {
  width: 0;
}
.gold-category-list li a {
  border-radius: 4px;
  background-color: rgba(var(--bg-color), 1);
  padding: 10px 25px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
  display: block;
}
.gold-category-list li a:hover {
  background-color: rgba(var(--theme-color), 1);
  color: rgba(var(--white), 1);
}

.gold-banner img {
  border-radius: 8px;
}

.gold-offer-button {
  display: flex;
  align-items: center;
  gap: 11px;
}
.gold-offer-button li {
  width: 100%;
}
.gold-offer-button li a {
  display: block;
  height: 51px;
  background-color: rgba(var(--theme-color), 1);
  background-blend-mode: multiply;
  color: rgba(var(--white), 1);
  font-weight: 600;
  font-size: 18px;
  border-radius: 12px;
  text-align: center;
  line-height: 50px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media (max-width: 600px) {
  .gold-offer-button li a {
    height: calc(44px + 7 * (100vw - 320px) / 280);
    font-size: calc(14px + 4 * (100vw - 320px) / 280);
    line-height: calc(44px + 6 * (100vw - 320px) / 280);
  }
}
.gold-offer-button li a::before {
  content: "";
  position: absolute;
  background-image: url(1fa4263eae0ea9be7eaf.png);
  mix-blend-mode: color-burn;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.gold-offer-button li a.second {
  background-color: rgba(var(--secondary-color), 1);
}

.jewellery-popular-wrapper {
  margin-top: 10px;
}
.jewellery-popular-wrapper li {
  width: 100%;
  border: 1px solid rgba(var(--content-color), 0.23);
  border-radius: 10px;
  padding: 8px;
  display: flex;
  gap: 12px;
}
.jewellery-popular-wrapper li + li {
  margin-top: 20px;
}
.jewellery-popular-wrapper li .image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 99px;
  height: 73px;
  background-color: rgba(var(--bg-color), 1);
  border-radius: 8px;
}
@media (max-width: 600px) {
  .jewellery-popular-wrapper li .image {
    width: calc(85px + 14 * (100vw - 320px) / 280);
    height: calc(65px + 8 * (100vw - 320px) / 280);
  }
}
.jewellery-popular-wrapper li .image img {
  height: 66px;
  width: 51px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 600px) {
  .jewellery-popular-wrapper li .image img {
    width: calc(60px + 5 * (100vw - 320px) / 280);
    height: calc(45px + 6 * (100vw - 320px) / 280);
  }
}
.jewellery-popular-wrapper li .jewellery-most-content {
  width: 100%;
}
.jewellery-popular-wrapper li .jewellery-most-content a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.jewellery-popular-wrapper li .jewellery-most-content .rate {
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(var(--rate-color), 1);
}
.jewellery-popular-wrapper li .jewellery-most-content h4 {
  margin-top: 3px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.jewellery-popular-wrapper li .jewellery-most-content .gold-rate-price {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.jewellery-popular-wrapper li .jewellery-most-content .gold-rate-price span {
  font-size: 15px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .jewellery-popular-wrapper li .jewellery-most-content .gold-rate-price span {
    font-size: calc(14px + 1 * (100vw - 320px) / 280);
  }
}
.jewellery-popular-wrapper li .jewellery-most-content .gold-rate-price span del {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .jewellery-popular-wrapper li .jewellery-most-content .gold-rate-price span del {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
  }
}
.jewellery-popular-wrapper li .jewellery-most-content .gold-rate-price .plus {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: rgba(var(--theme-color), 1);
}
.jewellery-popular-wrapper li .jewellery-most-content .gold-rate-price .plus .icon {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 18px;
}
.jewellery-popular-wrapper li .plus-minus {
  display: inline-flex;
  align-items: center;
  text-align: center;
  padding: 3px 0;
  background-color: rgba(var(--bg-color), 1);
  border-radius: 50px;
  margin: 0;
  flex-direction: column;
  border: none;
}
.jewellery-popular-wrapper li .plus-minus .icon {
  --Iconsax-Size: 16px;
  --Iconsax-Color: rgba(var(--title-color), 1);
  background-color: rgba(var(--white), 1);
  padding: 3px;
  border-radius: 100%;
}
body.dark-mode .jewellery-popular-wrapper li .plus-minus .icon {
  background-color: rgba(var(--body-color), 1);
}
.jewellery-popular-wrapper li .plus-minus .add {
  --Iconsax-Color: rgba(var(--white), 1);
  background-color: rgba(var(--theme-color), 1) !important;
}
.jewellery-popular-wrapper li .plus-minus input {
  color: rgba(var(--content-color), 1);
  font-size: 13px;
  font-weight: 400;
  background-color: rgba(var(--bg-color), 1);
}

.gold-search li a .add-icon {
  --Iconsax-Size: 18px;
  --Iconsax-Color: rgba(var(--content-color), 1);
}
.gold-search li + li {
  margin-top: 16px;
}

.order-action-buttons {
  background-color: rgba(var(--white), 1);
  position: fixed;
  max-width: 600px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  bottom: 0;
}
body.dark-mode .order-action-buttons {
  background-color: rgba(var(--bg-color), 1);
}
body.dark-mode .order-action-buttons .track-btn {
  background-color: rgba(var(--body-color), 1);
}
.order-action-buttons h5 {
  font-size: 18px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
  padding-left: 24px;
  text-align: center;
  width: 100%;
}
@media (max-width: 600px) {
  .order-action-buttons h5 {
    font-size: calc(16px + 2 * (100vw - 320px) / 280);
  }
}
.order-action-buttons h5 span {
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.order-action-buttons .track-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 35px;
  border-top-left-radius: 40px;
  background-color: rgba(var(--secondary-color), 1);
  color: rgba(var(--white), 1);
  font-size: 16px;
  font-weight: 500;
  gap: 12px;
  text-align: center;
}
@media (max-width: 600px) {
  .order-action-buttons .track-btn {
    padding: calc(14px + 2 * (100vw - 320px) / 280) calc(15px + 20 * (100vw - 320px) / 280);
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.order-action-buttons .track-btn .pay-icon {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 24px;
}

.jewellery-payment-card {
  border: 1px solid rgba(var(--content-color), 0.23);
  border-radius: 10px;
  background-color: rgba(var(--white), 1);
}
body.dark-mode .jewellery-payment-card {
  background-color: transparent;
}

.new-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 15px;
  border-bottom: 1px solid rgba(var(--content-color), 0.3);
}
.new-card h5 {
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.new-card a {
  font-size: 12px;
  font-weight: 500;
  color: rgba(var(--theme-color), 1);
  text-decoration: underline;
}

.gold-checkout-list {
  padding-inline: 15px;
}
.gold-checkout-list li {
  width: 100%;
  padding-block: 15px 11px;
}
.gold-checkout-list li + li {
  border-top: 1px dashed rgba(var(--content-color), 0.16);
}
body.dark-mode .gold-checkout-list li:nth-child(2) img {
  filter: brightness(0) invert(1);
}
.gold-checkout-list li label.payment-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 17px;
  border-radius: 10px;
  cursor: pointer;
}
.gold-checkout-list li label.payment-box .payment-titles {
  width: calc(100% - 25px - 17px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gold-checkout-list li label.payment-box .payment-titles .pay-title {
  display: flex;
  flex-direction: column;
}
.gold-checkout-list li label.payment-box .payment-titles .pay-title .main {
  color: rgba(var(--title-color), 1);
  font-size: 14px;
  font-weight: 400;
}
.gold-checkout-list li label.payment-box .payment-titles .pay-title span {
  color: rgba(var(--content-color), 1);
  font-size: 13px;
}

.gold-payment {
  margin-top: 15px;
  padding: 0;
}
.gold-payment li {
  border: 1px solid rgba(var(--content-color), 0.16);
  border-radius: 10px;
  padding: 15px;
}
.gold-payment li + li {
  border: 1px solid rgba(var(--content-color), 0.16);
  margin-top: 15px;
}
.gold-payment li .payment-info img {
  width: 35px;
  height: 30px;
}

.jewellery-address-list li {
  width: 100%;
  position: relative;
}
.jewellery-address-list li input[type=radio] {
  display: none;
}
.jewellery-address-list li .jewellery-label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 1;
}
.jewellery-address-list li .jewellery-address-wrapper {
  position: relative;
  z-index: 2;
  border: 0.5px solid rgba(var(--content-color), 0.2);
  border-radius: 10px;
  padding: 15px;
}
@media (max-width: 600px) {
  .jewellery-address-list li .jewellery-address-wrapper {
    padding: calc(12px + 3 * (100vw - 320px) / 280);
  }
}
.jewellery-address-list li:has(input:checked) .jewellery-address-wrapper {
  background-color: #fef3ea;
  border: 0.5px solid rgba(var(--theme-color), 0.54);
  border-radius: 5px;
}
body.dark-mode .jewellery-address-list li:has(input:checked) .jewellery-address-wrapper {
  background-color: rgba(var(--bg-color), 0.43);
}
.jewellery-address-list li + li {
  margin-top: 16px;
}
@media (max-width: 600px) {
  .jewellery-address-list li + li {
    margin-top: calc(12px + 4 * (100vw - 320px) / 280);
  }
}
.jewellery-address-list li .jewellery-address-content {
  display: flex;
  align-items: center;
  gap: 9px;
}
.jewellery-address-list li .jewellery-address-content .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: rgba(var(--theme-color), 1);
  border-radius: 4px;
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 18px;
}
.jewellery-address-list li .jewellery-address-content .dot-icon {
  --Iconsax-Size: 18px;
  --Iconsax-Color: rgba(var(--title-color), 1);
  transform: rotate(90deg);
}
.jewellery-address-list li .jewellery-address-content h3 {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.jewellery-address-list li .jewellery-address-content .dropdown button {
  background-color: transparent;
  border: none;
}
.jewellery-address-list li .jewellery-address-content .dropdown button:hover {
  background-color: transparent;
}
.jewellery-address-list li .jewellery-address-content .dropdown .dropdown-menu {
  min-width: 60px;
  transform: translate(-6px, 20px) !important;
  border: 1px solid rgba(var(--content-color), 0.16);
}
body.dark-mode .jewellery-address-list li .jewellery-address-content .dropdown .dropdown-menu {
  background-color: rgba(var(--bg-color), 1);
}
body.dark-mode .jewellery-address-list li .jewellery-address-content .dropdown .dropdown-menu .dropdown-item {
  color: rgba(var(--white), 1);
}
.jewellery-address-list li .jewellery-address-content .dropdown .dropdown-menu li + li {
  margin-top: 2px;
  padding-top: 5px;
  border-top: 1px solid rgba(var(--content-color), 0.16);
}
.jewellery-address-list li .jewellery-address-content .dropdown .dropdown-menu a {
  padding-block: 5px 8px;
  background-color: transparent;
}
.jewellery-address-list li .jewellery-address-content .dropdown .dropdown-menu a:active, .jewellery-address-list li .jewellery-address-content .dropdown .dropdown-menu a:hover {
  color: rgba(var(--title-color), 1);
  background-color: transparent;
}
.jewellery-address-list li .content {
  margin-top: 8px;
}
.jewellery-address-list li .content h4 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.jewellery-address-list li .content h5 {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  gap: 2px;
}
.jewellery-address-list li .content h6 {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}

.jewellery-delivery-box {
  background-color: rgba(var(--theme-color), 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 15px;
}
.jewellery-delivery-box img {
  width: 41px;
  height: 41px;
  border-radius: 8px;
  border: 1px solid rgba(var(--white), 1);
}
.jewellery-delivery-box .jewellery-delivery-content {
  width: calc(100% - 11px - 41px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.jewellery-delivery-box .jewellery-delivery-content h4 {
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.jewellery-delivery-box .jewellery-delivery-content h5 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
  margin-top: 2px;
}
.jewellery-delivery-box .jewellery-delivery-content a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--theme-color), 1);
  text-decoration: underline;
}

.jewellery-coupon-box h4 {
  font-weight: 600;
}
.jewellery-coupon-box h5 {
  margin-top: 2px;
}
.jewellery-coupon-box h6 {
  position: relative;
  border: 1px dashed rgba(var(--white));
  padding: 8px 24px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
}
@media (max-width: 600px) {
  .jewellery-coupon-box h6 {
    padding: calc(6px + 2 * (100vw - 320px) / 280) calc(8px + 16 * (100vw - 320px) / 280);
  }
}
.jewellery-coupon-box .cut {
  position: absolute;
  top: -4px;
  right: 12px;
}

.bill-title {
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}

.gold-bill-list {
  padding-top: 12px;
}
.gold-bill-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.gold-bill-list li + li {
  margin-top: 10px;
}
.gold-bill-list li span {
  color: rgba(var(--success-color), 1);
}
.gold-bill-list li .apply {
  color: rgba(var(--error-color), 1);
}

.gold-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(var(--content-color), 0.16);
  padding-top: 14px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
}
.gold-total span {
  font-size: 16px;
  font-weight: 700;
}

.gold-success-order {
  text-align: center;
}
.gold-success-order img {
  display: flex;
  margin-right: auto;
  margin-left: auto;
}
.gold-success-order h3 {
  font-size: 22px;
  font-weight: 600;
  color: rgba(var(--theme-color), 1);
}
@media (max-width: 600px) {
  .gold-success-order h3 {
    font-size: calc(18px + 4 * (100vw - 320px) / 280);
  }
}
.gold-success-order p {
  margin-top: 5px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .gold-success-order p {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}

.order-success-wrapper {
  padding-top: 12px;
}
.order-success-wrapper li {
  width: 100%;
}
.order-success-wrapper li + li {
  margin-top: 25px;
}
.order-success-wrapper li h4 {
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.order-success-wrapper li p {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}

.jewellery-language-list li input[type=radio] {
  display: none;
}
.jewellery-language-list li input[type=radio]:checked + label {
  border: 1px solid rgba(var(--theme-color), 1) !important;
}
.jewellery-language-list li .language-contant .language-name {
  font-weight: 500 !important;
}

.jewellery-slider {
  height: 260px;
}
body.dark-mode .jewellery-slider {
  background-color: rgba(var(--body-color), 1);
}

.jewellery-slide-detail {
  background-color: rgba(var(--white), 1);
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  height: calc(100vh - 195px);
  padding-inline: 20px;
}
@media (max-width: 374px) {
  .jewellery-slide-detail {
    height: calc(100vh - 70px);
  }
}
body.dark-mode .jewellery-slide-detail {
  background-color: rgba(var(--bg-color), 1);
}

.product-gold-section {
  position: relative;
}
.product-gold-section .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
}
.product-gold-section .swiper-wrapper .swiper-slide img {
  height: 175px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.product-gold-small .swiper-wrapper {
  justify-content: center;
  margin-top: 40px;
}
.product-gold-small .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  width: 100%;
  margin-bottom: 19px !important;
  max-width: 70px;
  background-color: rgba(var(--white), 1);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid transparent;
}
.product-gold-small .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
  border-color: rgba(var(--theme-color), 1) !important;
}
body.dark-mode .product-gold-small .swiper-wrapper .swiper-slide {
  border-color: rgba(var(--bg-color), 1);
  background-color: rgba(var(--body-color), 1);
}
.product-gold-small .swiper-wrapper .swiper-slide img {
  height: 50px;
  width: 40px;
}
.product-gold-small .swiper-wrapper .swiper-slide .img-1 {
  transform: rotate(90deg);
}
.product-gold-small .swiper-wrapper .swiper-slide .img-2 {
  transform: rotate(90deg) scale(1.8);
  left: 43px;
  position: absolute;
}
.product-gold-small .swiper-wrapper .swiper-slide .img-3 {
  transform: rotate(91deg) scale(1.8) translate(2px, 10px);
}
.product-gold-small .swiper-slide-thumb-active {
  border: 1px solid rgba(var(--theme-color), 1);
}

.gold-rate-list {
  border-top: 1px solid rgba(var(--content-color), 0.15);
  padding-top: 11px;
  margin-top: 24px;
}

.size-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}
.size-selector label {
  cursor: pointer;
}
.size-selector label input {
  display: none;
}
.size-selector label span {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 18px;
  border-radius: 50px;
  background-color: rgba(var(--bg-color), 1);
  color: rgba(var(--content-color), 1);
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
}
body.dark-mode .size-selector label span {
  background-color: rgba(var(--body-color), 1);
}
.size-selector input:checked + span {
  background-color: rgba(var(--theme-color), 1);
  color: rgba(var(--white), 1);
}

.gold-notification-list li {
  width: 100%;
  background-color: rgba(var(--theme-color), 0.03);
  padding: 12px 15px;
  border-radius: 12px;
  box-shadow: 1px 2px 4px rgba(var(--black), 0.06);
}
.gold-notification-list li + li {
  margin-top: 20px;
}
@media (max-width: 600px) {
  .gold-notification-list li + li {
    margin-top: calc(12px + 8 * (100vw - 320px) / 280);
  }
}
.gold-notification-list li .notify-main-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gold-notification-list li .notify-main-content .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 12px;
  background-color: rgba(var(--theme-color), 0.15);
  --Iconsax-Size: 24px;
  --Iconsax-Color: rgba(var(--theme-color), 1);
}
@media (max-width: 600px) {
  .gold-notification-list li .notify-main-content .icon {
    width: calc(30px + 5 * (100vw - 320px) / 280);
    height: calc(30px + 5 * (100vw - 320px) / 280);
    --Iconsax-Size: calc(20px + (24 - 20) * ((100vw - 320px) / (600 - 320)));
    border-radius: calc(8px + 4 * (100vw - 320px) / 280);
  }
}
.gold-notification-list li .notify-main-content h4 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .gold-notification-list li .notify-main-content h4 {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.gold-notification-list li .notify-main-content span {
  white-space: nowrap;
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.gold-notification-list li h6 {
  color: rgba(var(--theme-color), 1);
  font-size: 13px;
  font-weight: 500;
  margin-top: 18px;
}
@media (max-width: 600px) {
  .gold-notification-list li h6 {
    margin-top: calc(10px + 8 * (100vw - 320px) / 280);
  }
}
.gold-notification-list h5 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  margin-top: 12px;
  line-height: 22px;
}
@media (max-width: 600px) {
  .gold-notification-list h5 {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
    margin-top: calc(8px + 4 * (100vw - 320px) / 280);
  }
}

.jewellery-search {
  margin-top: 10px;
}
.jewellery-search li + li {
  margin-top: 16px;
}
.jewellery-search li a {
  font-weight: 400;
}

/* ===================
5.14 Salon SCSS 
======================*/
.salon {
  background-color: rgba(var(--white), 1);
}
.salon.dark-mode {
  background-color: rgba(var(--body-color), 1);
}

.hair-services-list {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 30px;
  overflow-x: auto;
  scrollbar-width: none;
  flex-wrap: nowrap;
}
@media (max-width: 600px) {
  .hair-services-list {
    gap: calc(12px + 18 * (100vw - 320px) / 280);
  }
}
.hair-services-list::-webkit-scrollbar {
  width: 0;
}
.hair-services-list li {
  min-width: 60px;
}
.hair-services-list li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.hair-services-list li a img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
}
@media (max-width: 600px) {
  .hair-services-list li a img {
    width: calc(50px + 10 * (100vw - 320px) / 280);
    height: calc(50px + 10 * (100vw - 320px) / 280);
  }
}
.hair-services-list li a span {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
  transition: all 0.2s ease-in-out;
}
.hair-services-list li a:hover span {
  color: rgba(var(--theme-color), 1);
  font-weight: 600;
}

.salon-slide {
  margin-top: 15px;
}
.salon-slide .swiper-wrapper .swiper-slide {
  border: 1px solid rgba(var(--content-color), 0.25);
  border-radius: 8px;
  padding: 5px 5px 7px 5px;
}
.salon-slide .swiper-wrapper .swiper-slide a img {
  position: relative;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  height: 100px;
}
.salon-slide .swiper-wrapper .swiper-slide .salon-detail {
  padding-top: 5px;
}
.salon-slide .swiper-wrapper .swiper-slide .salon-detail .main-titles {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.salon-slide .swiper-wrapper .swiper-slide .salon-detail .main-titles h3 {
  font-size: 14px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.salon-slide .swiper-wrapper .swiper-slide .salon-detail .main-titles p {
  margin-top: 3px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
.salon-slide .swiper-wrapper .swiper-slide .salon-detail .main-titles h4 {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(var(--rating), 1);
}
.salon-slide .swiper-wrapper .swiper-slide .salon-detail .main-titles h4 img {
  width: 10px;
  height: 10px;
}
.salon-slide .swiper-wrapper .swiper-slide .salon-detail .last-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 11px;
}
.salon-slide .swiper-wrapper .swiper-slide .salon-detail .last-content h5 {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(var(--theme-color), 1);
}
.salon-slide .swiper-wrapper .swiper-slide .salon-detail .last-content .book {
  background-color: rgba(var(--theme-color), 1);
  padding: 4px 14px;
  border-radius: 50px;
  color: rgba(var(--white), 1);
  font-size: 12px;
  font-weight: 700;
}
body.dark-mode .salon-slide .swiper-wrapper .swiper-slide .salon-detail .last-content .book {
  color: rgba(var(--title-color), 1);
}

.salon-rate-list {
  margin-top: 15px;
}
.salon-rate-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(var(--content-color), 0.25);
  border-radius: 9px;
  padding: 6px;
}
.salon-rate-list li + li {
  margin-top: 15px;
}
.salon-rate-list li img {
  width: 100%;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.salon-rate-list li .salon-list-content {
  position: relative;
  width: calc(100% - 7px - 98px);
}
.salon-rate-list li .salon-list-content .main-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.salon-rate-list li .salon-list-content .main-title a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.salon-rate-list li .salon-list-content .main-title p {
  font-size: 13px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
  margin-top: 2px;
}
.salon-rate-list li .salon-list-content .main-title .wishlist-btn {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
  border: none;
}
.salon-rate-list li .salon-list-content .main-title .wishlist-btn:hover {
  background-color: transparent !important;
}
[dir=rtl] .salon-rate-list li .salon-list-content .main-title .wishlist-btn {
  right: unset;
  left: 0;
}
.salon-rate-list li .salon-list-content .main-title .wishlist-btn .icli {
  color: rgba(var(--title-color), 1);
  font-size: 20px;
}
@media (max-width: 600px) {
  .salon-rate-list li .salon-list-content .main-title .wishlist-btn .icli {
    font-size: calc(16px + 4 * (100vw - 320px) / 280);
  }
}
.salon-rate-list li .salon-list-content .main-title .wishlist-btn .icbo {
  display: none;
}
.salon-rate-list li .salon-list-content .main-title .wishlist-btn.active .icli {
  display: none;
}
.salon-rate-list li .salon-list-content .main-title .wishlist-btn.active .icbo {
  display: flex;
  color: rgba(var(--error-color), 1);
  font-size: 20px;
}
@media (max-width: 600px) {
  .salon-rate-list li .salon-list-content .main-title .wishlist-btn.active .icbo {
    font-size: calc(16px + 4 * (100vw - 320px) / 280);
  }
}
.salon-rate-list li .salon-list-content .booking-content {
  margin-top: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .salon-rate-list li .salon-list-content .booking-content {
    margin-top: calc(6px + 5 * (100vw - 320px) / 280);
  }
}
.salon-rate-list li .salon-list-content .booking-content h5 {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(var(--theme-color), 1);
}
.salon-rate-list li .salon-list-content .booking-content h5 img {
  width: 15px;
  height: 15px;
}
.salon-rate-list li .salon-list-content .booking-content h6 {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-weight: 500;
  font-size: 12px;
  color: rgba(var(--rating), 1);
}
.salon-rate-list li .salon-list-content .booking-content h6 img {
  width: 10px;
  height: 10px;
}
.salon-rate-list li .salon-list-content .booking-content .book {
  color: rgba(var(--white), 1);
  background-color: rgba(var(--theme-color), 1);
  border-radius: 50px;
  font-weight: 700;
  font-size: 12px;
  padding: 4px 14px;
}
body.dark-mode .salon-rate-list li .salon-list-content .booking-content .book {
  color: rgba(var(--title-color), 1);
}

.salon-search {
  margin-top: 15px;
}
.salon-search li .close-icon {
  --Iconsax-Size: 20px;
}

.salon-payment-list {
  margin-top: 15px;
}
.salon-payment-list li {
  width: 100%;
}
body.dark-mode .salon-payment-list li:nth-child(2) img {
  filter: brightness(0) invert(1);
}
.salon-payment-list li + li {
  margin-top: 21px;
}
.salon-payment-list li .payment-card {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(var(--content-color), 0.25);
  border-radius: 50px;
  padding: 12px 22px;
  cursor: pointer;
}
@media (max-width: 600px) {
  .salon-payment-list li .payment-card {
    padding: calc(10px + 2 * (100vw - 320px) / 280) calc(12px + 10 * (100vw - 320px) / 280);
  }
}
.salon-payment-list li .payment-card img {
  width: 40px;
  height: 36px;
}
@media (max-width: 600px) {
  .salon-payment-list li .payment-card img {
    width: calc(40px + 5 * (100vw - 320px) / 280);
    height: calc(26px + 10 * (100vw - 320px) / 280);
  }
}
.salon-payment-list li .payment-card .payment-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 40px - 12px);
}
.salon-payment-list li .payment-card .payment-content span {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .salon-payment-list li .payment-card .payment-content span {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}

.salon-review-list {
  background-color: rgba(var(--content-color), 0.11);
  border-radius: 12px;
  padding: 15px;
}
.salon-review-list ul {
  padding-bottom: 20px;
}
.salon-review-list ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
.salon-review-list ul li + li {
  margin-top: 20px;
}
.salon-review-list ul li span {
  color: rgba(var(--title-color), 1);
}
.salon-review-list ul + ul {
  padding-block: 20px;
  border-block: 1px solid rgba(var(--content-color), 0.2);
}
.salon-review-list .total {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  color: rgba(var(--theme-color), 1);
}
.salon-review-list .total h5 {
  font-size: 16px;
  font-weight: 600;
}
.salon-review-list .total span {
  font-weight: 700;
}

.pay-success {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 600px;
  height: 100%;
}
.pay-success h3 {
  font-size: 28px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .pay-success h3 {
    font-size: calc(22px + 6 * (100vw - 320px) / 280);
  }
}
.pay-success p {
  margin-top: 5px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .pay-success p {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}

.message-option-list {
  display: flex;
  align-items: center;
  gap: 19px;
}
.message-option-list li {
  width: 100%;
}
.message-option-list li.active a {
  background-color: rgba(var(--theme-color), 1);
  color: rgba(var(--white), 1);
}
body.dark-mode .message-option-list li.active a {
  color: rgba(var(--title-color), 1);
}
.message-option-list li a {
  width: 100%;
  background-color: rgba(var(--content-color), 0.1);
  color: rgba(var(--title-color), 1);
  padding-block: 14px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 500;
  display: block;
  text-align: center;
}

.salon-chat {
  background-color: rgba(var(--content-color), 0.1);
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  padding-inline: 20px;
  height: calc(100vh - 80px);
}
.salon-chat .message-chat-box {
  background-color: rgb(243, 243, 243);
}
.dark-mode .salon-chat .message-chat-box {
  background-color: transparent;
}

.booking-summary {
  position: fixed;
  width: 100%;
  max-width: 600px;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(var(--white), 1);
  box-shadow: 0 -1px 8px 0 rgba(var(--black), 0.1);
  padding: 7px 20px;
}
@media (max-width: 600px) {
  .booking-summary {
    padding-inline: calc(14px + 6 * (100vw - 320px) / 280);
  }
}
.booking-summary h4 {
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.booking-summary h5 {
  font-size: 18px;
  font-weight: 600;
  color: rgba(var(--theme-color), 1);
  margin-top: 2px;
}
@media (max-width: 600px) {
  .booking-summary h5 {
    font-size: calc(14px + 4 * (100vw - 320px) / 280);
  }
}
.booking-summary .salon-btn {
  padding-inline: 32px;
}
@media (max-width: 600px) {
  .booking-summary .salon-btn {
    padding-inline: calc(20px + 12 * (100vw - 320px) / 280);
  }
}

.salon-shop-details-section {
  background-color: rgba(var(--white), 1);
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  position: relative;
  margin-top: -80px;
}
.salon-shop-details-section .salon-shop-title {
  padding-top: 16px;
}
.salon-shop-details-section .salon-shop-title h3 {
  font-size: 24px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .salon-shop-details-section .salon-shop-title h3 {
    font-size: calc(18px + 6 * (100vw - 320px) / 280);
  }
}
.salon-shop-details-section .salon-shop-title p {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.salon-shop-details-section .status-item {
  padding-block: 21px 19px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  -moz-column-gap: 32px;
       column-gap: 32px;
  row-gap: 19px;
  border-bottom: 1px solid rgba(var(--content-color), 0.2);
}
@media (max-width: 600px) {
  .salon-shop-details-section .status-item {
    padding-block: calc(14px + 7 * (100vw - 320px) / 280) calc(12px + 7 * (100vw - 320px) / 280);
    -moz-column-gap: calc(15px + 17 * (100vw - 320px) / 280);
         column-gap: calc(15px + 17 * (100vw - 320px) / 280);
    row-gap: calc(10px + 9 * (100vw - 320px) / 280);
  }
}
.salon-shop-details-section .status-item li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.salon-shop-details-section .status-item li img {
  width: 20opx;
  height: 20px;
}
.salon-shop-details-section .status-item li .icon {
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 20px;
}
.salon-shop-details-section .status-item li span {
  font-weight: 700;
}
.salon-shop-details-section .status-item li h5 {
  font-weight: 700;
  color: rgba(var(--theme-color), 1);
}
.salon-shop-details-section .status-item li p {
  font-size: 13px;
  font-weight: 700;
  color: rgba(var(--content-color), 1);
  margin: 0;
}
.salon-shop-details-section .sharing-option {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .salon-shop-details-section .sharing-option {
    margin-top: calc(15px + 7 * (100vw - 320px) / 280);
  }
}
.salon-shop-details-section .sharing-option li {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.salon-shop-details-section .sharing-option li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 100%;
  background-color: rgba(var(--theme-color), 0.1);
}
@media (max-width: 600px) {
  .salon-shop-details-section .sharing-option li a {
    width: calc(40px + 15 * (100vw - 320px) / 280);
    height: calc(40px + 15 * (100vw - 320px) / 280);
  }
}
.salon-shop-details-section .sharing-option li a img {
  width: 24px;
  height: 24px;
}
@media (max-width: 600px) {
  .salon-shop-details-section .sharing-option li a img {
    width: calc(20px + 4 * (100vw - 320px) / 280);
    height: calc(20px + 4 * (100vw - 320px) / 280);
  }
}
.salon-shop-details-section .opening-content {
  padding-top: 29px;
}
@media (max-width: 600px) {
  .salon-shop-details-section .opening-content {
    padding-top: calc(18px + 11 * (100vw - 320px) / 280);
  }
}
.salon-shop-details-section .opening-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
.salon-shop-details-section .opening-content .shop-open-time-content {
  padding-top: 15px;
  display: flex;
  align-items: center;
  gap: 25px;
}
@media (max-width: 600px) {
  .salon-shop-details-section .opening-content .shop-open-time-content {
    gap: calc(15px + 10 * (100vw - 320px) / 280);
    padding-top: calc(12px + 3 * (100vw - 320px) / 280);
  }
}
.salon-shop-details-section .opening-content .shop-open-time-content li {
  list-style-type: disc;
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  position: relative;
  padding-left: 15px;
}
.salon-shop-details-section .opening-content .shop-open-time-content li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: rgba(var(--theme-color), 1);
  border-radius: 100%;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.salon-shop-details-section .opening-content .shop-open-time-content li h5 {
  font-weight: 700;
  color: rgba(var(--title-color), 1);
  margin-top: 4px;
}

.calender-list {
  background-color: rgba(var(--content-color), 0.1);
  border-radius: 7px;
  padding: 12px 17px 15px 17px;
}
.calender-list .main-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.calender-list .main-title .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 24px;
}
.calender-list .main-title h4 {
  font-size: 14px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
.calender-list .calendar-day {
  margin-top: 13px;
}
.calender-list .calendar-day .weekly-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.calender-list .calendar-day .weekly-name li {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(var(--content-color), 1);
}
.calender-list .calendar-day .month-date {
  margin-top: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.calender-list .calendar-day .month-date li {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 34px;
  height: 34px;
  border-radius: 100%;
  font-size: 13px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
  transition: all 0.3s ease;
  cursor: pointer;
}
.calender-list .calendar-day .month-date li.active {
  background-color: rgba(var(--theme-color), 1);
  color: rgba(var(--white), 1);
}
body.dark-mode .calender-list .calendar-day .month-date li.active {
  color: rgba(var(--title-color), 1);
}

.salon-location-content {
  border: 1px solid rgba(var(--content-color), 0.26);
  border-radius: 9px;
  padding: 15px;
}
@media (max-width: 600px) {
  .salon-location-content {
    padding: calc(10px + 5 * (100vw - 320px) / 280);
  }
}
.salon-location-content .services-content {
  display: flex;
  align-items: center;
  gap: 9px;
}
.salon-location-content .services-content .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: rgba(var(--theme-color), 1);
  border-radius: 4px;
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 18px;
}
body.dark-mode .salon-location-content .services-content .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
}
.salon-location-content .services-content .menu-icon {
  transform: rotate(90deg);
  --Iconsax-Size: 18px;
  --Iconsax-Color: rgba(var(--title-color), 1);
}
.salon-location-content .services-content .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 9px - 28px);
}
.salon-location-content .services-content .content h5 {
  font-size: 14px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
.salon-location-content .dropdown-menu-end {
  min-width: 84px;
  padding: 0;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(var(--theme-color), 0.1);
  background-color: rgba(var(--content-color), 0.1);
  overflow: hidden;
}
.salon-location-content .dropdown-menu-end li {
  width: 100%;
  box-shadow: none;
  border: none;
  border-radius: 0;
  padding: 0;
}
.salon-location-content .dropdown-menu-end li + li {
  border-top: 1px solid rgba(var(--theme-color), 0.1);
  margin-top: 0;
}
.salon-location-content .dropdown-menu-end li .dropdown-item {
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.salon-location-content .dropdown-menu-end li .dropdown-item:hover {
  background-color: transparent;
}
.salon-location-content .detail {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.salon-location-content .detail h4 {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.salon-location-content .detail p {
  margin-top: 3px;
}
.salon-location-content .detail h6 {
  margin-top: 8px;
}

.salon-choose-image {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  overflow-x: auto;
  scrollbar-width: none;
  flex-wrap: nowrap;
}
.salon-choose-image::-webkit-scrollbar {
  width: 0;
}
.salon-choose-image li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  min-width: 102px;
  width: 100%;
}
.salon-choose-image li a {
  position: relative;
}
.salon-choose-image li a img {
  width: 100%;
  max-width: 102px;
  height: 88px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.salon-choose-image li a::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: rgba(var(--theme-color), 0.58);
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transform: scale(0);
}
.salon-choose-image li a .rating {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.salon-choose-image li a .rating img {
  width: 30px;
  height: 30px;
}
.salon-choose-image li a .rating h6 {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--white), 1);
}
body.dark-mode .salon-choose-image li a .rating h6 {
  color: rgba(var(--title-color), 1);
}
.salon-choose-image li a .rating h6 img {
  width: 10px;
  height: 10px;
}
.salon-choose-image li span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.salon-choose-image li:hover a::before {
  opacity: 1;
  transform: scale(1);
}
.salon-choose-image li:hover a .rating {
  opacity: 1;
}
.salon-choose-image li:hover span {
  transition: all 0.2s ease-in-out;
  color: rgba(var(--theme-color), 1);
}

.time-slot-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  width: 100%;
  margin-top: 14px;
}
.time-slot-group .time-slot {
  position: relative;
  min-width: 160px;
}
@media (max-width: 600px) {
  .time-slot-group .time-slot {
    min-width: calc(130px + 30 * (100vw - 320px) / 280);
  }
}
.time-slot-group .time-slot input {
  display: none;
}
.time-slot-group .time-slot label {
  text-align: center;
  padding: 10px 9px;
  border: 1px solid rgba(var(--content-color), 0.36);
  border-radius: 50px;
  background-color: rgba(var(--white), 1);
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
  transition: all 0.3s ease;
  width: 100%;
}
@media (max-width: 600px) {
  .time-slot-group .time-slot label {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
    padding: calc(8px + 2 * (100vw - 320px) / 280) calc(6px + 3 * (100vw - 320px) / 280);
  }
}
.time-slot-group input:checked + label {
  background-color: rgba(var(--theme-color), 1);
  color: rgba(var(--white), 1);
  border-color: transparent;
}
.dark-mode .time-slot-group input:checked + label {
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--theme-color), 1);
}

.salon-wishlist-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) {
  .salon-wishlist-page {
    gap: calc(10px + 10 * (100vw - 320px) / 280);
  }
}
@media (max-width: 350px) {
  .salon-wishlist-page {
    grid-template-columns: 1fr;
  }
}
.salon-wishlist-page .wishlist-box {
  background-color: rgba(var(--content-color), 0.07);
  border-radius: 40px;
  padding: 8px;
}
.salon-wishlist-page .wishlist-box .image-content {
  position: relative;
}
.salon-wishlist-page .wishlist-box .image-content img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
}
@media (max-width: 600px) {
  .salon-wishlist-page .wishlist-box .image-content img {
    height: calc(120px + 80 * (100vw - 320px) / 280);
  }
}
.salon-wishlist-page .wishlist-box .image-content .close-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10px;
  left: 9px;
  background-color: rgba(var(--white), 1);
  width: 25px;
  height: 25px;
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
  transform: rotate(45deg);
  border-radius: 100%;
  cursor: pointer;
}
.salon-wishlist-page .wishlist-box .wishlist-content {
  padding: 8px 8px 3px 8px;
}
.salon-wishlist-page .wishlist-box .wishlist-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .salon-wishlist-page .wishlist-box .wishlist-content h4 {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.salon-wishlist-page .wishlist-box .wishlist-content p {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .salon-wishlist-page .wishlist-box .wishlist-content p {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
  }
}
.salon-wishlist-page .wishlist-box .wishlist-content .cart-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
.salon-wishlist-page .wishlist-box .wishlist-content .cart-box h6 {
  font-size: 16px;
  font-weight: 800;
  color: rgba(var(--theme-color), 1);
}
.salon-wishlist-page .wishlist-box .wishlist-content .cart-box .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 20px;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background-color: rgba(var(--theme-color), 1);
}
body.dark-mode .salon-wishlist-page .wishlist-box .wishlist-content .cart-box .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
}

.modal.wishlist-modal .modal-content {
  padding-bottom: 0;
}
.modal.wishlist-modal .modal-content .modal-body {
  text-align: center;
}
.modal.wishlist-modal .modal-content .modal-body h3 {
  font-size: 18px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.modal.wishlist-modal .modal-content .modal-body p {
  margin-top: 3px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.modal.wishlist-modal .modal-content .modal-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(var(--content-color), 0.3);
  flex-wrap: nowrap;
  padding: 0;
}
.modal.wishlist-modal .modal-content .modal-footer button {
  width: 100%;
  border-radius: 0;
  border: none;
  font-size: 16px;
  background: transparent;
  margin: 0;
  padding-block: 10px;
}
.modal.wishlist-modal .modal-content .modal-footer button.cancel-btn {
  border-right: 1px solid rgba(var(--content-color), 0.3);
  color: rgba(var(--title-color), 1);
}
.modal.wishlist-modal .modal-content .modal-footer button.close-btn {
  color: rgba(var(--error-color), 1);
}

.filter-range-slide {
  margin-top: 27px;
}

.range-slider {
  width: 100%;
  margin: 0 auto;
  position: relative;
  margin-top: 24px;
}
.range-slider .range-input {
  -webkit-appearance: none;
  width: 100%;
}
.range-slider .range-input:focus {
  outline: none;
}
.range-slider .range-input::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  background: linear-gradient(90deg, #898970 var(--range-progress), #E9E9E9 var(--range-progress));
  border-radius: 1rem;
}
.range-slider .range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: 4px solid rgba(var(--theme-color), 1);
  border-radius: 100%;
  background: rgba(var(--white), 1);
  cursor: pointer;
  height: 15px;
  width: 15px;
  transform: translateY(calc(-50% + 4px));
}
.range-slider .range-tooltip {
  position: absolute;
  top: -18px;
}
.range-slider .range-tooltip span {
  position: absolute;
  text-align: center;
  display: block;
  line-height: 1;
  padding: 3px 5px;
  color: rgba(var(--white), 1);
  border-radius: 6px;
  background: rgba(var(--theme-color), 1);
  font-size: 12px;
  left: 50%;
  transform: translate(-50%, 0);
  font-weight: 600;
}
.range-slider .range-tooltip span:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-top-color: rgba(var(--theme-color), 1);
}

/* ==================
5.15 Movie SCSS
==================*/
.movie {
  background-color: rgba(var(--body-color), 1);
  z-index: 0;
}
.movie::before, .movie::after {
  content: "";
  position: absolute;
  width: 117px;
  height: 176px;
  filter: blur(145px);
  border-radius: 100%;
  z-index: -1;
  animation: floatGlow 6s ease-in-out infinite alternate;
}
.movie::before {
  top: 4px;
  right: 50px;
  background-color: #2c5cd8;
  animation-delay: 0s;
}
[dir=rtl] .movie::before {
  right: unset;
  left: 50px;
}
.movie::after {
  top: 4px;
  left: -17px;
  background-color: rgb(133, 41, 109);
  animation-delay: 2s;
}
[dir=rtl] .movie::after {
  left: unset;
  right: -17px;
}

.movie-banner-section img {
  width: 100%;
  height: 370px;
  -o-object-fit: cover;
     object-fit: cover;
}
.movie-banner-section .movie-banner-content {
  position: absolute;
  top: 16%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media (max-width: 375px) {
  .movie-banner-section .movie-banner-content {
    top: 14%;
  }
}
.movie-banner-section .movie-banner-content h2 {
  font-size: 20px;
  font-weight: 800;
  color: rgba(var(--white), 1);
}
@media (max-width: 600px) {
  .movie-banner-section .movie-banner-content h2 {
    font-size: calc(18px + 2 * (100vw - 320px) / 280);
  }
}
.movie-banner-section .movie-banner-content p {
  margin-top: 2px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--white), 1);
}
.movie-banner-section .movie-banner-content .banner-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 19px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(var(--white), 1);
  background: var(--button-color) padding-box, linear-gradient(92deg, rgba(255, 255, 255, 0.4) 6.08%, rgba(255, 255, 255, 0) 133.84%) border-box;
  border: 1.25px solid rgba(0, 0, 0, 0);
}

.movie-category-list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 13px;
  overflow-x: auto;
  scrollbar-width: none;
}
.movie-category-list::-webkit-scrollbar {
  width: 0;
}
.movie-category-list li a {
  width: 100%;
  display: block;
  background-color: rgba(var(--white), 0.06);
  border-radius: 6px;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
  border: 2px solid transparent;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .movie-category-list li a {
    padding-inline: calc(15px + 7 * (100vw - 320px) / 280);
  }
}
.movie-category-list li:hover a {
  background: linear-gradient(rgba(var(--dark-border), 1), rgba(var(--dark-border), 1)) padding-box, var(--theme-color) border-box;
  border: 2px solid transparent;
}

.watch-card-slider {
  margin-top: 15px;
}

.watch-box img {
  border-radius: 12px;
}
.watch-box .watch-card-contant {
  padding-top: 10px;
}
.watch-box .watch-card-contant .progress-bar {
  width: 100%;
  max-width: 160px;
  height: 4px;
  background-color: rgba(var(--white), 0.12);
  border-radius: 50px;
  position: relative;
}
.watch-box .watch-card-contant .progress-bar::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  max-width: 89px;
  border-radius: 50px;
  background-color: rgba(var(--border), 1);
  box-shadow: 0 0 10px 0 rgba(25, 161, 190, 0.5);
}
.watch-box .watch-card-contant h4 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--white), 1);
  margin-top: 13px;
}
.watch-box .watch-card-contant .price-rate {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.watch-box .watch-card-contant .price-rate h5 {
  margin-top: 2px;
  color: rgba(var(--content-color), 1);
  font-size: 13px;
  font-weight: 400;
}
.watch-box .watch-card-contant .price-rate h6 {
  color: rgba(var(--rating), 1);
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.popular-card-slider {
  margin-top: 15px;
}
.popular-card-slider .popular-box img {
  border-radius: 12px;
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.popular-card-slider .popular-box .popular-card-content {
  margin-top: 7px;
}
.popular-card-slider .popular-box .popular-card-content h4 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.popular-card-slider .popular-box .popular-card-content .price-rate {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 3px;
}
.popular-card-slider .popular-box .popular-card-content .price-rate h5 {
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.popular-card-slider .popular-box .popular-card-content .price-rate h6 {
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(var(--rating), 1);
}
.popular-card-slider .popular-box .popular-card-content .price-rate h6 img {
  width: 10px;
  height: 10px;
}

.movie-video-box img {
  width: 100%;
  height: 324px;
  -o-object-fit: cover;
     object-fit: cover;
}
.movie-video-box video {
  width: 100%;
  height: 100%;
  display: none;
}
.movie-video-box .custom-play-button {
  width: 34px;
  height: 34px;
  background-color: rgba(var(--white), 1);
  border-radius: 50%;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}
.movie-video-box .custom-play-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid rgba(var(--black), 1);
  border-radius: 5px;
}

.movie-detail-box {
  margin-top: 10px;
  padding-inline: 20px;
}
.movie-detail-box .movie-download-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.movie-detail-box .movie-download-title h3 {
  font-size: 20px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.movie-detail-box .movie-download-title .download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--white), 0.12);
  border: 1px solid rgba(var(--dark-border), 1);
  width: 40px;
  height: 40px;
  border-radius: 100%;
}
.movie-detail-box .movie-download-title .download-btn .icon {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 20px;
}
.movie-detail-box h4 {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.movie-detail-box h4 span {
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(var(--rating), 1);
}
.movie-detail-box ul {
  margin-top: 7px;
}
.movie-detail-box ul li {
  width: 100%;
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.movie-detail-box ul li + li {
  margin-top: 7px;
}
.movie-detail-box ul li span {
  color: rgba(var(--content-color), 1);
}
.movie-detail-box p {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  line-height: 20px;
}
.movie-detail-box p a {
  text-decoration: underline;
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--border), 1);
}

.movie-cast-list {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 357px) {
  .movie-cast-list {
    grid-template-columns: 1fr;
  }
}
.movie-cast-list li {
  background-color: rgba(var(--white), 0.06);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
[dir=rtl] .movie-cast-list li {
  gap: 19px;
}
.movie-cast-list li img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background: linear-gradient(rgba(var(--dark-border), 1), rgba(var(--dark-border), 1)) padding-box, var(--theme-color) border-box;
  border: 3px solid rgba(0, 0, 0, 0);
  margin-left: -10px;
}
.movie-cast-list h4 {
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.movie-cast-list h5 {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}

.movie-review-box {
  margin-top: 15px;
}
.movie-review-box p {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  line-height: 20px;
}
.movie-review-box .review-user-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.movie-review-box .review-user-content img {
  width: 45px;
  height: 45px;
}
.movie-review-box .review-user-content h4 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.movie-review-box .review-user-content h4 span {
  border-left: 1px solid rgba(var(--content-color), 1);
  padding-left: 7px;
  margin-left: 7px;
}
.movie-review-box .review-user-content .rating-star {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 5px;
}
.movie-review-box .review-user-content .rating-star img {
  width: 14px;
  height: 14px;
}
.movie-review-box .like-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.movie-review-box .like-box a {
  font-size: 12px;
  font-weight: 400;
  color: rgba(var(--border), 1);
  text-decoration: underline;
}
.movie-review-box .like-box ul {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}
.movie-review-box .like-box ul li {
  display: flex;
  align-items: baseline;
  gap: 7px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}

.movie-categories-page li {
  width: 100%;
}
.movie-categories-page li + li {
  margin-top: 20px;
}
@media (max-width: 600px) {
  .movie-categories-page li + li {
    margin-top: calc(15px + 5 * (100vw - 320px) / 280);
  }
}
.movie-categories-page li a {
  display: flex;
  align-items: center;
  gap: 19px;
  background-color: rgba(var(--white), 0.06);
  border-radius: 10px;
  padding: 9px 20px;
  border: 2px solid transparent;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 600px) {
  .movie-categories-page li a {
    padding: calc(6px + 3 * (100vw - 320px) / 280) calc(10px + 10 * (100vw - 320px) / 280);
    gap: calc(10px + 9 * (100vw - 320px) / 280);
  }
}
.movie-categories-page li a img {
  width: 60px;
  height: 40px;
  border-radius: 4px;
}
.movie-categories-page li a .poster-categories-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 19px - 55px);
}
.movie-categories-page li a .poster-categories-content h4 {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.movie-categories-page li a .poster-categories-content .arrow-icon {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 20px;
}
.movie-categories-page li:hover a {
  background: linear-gradient(rgba(var(--dark-border), 1), rgba(var(--dark-border), 1)) padding-box, var(--theme-color) border-box;
  border: 2px solid transparent;
}

.popular-slide {
  margin-top: 15px;
}
.popular-slide .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.popular-slide .swiper-pagination {
  position: relative;
  margin-top: 10px;
  inset: unset;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popular-slide .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(var(--white), 1);
}
.popular-slide .swiper-pagination .swiper-pagination-bullet-active {
  width: 30px;
  height: 8px;
  border-radius: 50px;
  background: var(--theme-color);
}

.movie-grid-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 500px) {
  .movie-grid-page {
    grid-template-columns: repeat(2, 1fr);
  }
}
.movie-grid-page .poster-box {
  position: relative;
}
.movie-grid-page .poster-box img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}
@media (max-width: 600px) {
  .movie-grid-page .poster-box img {
    height: calc(140px + 60 * (100vw - 320px) / 280);
  }
}
.movie-grid-page .poster-box .wishlist-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 100%;
  position: absolute;
  top: 10px;
  right: 10px;
  box-shadow: 0px 2px 4px rgba(var(--black), 0.04);
  background-color: rgba(var(--white), 1);
}
.movie-grid-page .poster-box .wishlist-btn.active, .movie-grid-page .poster-box .wishlist-btn:active, .movie-grid-page .poster-box .wishlist-btn:hover {
  border-color: transparent;
  background-color: rgba(var(--white), 1) !important;
}
.movie-grid-page .poster-box .wishlist-btn:not(.btn-check) + .btn:active {
  border-color: transparent;
  background-color: rgba(var(--white), 1) !important;
}
.movie-grid-page .poster-box .wishlist-btn .icli {
  color: rgba(var(--content-color), 1);
}
.movie-grid-page .poster-box .wishlist-btn .icbo {
  display: none;
}
.movie-grid-page .poster-box .wishlist-btn.active .icli {
  display: none;
}
.movie-grid-page .poster-box .wishlist-btn.active .icbo {
  display: flex;
  color: rgba(var(--error-color), 1);
}
.movie-grid-page .poster-box .wishlist-btn.active .effect:before {
  animation: fireworkLine 0.5s linear 0.1s;
}
.movie-grid-page .poster-box .wishlist-btn.active .effect:after {
  animation: fireworkPoint 0.5s linear 0.1s;
}
.movie-grid-page .poster-box .movie-poster-content {
  padding-top: 7px;
}
.movie-grid-page .poster-box .movie-poster-content h4 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
}
.movie-grid-page .poster-box .movie-poster-content .poster-rating {
  margin-top: 3px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.movie-grid-page .poster-box .movie-poster-content .poster-rating h5 {
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.movie-grid-page .poster-box .movie-poster-content .poster-rating h6 {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(var(--rating), 1);
}
.movie-grid-page .poster-box .movie-poster-content .poster-rating h6 img {
  width: 12px;
  height: 12px;
}

.movie-research-list {
  margin-top: 11px;
}
.movie-research-list li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.movie-research-list li + li {
  margin-top: 18px;
}
.movie-research-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
}
.movie-research-list li a img {
  width: 53px;
  height: 31px;
  border-radius: 3px;
}
.movie-research-list li a .research-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 53px - 12px);
}
.movie-research-list li a .research-content h4 {
  font-weight: 400;
  font-size: 14px;
  color: rgba(var(--content-color), 1);
}

.show-payment-list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 21px;
}
@media (max-width: 600px) {
  .show-payment-list {
    gap: calc(18px + 3 * (100vw - 320px) / 280);
  }
}
.show-payment-list .list-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(var(--white), 0.06);
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 19px 15px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 600px) {
  .show-payment-list .list-content {
    padding: calc(12px + 7 * (100vw - 320px) / 280) calc(12px + 3 * (100vw - 320px) / 280);
  }
}
.show-payment-list .list-content input[type=radio] {
  display: none;
}
.show-payment-list .list-content img {
  width: 48px;
  height: 30px;
}
.show-payment-list .list-content .payment-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 26px - 30px);
}
.show-payment-list .list-content .payment-title .custom-radio {
  width: 18px;
  height: 18px;
  outline: 1px solid rgba(var(--content-color), 1);
  border-radius: 100%;
  position: relative;
}
.show-payment-list .list-content .payment-title .text {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--white), 1);
}
@media (max-width: 600px) {
  .show-payment-list .list-content .payment-title .text {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.show-payment-list .list-content:has(input[type=radio]:checked) {
  background: linear-gradient(rgba(var(--dark-border), 1), rgba(var(--dark-border), 1)) padding-box, var(--theme-color) border-box;
  border: 1px solid transparent;
}
.show-payment-list .list-content input[type=radio]:checked ~ .payment-title .custom-radio::after {
  width: 18px;
  height: 18px;
  content: "";
  position: absolute;
  background: var(--button-color);
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
  outline: 1px solid rgba(var(--border), 1);
  border: 3px solid rgba(var(--white), 1);
}

.notification-page {
  margin-top: 25px;
}
.notification-page li {
  width: 100%;
}
.notification-page li + li {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(var(--title-color), 0.06);
}
@media (max-width: 600px) {
  .notification-page li + li {
    padding-top: calc(12px + 8 * (100vw - 320px) / 280);
    margin-top: calc(12px + 8 * (100vw - 320px) / 280);
  }
}
.notification-page li h3 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .notification-page li h3 {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.notification-page li p {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 600px) {
  .notification-page li p {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
    margin-top: calc(6px + 2 * (100vw - 320px) / 280);
  }
}
.notification-page li p span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(var(--title-color), 0.77);
}

.safe-main-content h3 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  font-size: 18px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .safe-main-content h3 {
    font-size: calc(16px + 2 * (100vw - 320px) / 280);
  }
}
.safe-main-content p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  margin-top: 10px;
}
@media (max-width: 600px) {
  .safe-main-content p {
    font-size: calc(13px + 1 * (100vw - 320px) / 280);
  }
}

.safe-step-list {
  margin-top: 20px;
}
.safe-step-list li {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.safe-step-list li + li {
  margin-top: 20px;
}
.safe-step-list li p {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}

.movie-language li input[type=radio] {
  display: none;
}
.movie-language li input[type=radio]:checked + label {
  background: linear-gradient(rgba(var(--dark-border), 1), rgba(var(--dark-border), 1)) padding-box, var(--theme-color) border-box;
  border: 1px solid transparent;
}

.movie-coming-list {
  margin-top: 15px;
}
.movie-coming-list li {
  display: flex;
  align-items: center;
  gap: 15px;
}
.movie-coming-list li + li {
  margin-top: 25px;
}
.movie-coming-list li a img {
  width: 100%;
  height: 100px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
.movie-coming-list li .coming-content {
  width: calc(100% - 15px);
}
.movie-coming-list li .coming-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
@media (max-width: 600px) {
  .movie-coming-list li .coming-content h4 {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
.movie-coming-list li .coming-content h5 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  margin-top: 3px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
.movie-coming-list li .coming-content p {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--title-color), 0.77);
}

/**=====================
 5.16  Landing CSS
========================**/
.landing {
  background-color: rgba(var(--white), 1);
}
.landing.dark-mode {
  background-color: rgba(var(--body-color), 1);
}

.landing-main-header {
  width: 100%;
  max-width: 600px;
  height: 148px;
  position: sticky;
  top: 0;
  background-color: rgba(var(--main-color), 1);
  border: 1px solid rgba(127, 131, 132, 0.15);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 24px 15px;
  z-index: 2;
}
@media (max-width: 600px) {
  .landing-main-header {
    padding-block: calc(15px + 9 * (100vw - 320px) / 280);
  }
}
.landing-main-header .top-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.landing-main-header .top-content img {
  height: 32px;
}
@media (max-width: 600px) {
  .landing-main-header .top-content img {
    height: calc(25px + 7 * (100vw - 320px) / 280);
  }
}
.landing-main-header .top-content .setting-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 100%;
  background-color: rgba(var(--white), 0.15);
}
@media (max-width: 600px) {
  .landing-main-header .top-content .setting-icon {
    width: calc(30px + 4 * (100vw - 320px) / 280);
    height: calc(30px + 4 * (100vw - 320px) / 280);
  }
}
.landing-main-header .top-content .setting-icon .icon {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 20px;
}
@media (max-width: 600px) {
  .landing-main-header .top-content .setting-icon .icon {
    --Iconsax-Size: calc(18px + (20 - 18) * ((100vw - 320px) / (600 - 320)));
  }
}
body.dark-mode .landing-main-header .top-content .setting-icon {
  background-color: rgba(var(--title-color), 0.15);
}
body.dark-mode .landing-main-header .top-content .setting-icon .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
}
.landing-main-header .header-content {
  padding-top: 25px;
}
@media (max-width: 600px) {
  .landing-main-header .header-content {
    padding-top: calc(14px + 11 * (100vw - 320px) / 280);
  }
}
.landing-main-header .header-content h2 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--white), 1);
}
@media (max-width: 600px) {
  .landing-main-header .header-content h2 {
    font-size: calc(14px + 2 * (100vw - 320px) / 280);
  }
}
body.dark-mode .landing-main-header .header-content h2 {
  color: rgba(var(--title-color), 1);
}
.landing-main-header .header-content p {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 400;
  color: rgb(194, 194, 194);
}

.app-mobile-menu {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  background-color: rgba(var(--white), 1);
  box-shadow: 0 -1px 17px 0 rgba(var(--black), 0.05);
  z-index: 2;
  padding: 13px 18px;
}
.app-mobile-menu ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.app-mobile-menu ul li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-mobile-menu ul li .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-mobile-menu ul li .icon .app-icon {
  --Iconsax-Color: rgba(var(--content-color), 1);
  --Iconsax-Size: 24px;
}
.app-mobile-menu ul li .icon .inactive {
  display: block;
}
.app-mobile-menu ul li .icon .active {
  display: none;
}
.app-mobile-menu ul li h5 {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.app-mobile-menu ul li.active .icon .inactive {
  display: none;
}
.app-mobile-menu ul li.active .icon .active {
  display: block;
}
.app-mobile-menu ul li.active h5 {
  color: rgba(var(--theme-color), 1);
}

.app-collection {
  padding-bottom: 100px;
}
.app-collection li {
  width: 100%;
}
.app-collection li + li {
  margin-top: 20px;
}
.app-collection li a {
  background-color: rgba(255, 199, 47, 0.1);
  border: 1px solid rgba(255, 199, 47, 0.25);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.app-collection li a .app-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 5px;
  background-color: rgba(var(--white), 1);
}
.app-collection li a .app-image img {
  width: 37px;
  height: 37px;
}
body.dark-mode .app-collection li a .app-image {
  background-color: rgba(255, 255, 255, 0.13);
}
.app-collection li a .app-content {
  width: calc(100% - 15px - 62px);
}
.app-collection li a .app-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
}
.app-collection li a .app-content p {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.app-collection li a.ecommerce-box {
  background-color: rgba(82, 104, 102, 0.1);
  border-color: rgba(82, 104, 102, 0.21);
}
.app-collection li a.chat-box {
  background-color: rgba(62, 128, 255, 0.1);
  border-color: rgba(62, 128, 255, 0.2);
}
.app-collection li a.grocery-box {
  background-color: rgba(65, 167, 167, 0.1);
  border-color: rgba(65, 167, 167, 0.2);
}
.app-collection li a.hotel-booking-box {
  background-color: rgba(0, 122, 196, 0.1);
  border-color: rgba(0, 122, 196, 0.2);
}
.app-collection li a.fitness-box {
  background-color: rgba(108, 223, 195, 0.1);
  border-color: rgba(108, 223, 195, 0.2);
}
.app-collection li a.blog-box {
  background-color: rgba(165, 99, 77, 0.1);
  border-color: rgba(165, 99, 77, 0.2);
}
.app-collection li a.cab-box {
  background-color: rgba(10, 132, 255, 0.1);
  border-color: rgba(10, 132, 255, 0.2);
}
.app-collection li a.learning-box {
  background-color: rgba(255, 155, 92, 0.1);
  border-color: rgba(255, 155, 92, 0.2);
}
.app-collection li a.plant-box {
  background-color: rgba(67, 146, 120, 0.1);
  border-color: rgba(67, 146, 120, 0.2);
}
.app-collection li a.pet-box {
  background-color: rgba(6, 75, 181, 0.1);
  border-color: rgba(6, 75, 181, 0.2);
}
.app-collection li a.furniture-box {
  background-color: rgba(228, 137, 0, 0.1);
  border-color: rgba(228, 137, 0, 0.2);
}
.app-collection li a.jewellery-box {
  background-color: rgba(14, 51, 60, 0.1);
  border-color: rgba(14, 51, 60, 0.2);
}
.app-collection li a.salon-box {
  background-color: rgba(137, 137, 112, 0.1);
  border-color: rgba(137, 137, 112, 0.2);
}
.app-collection li a.movie-box {
  background-color: rgba(32, 93, 238, 0.1);
  border-color: rgba(32, 93, 238, 0.2);
}

.elements-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding-bottom: 100px;
}
@media (max-width: 499px) {
  .elements-list {
    grid-template-columns: 1fr;
  }
}
.elements-list .app-element-box {
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--border-color), 1);
  box-shadow: 0 4px 20px 0 rgba(var(--black), 0.03);
  border-radius: 6px;
  padding: 14px;
}
.elements-list .app-element-box .loader-img img {
  display: flex;
  margin: auto;
  width: 100%;
  max-width: 100px;
}
.elements-list .app-element-box .element-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 47px;
  border-radius: 5px;
  background-color: rgba(var(--theme-color), 0.1);
  padding: 8px;
}
.elements-list .app-element-box .element-content {
  padding-top: 11px;
}
.elements-list .app-element-box .element-content h3 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.elements-list .app-element-box .element-content p {
  padding-top: 5px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}

.app-list-item {
  padding-bottom: 100px;
}
.app-list-item.app-widgets li a h4 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.app-list-item.app-widgets li a h4 span {
  font-size: 18px;
}
.app-list-item li {
  width: 100%;
}
.app-list-item li + li {
  margin-top: 15px;
}
.app-list-item li a {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 6px;
  border: 1px solid rgba(var(--border-color), 1);
  background-color: rgba(var(--white), 1);
  box-shadow: 0 4px 20px 0 rgba(var(--black), 0.03);
  padding: 13px 15px;
}
.app-list-item li a img {
  width: 30px;
  height: 30px;
}
.app-list-item li a h4 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.app-list-item li a h4 span {
  font-family: "Montserrat", sans-serif;
  color: rgba(var(--theme-color), 1);
}

.inner-page-screen {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding-bottom: 100px;
}
@media (max-width: 459px) {
  .inner-page-screen {
    grid-template-columns: 1fr;
  }
}
.inner-page-screen li a {
  width: 100%;
  display: block;
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--border-color), 1);
  border-radius: 6px;
  padding: 15px 16px;
  box-shadow: 0 4px 20px 0 rgba(var(--black), 0.03);
}
.inner-page-screen li a h4 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.inner-page-screen li a h4 span {
  margin-right: 7px;
  font-size: 18px;
  color: rgba(var(--theme-color), 0.7);
}

.custom-accordion {
  background-color: transparent !important;
}
.custom-accordion .accordion-item {
  border: none;
  background-color: transparent;
}
.custom-accordion .accordion-item + .accordion-item {
  margin-top: 8px;
}
.custom-accordion .accordion-item .accordion-button {
  border: 1px solid rgba(var(--border-color), 1);
  background-color: rgba(var(--white), 1);
  border-radius: 6px;
  box-shadow: 0 4px 20px 0 rgba(var(--black), 0.03);
  padding: 15px 22px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.custom-accordion .accordion-item .accordion-button::after {
  content: "-";
  background-image: none;
  transform: unset;
  font-size: 24px;
  color: rgba(var(--title-color), 1);
  font-weight: 400;
  height: unset;
  width: unset;
}
[dir=rtl] .custom-accordion .accordion-item .accordion-button::after {
  margin-right: auto !important;
  margin-left: unset;
}
.custom-accordion .accordion-item .accordion-button.collapsed::after {
  content: "+";
}
.custom-accordion .accordion-item .accordion-body {
  padding: 15px 8px;
  background-color: rgba(var(--white), 1);
}
.custom-accordion .accordion-item .accordion-body p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  line-height: 1.8;
  word-spacing: 2px;
}

.accordion-flush {
  margin-top: 30px;
}
.accordion-flush .accordion-item {
  border: none;
}
.accordion-flush .accordion-item .accordion-button {
  border-top: 1px solid rgba(var(--border-color), 1);
  background-color: rgba(var(--white), 1);
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
  box-shadow: none;
}
.accordion-flush .accordion-item .accordion-button::after {
  content: "-";
  background-image: none;
  transform: unset;
  font-size: 24px;
  color: rgba(var(--title-color), 1);
  font-weight: 400;
  height: unset;
  width: unset;
}
[dir=rtl] .accordion-flush .accordion-item .accordion-button::after {
  margin-right: auto !important;
  margin-left: unset;
}
.accordion-flush .accordion-item .accordion-button.collapsed::after {
  content: "+";
}
.accordion-flush .accordion-item .accordion-body {
  padding: 0 8px 15px 8px;
  background-color: rgba(var(--white), 1);
}
.accordion-flush .accordion-item .accordion-body p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  line-height: 1.8;
  word-spacing: 2px;
}

.action-content {
  padding-top: 89px;
}
.action-content img {
  width: 100%;
  height: 100%;
  max-height: 177px;
  -o-object-fit: contain;
     object-fit: contain;
}

.open-btn {
  width: 100%;
  background-color: rgba(var(--content-color), 0.09);
  padding: 14px 0;
  border-radius: 6px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
  margin-top: 22px;
  border: none;
  display: block;
}

.landing-filter .filter-right-box .custom-checkbox {
  font-family: "Montserrat", sans-serif;
}
.landing-filter .filter-right-box .custom-checkbox .checkmark:after {
  border-color: rgba(var(--white), 1);
}

.landing-btn {
  width: 100%;
  font-weight: 500;
  padding: 14px;
  background-color: rgba(var(--theme-color), 1);
  border-radius: 8px;
  border: none;
  color: rgba(var(--white), 1);
}
.landing-btn:hover, .landing-btn:active {
  color: rgba(var(--white), 1);
}

.feedback-model .landing-emoji .emoji-items li.active {
  background: linear-gradient(179.04deg, #4F61FB -13.39%, #828FFF 60.9%);
}

.different-button-contant li {
  width: 100%;
}
.different-button-contant li + li {
  margin-top: 20px;
}
.different-button-contant li button {
  width: 100%;
  padding-block: 13px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--white), 1);
  border: none;
  border-radius: 50px;
  background-color: rgba(var(--theme-color), 1);
}
body.dark-mode .different-button-contant li button {
  color: rgba(var(--title-color), 1);
}
.different-button-contant li button.pattern-btn {
  background-image: url(db906ff9e644c60b9dfb.png);
}
.different-button-contant li button.radius-btn {
  border-radius: 10px;
}
.different-button-contant li button.gradient-btn {
  background: var(--button-color);
}
.different-button-contant li button.outline-btn {
  background-color: transparent;
  color: rgba(var(--theme-color), 1);
  border-radius: 10px;
  border: 1px solid rgba(var(--theme-color), 1);
}
.different-button-contant li button.round-line-btn {
  color: rgba(var(--theme-color), 1);
  background-color: transparent;
  border: 1px solid rgba(var(--theme-color), 1);
}

.app-buttons li {
  width: 100%;
}
.app-buttons li + li {
  margin-top: 12px;
}
.app-buttons li .open-btn {
  margin-top: 0;
  line-height: 26px;
}

.app-icons-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px 18px;
}
.app-icons-list li {
  padding-block: 14px;
  text-align: center;
  border-radius: 6px;
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--content-color), 0.13);
  box-shadow: 0 4px 20px rgba(var(--black), 0.03);
}
.app-icons-list li .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 24px;
}

.input-content + .input-content {
  margin-top: 40px;
}
.input-content h2 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--theme-color), 1);
  margin-bottom: 15px;
}

.app-progress-box + .app-progress-box {
  margin-top: 30px;
}
.app-progress-box .progress {
  height: 3px;
  border-radius: 50px;
}
body.dark-mode .app-progress-box .progress {
  background-color: rgba(255, 255, 255, 0.13);
}
.app-progress-box .progress.label {
  height: 16px;
}
.app-progress-box .progress.striped {
  height: 7px;
}
.app-progress-box .progress-bar {
  width: 55%;
  background-color: rgba(var(--theme-color), 1);
  border-radius: 50px;
}
.app-progress-box .progress-bar.label-bar {
  width: 75%;
}
.app-progress-box .progress-bar.progress-bar-striped {
  width: 50% !important;
}
.app-progress-box h2 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
  margin-bottom: 12px;
}
.app-progress-box h5 {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
  margin-top: 9px;
}

.app-tab-wrapper + .app-tab-wrapper {
  margin-top: 30px;
}
.app-tab-wrapper h2 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
  margin-bottom: 15px;
}

.toast-container {
  border: none;
  right: 8px;
  top: 90px;
}
.toast-container .toast {
  border: none;
  background-color: transparent;
  max-width: 300px;
}
.toast-container .toast-header {
  background-color: rgb(224, 245, 238);
  border: 2px solid rgba(var(--success-color), 1);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.toast-container .toast-header .icon {
  --Iconsax-Color: rgba(var(--success-color), 1);
  --Iconsax-Size: 20px;
}
.toast-container .toast-header h5 {
  font-size: 13px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
body.dark-mode .toast-container .toast-header h5 {
  color: rgba(var(--white), 1);
}
.toast-container .toast-header .btn-close {
  box-shadow: none;
  font-size: 12px;
  opacity: 1;
  margin-left: auto;
}
[dir=rtl] .toast-container .toast-header .btn-close {
  margin-left: unset;
  margin-right: auto;
}
.toast-container .toast-header.toast-head {
  background-color: rgb(254, 245, 244);
  border-color: rgba(var(--error-color), 1);
}
.toast-container .toast-header.toast-head .icon {
  --Iconsax-Color: rgba(var(--error-color), 1);
}

.app-checkbox-content + .app-checkbox-content {
  margin-top: 31px;
}
.app-checkbox-content h3 {
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--border-color), 1);
  border-radius: 6px;
  padding: 17px 22px;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--theme-color), 1);
}
.app-checkbox-content .app-checkbox-group {
  display: flex;
  flex-direction: column;
}
.app-checkbox-content .app-checkbox-group .custom-checkbox {
  display: flex;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  font-weight: 400;
  color: rgba(var(--title-color), 1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.app-checkbox-content .app-checkbox-group .custom-checkbox input {
  display: none;
}
.app-checkbox-content .app-checkbox-group .custom-checkbox .checkmark {
  height: 20px;
  width: 20px;
  border: 1px solid rgba(var(--content-color), 0.4);
  background-color: rgba(var(--border-color), 1);
  border-radius: 50%;
  position: relative;
  transition: all 0.2s ease;
}
.app-checkbox-content .app-checkbox-group .custom-checkbox input:checked + .checkmark {
  border: 5px solid rgba(var(--theme-color), 1);
}
.app-checkbox-content .app-checkbox-group .custom-checkbox input:checked + .checkmark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-color: rgb(219, 223, 255);
  border-radius: 50px;
  border: none;
}
.app-checkbox-content .app-checkbox-group.check-box .checkmark {
  border-radius: 0;
  border: none;
  background-color: rgba(var(--border-color), 1);
}
.app-checkbox-content .app-checkbox-group.check-box input:checked + .checkmark {
  border: none;
}
.app-checkbox-content .app-checkbox-group.check-box input:checked + .checkmark::after {
  border-radius: 0;
  background-color: rgba(var(--theme-color), 1);
}

.app-title {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
  margin-bottom: 20px;
}

.datepicker-box input {
  width: 100%;
  background-color: rgba(var(--content-color), 0.09);
  text-align: center;
  padding: 12px 0;
  border-radius: 6px;
  color: rgba(var(--title-color), 1);
  border: none;
}
.datepicker-box input + input {
  margin-top: 12px;
}
.datepicker-box input::-moz-placeholder {
  font-size: 15px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.datepicker-box input::placeholder {
  font-size: 15px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.datepicker-box input:focus {
  outline: none;
}

.flatpickr-calendar.animate.open {
  left: 50% !important;
  transform: translateX(-50%) !important;
  right: unset !important;
}
