/* Page */
/* --------- Keyframe --------- */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.animRotate {
  display: inline-block;
  animation: rotate 1.5s linear infinite;
}

/* --------- Page Reuse Class --------- */
.top-area {
  --space: 25px;
  --icon-width: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: var(--space);
  padding: 15px 20px;
}
.top-area .icon {
  width: var(--icon-width);
}
.top-area .title {
  margin-bottom: 0;
  font-size: var(--text-18);
  color: var(--c-text-primary);
  width: calc(100% - (var(--icon-width) + var(--space)));
}
.top-area.w-status {
  --icon-width: 14px;
}
.top-area.w-status .title {
  width: calc(100% - (var(--icon-width) + (var(--space) * 2) + 80px));
}
.top-area.w-cta .title {
  width: calc(100% - (var(--icon-width) + (var(--space) * 2) + 100px));
}
.top-area .cta-wrap {
  width: 100px;
  text-align: right;
}

/* Status Update */
.status-wrap {
  color: #fff;
  width: 78px;
  font-size: var(--text-10);
  font-weight: 500;
}
.status-info {
  display: inline-block;
  width: auto;
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
}
.bg-success {
  background: var(--success) !important;
}
.bg-pending {
  background: var(--pending) !important;
}
.bg-cancel {
  background: var(--cancel) !important;
}
.bg-fail {
  background: var(--fail) !important;
}
.c-success {
  color: var(--success) !important;
}
.c-pending {
  color: var(--pending) !important;
}
.c-cancel {
  color: var(--cancel) !important;
}
.c-fail {
  color: var(--fail) !important;
}

/* Sec Heading */
.sec-heading-wrap {
  margin-bottom: 1rem;
}
.sec-heading-wrap .sec-title {
  position: relative;
  padding-left: 10px;
  color: #3d3d3d;
  margin-bottom: 8px;
  font-size: var(--text-16);
  font-weight: 600;
}
.sec-heading-wrap .sec-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 14px;
  background: linear-gradient(127.68deg, #de3936 22.18%, #ffcd43 127.88%);
  border-radius: 1px;
  transform: translateY(-50%);
}

/* Loading */
.loading-wrap {
  text-align: center;
  margin: 8px;
}
.loading-wrap .load-icon {
  width: 24px;
  height: auto;
}

/* --------------- Welcome/ Login ----------------- */
.page-login-bg {
  min-height: 100vh;
  background: url("../img/bg-login.jpg") no-repeat top center;
  background-size: cover;
}
.page-welcome-wrapper {
  padding: 50px 20px 20px;
}
.page-welcome-wrapper .logo {
  width: 70px;
  display: block;
  margin: auto auto 25px;
}
.page-welcome-wrapper .intro-info {
  margin-bottom: 30px;
}
.login-method .nav {
  justify-content: center;
  margin-bottom: 30px;
  gap: 8px;
}
.login-method .nav .nav-link {
  --e-color: #e14343;
  color: var(--e-color);
  background: transparent;
  border: 1px solid var(--e-color);
  font-size: var(--text-10);
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: normal;
}
.login-method .nav .nav-link.active,
.login-method .nav .nav-link:hover {
  color: #fff;
  font-weight: 500;
  background: var(--e-color);
}
.bg-opacity-half,
.bg-opacity-half:focus,
.login-form-wrapper .form-control,
.login-form-wrapper .form-control:focus,
.login-form-wrapper .input-group-text {
  background-color: rgba(255 255 255 / 50%);
}
.login-form-wrapper .btn-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  margin-bottom: 30px;
  z-index: 2;
}

/* --------------- Forgot Password ----------------- */
.forgot-form-wrapper .btn-wrapper {
  position: fixed;
  bottom: 0;
  left: 50%;
  width: 100%;
  padding: 0 20px;
  z-index: 2;
  margin-bottom: 30px;
  max-width: 480px;
  transform: translateX(-50%);
}

/* --------------- Dashboard Menu ----------------- */
.menu-main-wrapper {
  position: fixed;
  padding: 15px 20px;
  bottom: 0;
  left: 50%;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 22px rgba(89, 42, 42, 0.15);
  z-index: 5;
  max-width: 480px;
  transform: translateX(-50%);
}
.menu-main-wrapper .list-inline {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.menu-main-wrapper .list-inline-item {
  flex: 1 0 0%;
  margin: 0;
  text-align: center;
}
.menu-nav-link {
  width: 100%;
  text-align: center;
}
.menu-nav-link .icon-wrap {
  text-align: center;
}
.menu-nav-link .icon-wrap img {
  width: 24px;
  margin: auto;
}
.menu-nav-link .text {
  color: #616161;
  font-size: var(--text-10);
  margin-top: 5px;
}
/* Active */
.menu-main-wrapper .list-inline-item .icon.active {
  display: none;
}
.menu-main-wrapper .list-inline-item.active .icon {
  display: none;
}
.menu-main-wrapper .list-inline-item.active .icon.active {
  display: block;
}
.menu-main-wrapper .list-inline-item.link-home.active .icon-wrap img {
  width: 36px;
}
.menu-main-wrapper .list-inline-item.link-home.active .text {
  display: none;
}
.menu-main-wrapper .list-inline-item:hover .text,
.menu-main-wrapper .list-inline-item.active .text {
  background: linear-gradient(127.68deg, #de3936 22.18%, #ffcd43 127.88%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --------------- Language Selection ----------------- */
.language-selection-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* --------------- Dashboard ----------------- */
.page-dashboard-bg {
  min-height: 100vh;
  background: url("../img/bg-dashboard.jpg") no-repeat top center;
}
.d-toolbar-wrap {
  --space: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space);
  align-items: center;
  margin-bottom: 15px;
}
.avatar {
  width: 48px;
  height: 48px;
  border: 1px solid #fff;
  border-radius: 50%;
  overflow: hidden;
}
.d-toolbar-wrap .wlc-msg-wrap {
    /*width: calc(100% - 65px);*/
    width: calc(100% - (65px + 48px + (var(--space) * 2)));
}
.d-toolbar-wrap .wlc-msg-wrap .wlc-text {
  color: #737373;
}
.d-toolbar-wrap .wlc-msg-wrap .username {
  color: #202020;
}
.toolbar-cta-wrap {
  width: 65px;
  display: flex;
  gap: 16px;
  align-self: flex-start;
}
.toolbar-cta-wrap > * {
  width: 24px;
}
/* Highlight Wrap */
.highlight-wrap {
  position: relative;
  background: linear-gradient(128deg, #de3936 45%, #ffcd43 140%);
  box-shadow: 0 10px 15px -5px rgba(0 0 0 / 20%);
  color: #fff;
  padding: 25px;
  border-radius: 12px;
}
.highlight-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/deco/highlight-deco.png) no-repeat;
  background-size: cover;
  mix-blend-mode: soft-light;
  z-index: 0;
  border-radius: 12px;
}
.highlight-wrap > * {
  position: relative;
}
.highlight-wrap .verify-status {
  background: #ffc862;
  font-weight: 500;
  color: #4c4c4c;
  border-radius: 50px 4px 4px 50px;
  display: inline-block;
  padding: 5px 20px;
  position: absolute;
  top: 20px;
  right: -4px;
  z-index: 2;
}
.highlight-wrap .verify-status .icon {
  width: 16px;
  display: inline-block;
}
.highlight-wrap .verify-status::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 4px;
  height: 4px;
  border-radius: 0 0 4px 0;
  background: #da3731;
  z-index: 0;
}
.highlight-wrap .inner-ctn {
  position: relative;
  z-index: 1;
}
.highlight-wrap .inner-ctn .heading {
  font-size: var(--text-14);
  font-weight: 600;
  color: #ffd478;
  margin-bottom: 15px;
}
.highlight-wrap .inner-ctn .member-type {
  font-size: 2rem;
  font-weight: 600;
}
.highlight-wrap .join-since {
  opacity: 0.7;
}

/* Package summary */
.d-summary-wrap {
  margin-bottom: 25px;
}
.package-summary-wrap {
  background: #ffda9e;
  padding: 40px 25px 20px;
  margin-top: -20px;
  border-radius: 0 0 16px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.package-summary-wrap .cta-wrap {
  width: 60px;
  margin-left: auto;
  text-align: right;
}
.package-summary-wrap .current-package-info {
  width: calc(100% - 60px);
}
.current-package-info .label {
  font-size: var(--text-10);
  color: #c3a370;
}
.current-package-info .current-package {
  color: #3d3d3d;
  font-size: var(--text-14);
  font-weight: 600;
}

/* Quick Action */
.d-quick-action {
  margin-bottom: 25px;
}
.d-quick-action .item-wrap {
  display: block;
  text-align: center;
}
.d-quick-action .item-wrap .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #dde1e4;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto auto 8px;
  transition: all 0.3s ease;
}
.d-quick-action .item-wrap .icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.d-quick-action .item-wrap .text {
  color: var(--c-text-primary);
  word-break: normal;
}
.d-quick-action .item-wrap:hover .icon {
  background-color: rgba(254, 136, 136, 0.08);
}

/* Bekas Mall Section */
.d-section .sec-heading .heading {
  font-size: var(--text-16);
  font-weight: 600;
  width: 80%;
  margin-bottom: 0;
}
.d-section .sec-heading {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.d-section .sec-heading .cta-wrap {
  width: 20%;
  text-align: right;
}

/* -------------------- Carousel ------------------- */
.carousel-twoCols {
  position: relative;
  overflow-y: auto;
  margin-right: -20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel-twoCols::-webkit-scrollbar {
  display: none;
}
.carousel-twoCols .inner {
  display: flex;
  max-width: 1000px;
  width: fit-content;
  margin-bottom: 20px;
  padding-right: 5px;
}
.carousel-twoCols .inner .item-wrap {
  width: 180px;
  padding-right: 15px;
  overflow-y: auto;
}
.indicators {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}
.indicators button,
.indicators .btn-dot {
  width: 5px;
  height: 5px;
  background: #e3e3e3;
  border-radius: 50px;
  padding: 0;
  border: none;
  margin: 0 1px;
  transition: all 0.3s ease;
}
.indicators button.active,
.indicators button:hover,
.indicators .btn-dot.active,
.indicators .btn-dot:hover {
  width: 25px;
  background: linear-gradient(127.68deg, #de3936 22.18%, #ffcd43 127.88%);
}

@media (max-width: 575px) {
  .carousel-twoCols .inner .item-wrap {
    width: 150px;
  }
}

/* ---------------- List mall wrap ---------------- */
.list-mall-wrap .thumb {
  position: relative;
  margin-bottom: 10px;
}
.list-mall-wrap .thumb img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
}
.list-mall-wrap .thumb .remark {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
  font-size: 0.5rem;
  border-radius: 10px;
  background: rgba(255 255 255 / 80%);
  padding: 3px 7px;
}
.list-mall-wrap .list-ctn .title {
  color: #161616;
  font-size: var(--text-12);
  font-weight: 500;
}
.list-mall-wrap .list-ctn .price {
  font-weight: bold;
  font-size: var(--text-14);
  color: #ff9c38;
}
.list-mall-wrap .list-ctn .additional-info {
  color: #161616;
  opacity: 0.5;
  font-size: var(--text-10);
  margin-top: 2px;
}
.list-mall-row {
  --bs-gutter-x: 1.125rem;
}
.list-mall-row .list-mall-wrap .thumb {
  width: 100%;
  height: 120px;
  aspect-ratio: unset;
}
@media (min-width: 768px) {
  .list-mall-row .list-mall-wrap .thumb {
    width: 100%;
    height: 100%;
    aspect-ratio: 19/15;
  }
}

/* ---------------- Package ---------------- */
.package-box .box-inner {
  border: 1px solid #ced3d8;
  border-radius: 12px;
  padding: 24px;
}
.package-box .box-inner .ctn {
  margin-top: 5px;
}
.package-box .box-inner .ctn ul {
  padding-left: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
}
.current-package-box .box-top {
  background: #363636;
  padding: 7px 30px;
  border-radius: 12px 12px 0 0;
  text-align: center;
}
.current-package-box .box-inner {
  border: 1px solid #ced3d8;
  border-radius: 0 0 12px 12px;
  padding: 20px 24px 24px;
}

/* ---------------- Renew ---------------- */
.btn-minus,
.btn-plus {
  width: 26px;
  height: 26px;
  border: 1px solid #dde1e4;
  border-radius: 4px !important;
  background: transparent;
  padding: 0;
  display: inline-block;
  font-size: 1.125rem;
}
.btn-minus:hover,
.btn-plus:hover {
  background-color: rgba(255 255 255 / 50%);
}
.qty-field .input-group {
  align-items: center;
  justify-content: end;
}
.qty-field .num-display {
  width: 20px;
  text-align: center;
  font-size: var(---text-12);
  color: var(--c-text-primary);
  font-weight: 500;
  border: 0;
  outline: none;
  margin: 0 8px !important;
}
.info-remark {
  color: #95a1ac;
}

/* ---------------- Bottom stick ---------------- */
.bottom-stick-wrap {
  position: fixed;
  padding: 16px 20px;
  bottom: 0;
  left: 50%;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 22px rgba(89, 42, 42, 0.15);
  z-index: 5;
  max-width: 480px;
  transform: translateX(-50%);
}

/* ---------------- Renew Request ---------------- */
.info-list {
  --space: 10px;
  display: flex;
  flex-wrap: no-wrap;
  gap: var(--space);
  align-items: center;
  justify-content: center;
}
.info-list .icon {
  width: 24px;
  height: auto;
}
.info-list .icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.info-list .list-inner {
  width: auto;
}
.info-list .list-inner .label {
  color: #ebedef;
}

/* ---------------- Renew Request ---------------- */
.data-list {
  margin-bottom: 25px;
}
.data-list .d-label {
  color: #a4a4a9;
  margin-bottom: 5px;
}
.d-preview-img {
  padding-top: 3px;
  width: 77px;
}
.d-preview-img.lg {
  width: 125px;
}
.d-preview-img img {
  width: 100%;
  height: auto;
}

/* Bank Info */
.bank-info-wrap {
  background: rgb(235 237 239 / 50%);
  border-radius: 8px;
  padding: 25px;
  margin-top: 10px;
}
.bank-info-wrap .info-detail {
  width: calc(100% - 80px);
  padding-right: 15px;
  word-break: break-all;
}
.bank-info-wrap .info-detail .icon {
  width: 24px;
  height: auto;
  margin-right: 10px;
}
.bank-info-wrap .cta-wrap {
  width: 80px;
}
.bank-info-wrap .cta-wrap button,
.bank-info-wrap .cta-wrap a {
  padding: 5px 10px;
  min-width: unset;
  width: 100%;
  font-size: var(--text-10);
  border: 1px solid #de3936;
  background: transparent;
}
.bank-info-wrap .cta-wrap button:hover,
.bank-info-wrap .cta-wrap a:hover {
  border: 1px solid #de3936 !important;
  filter: brightness(0.8);
}

/* QR */
.qr-scan-wrap {
  width: 192px;
  height: 192px;
  margin: auto;
  background: linear-gradient(93.49deg, #fff8e2 0%, #fff2f2 100%);
  padding: 8px;
  border-radius: 16px;
}
.qr-scan-wrap img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  border-radius: 8px;
}

/* ------------- Order Listing ------------- */
.order-mainTab-wrapper {
  margin-left: -20px;
  margin-right: -20px;
}

/* ------------- Discovery ------------- */
.pg-title-wrap {
  margin-bottom: 20px;
}
.list-event .box-inner {
  padding: 16px;
}
.list-event .list-item {
  --space: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space);
  align-items: stretch;
}
.list-event .list-item .event-img {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
}
.list-event .list-item .event-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.list-event .list-item .event-ctn {
  width: calc(100% - (120px + var(--space)));
}
.list-event .list-item .event-ctn .info-wrap {
  margin-bottom: 5px;
}
.list-event .list-item .event-ctn .info-wrap .icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

/* ------------- Filter Dropdown ------------- */
.filter-dropdown {
  display: flex;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 5px 15px;
}
.filter-dropdown .dropdown-toggle {
  padding: 0;
  font-size: var(--text-12);
  color: var(--c-text-primary);
  outline: 0;
  box-shadow: none;
  border: 0;
}
.filter-dropdown .dropdown-toggle::after {
  color: #e14343;
  border-width: 4px;
  border-bottom: 0;
  vertical-align: middle;
}
.filter-dropdown .dropdown-menu {
  border-radius: 0;
  box-shadow: 0 3px 6px rgba(0 0 0/20%);
  border: none;
}
.filter-dropdown .dropdown-menu .dropdown-item {
  font-size: var(--text-12);
  color: var(--c-text-primary);
  padding: 5px 15px;
}
.filter-dropdown .dropdown-item.active,
.filter-dropdown .dropdown-item:active {
  background-color: #efefef;
}
.filter-dropdown .datepicker {
  border: none;
  padding: 2px 15px;
  min-height: unset;
}

.filter-dropdown .form-select {
  font-size: var(--text-12);
  color: var(--c-text-primary);
  border: none;
  padding: 3px 16px 3px 0;
  background-image: url(../img/icon/i-select-arrow.png);
  background-position: 100%;
  background-size: 12px 12px;
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
  outline: none;
}

/* ------------- Carousel ------------- */
.carousel {
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.carousel .inner {
  position: relative;
}
.carousel .inner .thumb {
  border-radius: 12px;
  width: 100%;
  height: 120px;
  overflow: hidden;
}
.carousel .inner .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel .inner .thumb::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 15%, #000000 143.33%);
  border-radius: 12px;
  mix-blend-mode: hard-light;
}
.carousel .inner .title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px;
}
.carousel .carousel-indicators {
  margin: 0;
  bottom: 0;
}
.carousel .carousel-indicators button {
  width: 5px;
  height: 5px;
  background: #e3e3e3;
  border-radius: 50px;
  padding: 0;
  border: none;
  margin: 0 3px;
  transition: all 0.3s ease;
  opacity: 1;
}
.carousel .carousel-indicators button.active {
  opacity: 1;
  width: 25px;
  background: linear-gradient(127.68deg, #de3936 22.18%, #ffcd43 127.88%);
}

/* ------------- Detail Page ------------- */
.page-detail {
  position: relative;
}
.detail-wrapper {
  position: relative;
}
.detail-wrapper .cover {
  width: 100%;
  height: 300px;
}
.detail-wrapper .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-detail .top-cta-wrap {
  position: absolute;
  top: 45px;
  left: 0;
  width: 100%;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}
.page-detail .top-cta-wrap .btn-back-list,
.page-detail .top-cta-wrap .btn-cart {
  width: 36px;
  height: 36px;
  background: rgba(0 0 0 / 60%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-detail .top-cta-wrap .btn-back-list img {
  filter: brightness(0) invert(1);
  width: 8px;
  height: auto;
}
.page-detail .top-cta-wrap .btn-cart img {
  width: 24px;
}
.page-detail .inner-wrapper {
  padding: 30px 20px;
  border-radius: 20px 20px 0 0;
  margin-top: -30px;
  background: #fff;
  z-index: 1;
  position: relative;
}
.page-detail .inner-wrapper .page-title {
  margin-bottom: 10px;
}

/* Detail discovery */
.detail-discovery .info-wrap {
  margin-bottom: 5px;
}
.detail-discovery .info-wrap .icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

/* Detail Mall */
.detail-mall .p-detail.price {
  color: #ff9c38;
  font-size: 1.5rem;
}
.cart-detail-popup .cart-top-wrap {
  --space: 16px;
  gap: var(--space);
  flex-wrap: wrap;
}
.cart-detail-popup .cart-top-wrap .thumb {
  width: 125px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
}
.cart-detail-popup .cart-top-wrap .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-detail-popup .cart-top-wrap .cart-title-wrap {
  text-align: left;
  width: calc(100% - (125px + var(--space)));
  padding-right: 20px;
}
.cart-detail-popup .p-detail.price {
  color: #ff9c38;
  font-size: 1.5rem;
}
.cart-detail-wrap .option-selection {
  margin-top: 8px;
}
.cart-detail-wrap .btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: var(--text-12);
  color: #e14343;
}
.cart-detail-wrap .btn-group .btn-outline-primary {
  font-size: var(--text-12);
  color: #e14343;
  border-color: #e14343;
  border-radius: 4px;
  padding: 4px 12px;
}
.cart-detail-wrap .btn-group label:hover,
.cart-detail-wrap .btn-group .btn-check:checked + label {
  background: #e14343;
  color: #fff;
}
.cart-detail-wrap hr {
  margin: 24px 0;
}
.input-group.quantity {
  align-items: center;
  justify-content: end;
}
.input-group.quantity .num-display {
  width: 26px;
  height: 26px;
  border: 1px solid #dde1e4;
  border-radius: 4px !important;
  text-align: center;
  font-size: var(---text-12);
  color: var(--c-text-primary);
  font-weight: 500;
  margin: 0 8px !important;
  outline: 0;
}
.input-group.quantity .btn-minus,
.input-group.quantity .btn-plus {
  width: 14px;
  height: 26px;
  border: none;
}

/* ------------- Cart Page ------------- */
.list-shopping-cart .form-check {
  --space: 12px;
  gap: var(--space);
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
.list-shopping-cart .form-check-input {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid #dde1e4;
  margin: 0;
}
.list-shopping-cart .form-check-input:checked {
  background-image: url(../img/icon/i-checked-box.png);
  background-color: transparent;
  background-size: 100%;
}
.list-shopping-cart .form-check-inner {
  width: calc(100% - calc(18px + var(--space)));
  display: flex;
  align-items: center;
  border: 1px solid #ced3d8;
  border-radius: 12px;
  padding: 16px;
}
.list-shopping-cart .list-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.list-shopping-cart .list-item .thumb {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
}
.list-shopping-cart .list-item .thumb img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.list-shopping-cart .list-item .cart-info {
  width: calc(100% - 120px);
  padding-left: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.list-shopping-cart .date-wrap {
  display: flex;
  align-items: center;
}
.list-shopping-cart .date-wrap .icon {
  width: 16px;
}
.list-shopping-cart .date-wrap .text {
  width: calc(100% - 16px);
  padding-left: 5px;
}

/* ------------- Checkout ------------- */
.address-wrap-box {
  background: rgb(235 237 239 / 50%);
  border-radius: 8px;
  padding: 25px 20px;
  color: #808a93;
  line-height: 1.6;
}

/* ------------- Change Address ------------- */
.list-address-wrapper .list-item {
  border: 1px solid #ced3d8;
  padding: 16px;
  border-radius: 12px;
  color: #808a93;
}
.list-address-wrapper .form-check {
  --space: 8px;
  align-items: center;
  gap: var(--space);
  padding: 0;
}
.list-address-wrapper .form-check-input {
  margin: 0;
  background: transparent;
}
.list-address-wrapper .form-check-inner {
  width: calc(100% - (18px + var(--space)));
}
.list-address-wrapper .form-check-input:checked {
  border-color: #dde1e4;
}
.list-address-wrapper .name {
  margin-bottom: 4px;
}
.list-address-wrapper .default {
  color: #e14343;
  font-size: var(--text-10);
  background: #ffd7d0;
  padding: 2px 12px;
  border-radius: 50px;
  margin-left: 8px;
  top: -2px;
  position: relative;
}

/* ------------- Profile Menu ------------- */
.empty-result-wrap {
  margin-top: 20vh;
}
.empty-result-wrap .image img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}
.menu-profile-wrapper .menu-profile-list {
  padding: 16px;
  border: 1px solid #ced3d8;
  border-radius: 12px;
}
.menu-profile-wrapper .menu-profile-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-profile-wrapper .menu-profile-list .m-item {
  padding: 0 8px;
}
.menu-profile-wrapper .menu-profile-list .m-item:not(:last-child) {
  border-bottom: 1px solid #dde1e4;
}
.menu-profile-wrapper .menu-profile-list .m-link {
  --space: 8px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0;
}
.menu-profile-wrapper .menu-profile-list .m-link .icon {
  width: 24px;
  height: 24px;
}
.menu-profile-wrapper .menu-profile-list .m-link .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu-profile-wrapper .menu-profile-list .m-title {
  width: calc(100% - (24px + var(--space)));
  padding-right: 20px;
  position: relative;
}
.menu-profile-wrapper .menu-profile-list .m-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 16px;
  height: 16px;
  background: url(../img/icon/i-arrow-right-grey.png) no-repeat;
  background-size: 100%;
  transform: translateY(-50%);
}
.menu-profile-wrapper .menu-profile-list .m-item:first-child .m-link {
  padding-top: 8px;
}
.menu-profile-wrapper .menu-profile-list .m-item:last-child .m-link {
  padding-bottom: 8px;
}

/* ------------- Personal Info ------------- */
.preview-list-wrap .p-list-item:not(:last-child) {
  border-bottom: 1px solid #dde1e4;
}
.preview-list-wrap .p-list-item {
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.preview-list-wrap .p-list-item:first-child {
  padding-top: 0;
}
.preview-list-wrap .p-list-item .p-label {
  color: #808a93;
}
.upload-profileImg-wrap input {
  display: none;
}

/* ------------- Wallet ------------- */
.highlight-wrap .amount-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.highlight-wrap .amount {
  font-size: 2rem;
  font-weight: 600;
  max-width: 90%;
  word-break: break-all;
}
.highlight-wrap .amount .prefix {
  margin-right: 5px;
}
.highlight-wrap .view-amount .btn-view-amount {
  width: 24px;
  height: 24px;
  padding: 0;
  background: #ff8c70;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}
.highlight-wrap .view-amount .btn-view-amount img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  margin-left: -0.5px;
}

/* ------------- Listing Statement ------------- */
.listing-statement {
  margin-bottom: 30px;
}
.listing-statement .list-item {
  --space: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space);
  border-bottom: 1px solid #dde1e4;
  padding: 16px 0;
}
.listing-statement .s-icon {
  width: 40px;
  height: 40px;
  background: #f8f8f8;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.listing-statement .s-icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.listing-statement .list-item .s-info {
  width: calc(100% - 140px);
  padding-left: 12px;
  padding-right: 7px;
}
.listing-statement .list-item .s-remark {
  width: 100px;
  text-align: right;
  align-self: flex-start;
}
.listing-statement .list-item:first-child {
  padding-top: 0;
}

/* ------------- Withdraw ------------- */
.list-bandAcc-wrapper .list-item {
  border: 1px solid #ced3d8;
  padding: 16px;
  border-radius: 12px;
  color: #808a93;
}
.list-bandAcc-wrapper .form-check {
  --space: 8px;
  align-items: center;
  gap: var(--space);
  padding: 0;
}
.list-bandAcc-wrapper .form-check-input {
  margin: 0;
  background: transparent;
}
.list-bandAcc-wrapper .form-check-inner {
  width: calc(100% - (18px + var(--space)));
}
.list-bandAcc-wrapper .form-check-input:checked {
  border-color: #dde1e4;
}
.list-bandAcc-wrapper .title {
  margin-bottom: 4px;
}

/* ------------- Withdrawal Bank ------------- */
.list-withdrawBank-wrapper .listing-list {
  display: flex;
  flex-direction: column;
}
.list-withdrawBank-wrapper .listing-list .list-item {
  --space: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space);
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ced3d8;
  padding: 16px;
}
.list-withdrawBank-wrapper .listing-list .list-item .icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  overflow: hidden;
}
.list-withdrawBank-wrapper .listing-list .list-item .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.list-withdrawBank-wrapper .listing-list .list-item .info {
  width: calc(100% - (32px + var(--space)));
  padding-right: 30px;
  position: relative;
}
.list-withdrawBank-wrapper .listing-list .list-item .info::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--c-text-primary);
  border-right: 2px solid var(--c-text-primary);
  transform: translateY(-50%) rotate(45deg);
}
.add-list-box {
  position: relative;
  background: url(../img/deco/bg-white-dash.svg) no-repeat;
  background-color: #fff;
  background-size: 100% 100%;
  padding: 12px 16px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 64px;
}
.add-list-box .icon {
  width: 24px;
  height: 24px;
}
.add-list-box .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ------------- Address ------------- */
.address-listing-wrap {
  color: #808a93;
}
.address-listing-wrap .default {
  color: #e14343;
  font-size: var(--text-10);
  background: #ffd7d0;
  padding: 2px 12px;
  border-radius: 50px;
  margin-left: 8px;
  top: -2px;
  position: relative;
}
.address-listing-wrap .address-item {
  border-bottom: 1px solid #dde1e4;
  padding: 16px 0;
}
.address-listing-wrap .address-item:first-child {
  padding-top: 0;
}
.address-listing-wrap .address-item .address-top {
  display: flex;
  flex-wrap: wrap;
}
.address-listing-wrap .address-item .address-top .cta-wrap {
  width: 90px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}
.address-listing-wrap .address-item .name {
  width: calc(100% - 90px);
  margin-bottom: 4px;
}

/* ------------- Team / Organization Chart ------------- */
.page-team-bg {
  min-height: 100vh;
  background: url("../img/bg-team.jpg") no-repeat top center;
  background-size: cover;
}
.team-highlight-wrap {
  margin-bottom: 25px;
}
.team-highlight-wrap > .row {
  --bs-gutter-x: 1rem;
}
.team-highlight-wrap .t-item {
  border: 1px solid #dde1e4;
  border-radius: 12px;
  padding: 16px;
  background: url(../img/deco/team-highlight-deco.png) no-repeat;
  background-size: cover;
  height: 100%;
}
.team-highlight-wrap .t-item .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}
.team-highlight-wrap .t-item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.team-highlight-wrap .t-item .label {
  margin-bottom: 4px;
}
.list-team-wrap .list-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid #dde1e4;
  padding: 16px 0;
}
.list-team-wrap .list-item:first-child {
  padding-top: 0;
}
.list-team-wrap .list-item .team-info {
  width: calc(100% - 140px);
  padding-left: 12px;
}
.list-team-wrap .list-item .team-role {
  width: 90px;
  align-self: flex-start;
  color: #e14343;
  font-size: var(--text-10);
  background: #ffd7d0;
  padding: 2px 12px;
  border-radius: 50px;
  display: inline-block;
  width: auto;
  margin-left: auto;
  position: relative;
  top: 2px;
}

/* ------------- Referral Link ------------- */
.referral-ctn-wrap {
  width: 280px;
  margin: auto;
}
.box-item-qr-wrap .box-top {
  color: #fff;
  background: var(--c-text-primary);
  border-radius: 12px 12px 0 0;
  padding: 16px;
  min-height: 67px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.box-item-qr-wrap .box-inner {
  border: 1px solid #dde1e4;
  border-radius: 0 0 12px 12px;
  padding: 20px;
  height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.box-item-qr-wrap .box-inner .image {
  width: 216px;
  height: 216px;
  margin: auto;
}
.box-item-qr-wrap .box-inner .image img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.referral-link-wrap .label {
  margin-bottom: 4px;
}
.referral-ctn-wrap .separator:not(:empty)::before,
.referral-ctn-wrap .separator:not(:empty)::after {
  margin: 0;
}

/* ------------- Register Page ------------- */
.form-logo-img {
  width: 67px;
  height: auto;
  margin: auto auto 20px;
}
.form-logo-img img {
  width: 100%;
  height: auto;
}





/* Date Range Picker Styling */
.filter-date .input-group {
  position: relative;
  max-width: 200px;
}

.filter-date .form-control {
  background-color: transparent;
  border: 0px solid #dde1e4;
  border-radius: 0px;
  padding: 8px 12px;
  font-size: var(--text-12);
  color: var(--c-text-primary);
  cursor: pointer;
}

.filter-date .form-control:focus {
  border-color:transparent;
  box-shadow: 0;
  outline: none;
}

.filter-date .input-group-text {
  background-color: #fff;
  border: 1px solid #dde1e4;
  border-left: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

.filter-date .input-group-text:hover {
  background-color: #f8f9fa;
  border-color: #de3936;
}

/* Flatpickr custom styling */
.wallet-date-picker.flatpickr-calendar {
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: none;
  font-family: var(--font-family);
  animation: fadeInUp 0.3s ease;
}

.wallet-date-picker.flatpickr-opening {
  animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.flatpickr-months {
  background: linear-gradient(127.68deg, #de3936 22.18%, #ffcd43 127.88%);
  border-radius: 12px 12px 0 0;
}

.flatpickr-month {
  color: white;
}

.flatpickr-prev-month,
.flatpickr-next-month {
  color: white;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
  color: rgba(255, 255, 255, 0.8);
}

.flatpickr-weekday {
  color: var(--c-text-grey);
  font-weight: 600;
  font-size: var(--text-10);
}

.flatpickr-day {
  color: var(--c-text-primary);
  font-size: var(--text-12);
  border-radius: 6px;
  margin: 1px;
  transition: all 0.2s ease;
}

.flatpickr-day:hover {
  background: rgba(222, 57, 54, 0.1);
  border-color: rgba(222, 57, 54, 0.3);
}

.flatpickr-day.selected {
  background: linear-gradient(127.68deg, #de3936 22.18%, #ffcd43 127.88%);
  border-color: #de3936;
  color: white;
  font-weight: 600;
}

.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: linear-gradient(127.68deg, #de3936 22.18%, #ffcd43 127.88%);
  border-color: #de3936;
  color: white;
  font-weight: 600;
}

.flatpickr-day.inRange {
  background: rgba(222, 57, 54, 0.1);
  border-color: rgba(222, 57, 54, 0.2);
  color: var(--c-text-primary);
}

.flatpickr-day.today {
  border-color: #de3936;
  color: #de3936;
  font-weight: 600;
}

.flatpickr-day.today:hover {
  background: rgba(222, 57, 54, 0.1);
}

/* Clear button styling */
/* Flatpickr button container */
.flatpickr-button-container {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid #e9ecef;
  background-color: #f8f9fa;
  justify-content: flex-end;
  border-radius: 0 0 12px 12px;

}

.flatpickr-confirm-btn,
.flatpickr-clear-btn,
.flatpickr-cancel-btn {
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 4px;
  border: 1px solid;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 25px;
}


.flatpickr-confirm-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: #667eea;
}

.flatpickr-confirm-btn:hover:not(.disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
}

.flatpickr-confirm-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.flatpickr-clear-btn {
  background: #6c757d;
  color: white;
  border-color: #6c757d;
}

.flatpickr-clear-btn:hover {
  background-color: #5a6268;
  border-color: #545b62;
}

.flatpickr-cancel-btn {
  background-color: transparent;
  color: #6c757d;
  border-color: #6c757d;
}

.flatpickr-cancel-btn:hover {
  background-color: #6c757d;
  color: white;
}

/* Filter message styling */
.filter-message {
  background: rgba(222, 57, 54, 0.05);
  border: 1px solid rgba(222, 57, 54, 0.2);
  border-radius: 8px;
  margin: 16px 0;
}


  .filter-dropdown {
    flex-direction: row;
    gap: 20px;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .filter-group.filter-date {
    width: 55%;
  }

  .filter-group.filter-type{
    width: 40%;
  }
  
  .filter-date .input-group {
    max-width: 100%;
  }
  
  .wallet-date-picker.flatpickr-calendar {
    width: 90vw;
    max-width: 320px;
  }


.flatpickr-months .flatpickr-month{height: 44px;}

/* Disabled future dates styling */
.flatpickr-day.flatpickr-disabled {
  color: #ccc !important;
  background-color: #f5f5f5 !important;
  cursor: not-allowed !important;
  opacity: 0.5;
}

.flatpickr-day.flatpickr-disabled:hover {
  background-color: #f5f5f5 !important;
  color: #ccc !important;
  cursor: not-allowed !important;
}

/* Additional styling for better visual feedback */
.flatpickr-day.flatpickr-disabled::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 20px;
  background-color: #ddd;
  transform: translate(-50%, -50%) rotate(45deg);
  pointer-events: none;
}

.date-range-picker{
  background-image: url(../img/icon/i-select-arrow.png);
    background-position: 100%;
    background-size: 12px 12px;
    background-repeat: no-repeat;
}

.flatpickr-months .flatpickr-prev-month:hover svg, .flatpickr-months .flatpickr-next-month:hover svg{
  fill: #000000;
}