.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 999;
}

.bottom-nav .nav-item {
  flex: 1;
  text-align: center;
  font-size: 12px;
  text-decoration: none;
}

.bottom-nav .nav-item i {
  display: block;
  font-size: 20px;
  margin-bottom: 2px;
}

.bottom-nav .nav-item.nav-item-center {
  position: relative;
  transform: none;
}

.bottom-nav .nav-item.nav-item-center i {
  width: 52px;
  height: 52px;
  margin: 0 auto -20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  position: relative;
  top: -26px;
}

.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.side-left {
  display: flex;
  flex-direction: row;
  position: relative;
  height: 50px;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.side-left .logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo .logo-toggle {
  display: block;
  height: 40px;
  width: auto;
  object-fit: cover;
}

.side-right {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.menu-item {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-item i {
  font-size: 24px;
  font-weight: 600;
}

.menu-item img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.price-range-wrap {
  position: relative;
  height: 34px;
}

.price-range-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 6px;
  border-radius: 999px;
  transform: translateY(-50%);
}

.price-range-input {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  margin: 0;
}

.price-range-input::-webkit-slider-runnable-track {
  height: 6px;
  background: transparent;
}

.price-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  margin-top: -5px;
}

.price-range-input::-moz-range-track {
  height: 6px;
  background: transparent;
}

.price-range-input::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
}

.category-card-icon {
  font-size: 34px;
  line-height: 1;
}

.overlay {
  position: relative;
  z-index: 1;
  padding: 128px 0;
}

@media (max-width: 991.98px) {
  .overlay {
    padding: 96px 0;
  }
}

@media (max-width: 575.98px) {
  .overlay {
    padding: 64px 0;
  }
}

.overlay h1 {
  font-size: 24px;
  font-weight: 700;
}

.section-bg {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding-top: 20px;
  margin-top: -20px;
  padding-bottom: 50px;
  position: relative;
  z-index: 2;
  overflow: visible;
}

.section-info {
  position: relative;
  z-index: 3;
  margin-top: -14px;
}

.notif {
  padding: 6px 10px 0 10px;
  border-radius: 15px;
}

.notif-body {
  display: flex;
  justify-content: start;
  gap: 5px;
}

.notif-icon i {
  font-size: 18px;
  transform: rotate(-12deg);
}

.notif-text {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  width: 100%;
  position: relative;
}

.marquee-track {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
  animation-name: marquee;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.notif-text .item {
  display: inline-block;
  font-size: 12px;
  padding: 0 2rem;
}

@keyframes marquee {
  0% {
    transform: translateX(100%); /* mulai di luar kanan */
  }
  100% {
    transform: translateX(-100%); /* geser penuh ke kiri */
  }
}

.main-hero {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.main-hero .hero-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  /* overflow: hidden; */
  position: relative;
  box-sizing: border-box;
  background-color: transparent;
  z-index: 1;
  margin-bottom: 10px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.main-hero .hero-image::before,
.main-hero .hero-image::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  padding: 2px;
  border-radius: 50%;
  animation: 4s animate linear infinite;
}

.main-hero .hero-image::before {
  filter: blur(0.23rem);
  opacity: 0.7;
}

@keyframes animate {
  from {
    --angle: 0deg;
  }
  to {
    --angle: 360deg;
  }
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.main-hero .hero-desc {
  text-align: center;
  margin-bottom: 24px;
}

.main-hero .hero-desc p {
  font-size: 18px;
  font-weight: 500;
  /* text-decoration: underline; */
}

.main-hero .hero-desc h5 {
  font-weight: 700;
  margin-top: -15px;
}

.staff-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 168px;
  width: 100%;
  border-radius: 14px;
  padding: 12px;
  position: relative;
}

.staff-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 36%;
  width: 100%;
  border-radius: 12px 12px 0 0;
}

.box-image {
  position: relative;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  padding: 3px;
  margin-bottom: 10px;
}

.box-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.staff-box .box-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.box-text .box-text-name {
  display: block;
  width: 100%;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}

.box-text .box-text-job {
  font-size: 12px;
  font-weight: 300;
}

.staff-box .box-social {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.box-social .link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  margin: 0 6px;
  text-decoration: none;
}

.box-social .link.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}

.main-info {
  padding: 6px 10px 6px 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  text-decoration: none;
  display: block;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.main-info-content {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding: 10px 5px 0 10px;
}

.main-info-img img {
  width: 60px;
}

.main-info-text-h {
  font-size: 14px;
  font-weight: 700;
}

.main-info-text-p {
  font-size: 12px;
  font-weight: 300;
}

.main-info-btn i {
  font-size: 18px;
  transition: color 0.18s ease;
}

.main-menu-item {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  cursor: pointer;
}

.menu-box {
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid transparent;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.menu-box img {
  width: 30px;
  height: 30px;
}

.menu-text {
  font-size: 12px;
  margin-top: 5px;
  font-weight: 300;
  transition: color 0.18s ease;
}

.crypto-box {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  /* height: 100px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.border-bottom {
  width: 100%;
}

.crypto-box-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

.crypto-box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crypto-box-title {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 5px;
}

.crypto-box-amount {
  font-size: 22px;
  font-weight: 700;
}

.tab-content .tab-pane {
  border: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.market .market-header {
  font-size: 16px;
  font-weight: 700;
}

.budget {
  width: 100%;
  height: 220px;
  box-sizing: border-box;
  overflow-y: scroll;
  padding: 10px;
  scrollbar-width: thin;
}

.budget::-webkit-scrollbar {
  width: 8px; /* lebar scrollbar */
}

.budget::-webkit-scrollbar-track {
  border-radius: 999px;
}

.budget::-webkit-scrollbar-thumb {
  border-radius: 999px;
}

.budget-title {
  font-size: 15px;
  font-weight: 700;
}

.budget-amount {
  display: flex;
  justify-content: space-between;
}

.amount-left,
.amount-right {
  display: flex;
  flex-direction: column;
}

.banner-title,
.news-title {
  font-size: 16px;
  font-weight: 700;
}

.news-header {
  display: flex;
  justify-content: space-between;
}

.news-header a {
  font-size: 12px;
}

.news-box {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid transparent;
  margin-bottom: 15px;
  padding-bottom: 10px;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.news-box-title {
  font-size: 14px;
  font-weight: 700;
}

.news-content span {
  font-size: 11px;
  font-weight: 300;
}

.news-image {
  width: 128px;
  height: 88px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 10px;
}

.news-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-choose-us {
  border-radius: 12px;
  padding: 32px 0;
  position: relative;
  margin-bottom: -20px;
}

.section-choose-us::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.section-choose-us > * {
  position: relative;
  z-index: 100;
}

.choose-us {
  padding: 10px 0 20px 0;
}

.choose-us-img {
  width: 50px;
  height: auto;
  overflow: hidden;
}

.choose-us-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.choose-us-title {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.choose-us-body {
  display: flex;
  justify-content: space-between;
}

.choose-us-box {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.choose-us-count {
  font-size: 14px;
  font-weight: 600;
}
