.card-populer {
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: var(--white);
  border-radius: 10px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  position: relative;
  transition: all ease-in 0.1s;
}

.card-populer:hover {
  transition: all ease-in 0.1s;
  border: 2px solid var(--yellow-primary);
}

.card-populer::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 1400%;
  background-color: transparent;
  animation: animatepop 4s linear infinite;
}
.card-populer:hover::before {
  background-color: var(--yellow-primary);
}

[data-theme="dark"] .card-populer:hover::before {
  background-color: var(--white);
}

.card-populer::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #14192b;
  border-radius: 10px;
  overflow: hidden;
}

.card-populer:hover::after {
  width: calc(100% - 5px);
  height: calc(100% - 5px);
}

@keyframes animatepop {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

.card-populer-content {
  position: relative;
  z-index: 10;
  color: aliceblue;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-position: top;
  background-position-y: 10%;
  background-size: cover;
  overflow: hidden;
  transition: all ease-out 0.1s;
}

.card-populer-content .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #14192b;
  opacity: 0.5;
  transition: all ease-out 0.3s;
  top: 0;
  left: 0;
  z-index: 1;
}

.card-populer:hover .card-populer-content .mask {
  opacity: 0.5;
  transition: all ease-out 0.3s;
}

.card-populer-text {
  display: flex;
  justify-content: center;
  align-items: start;
  text-align: start;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 2;
  transition: all ease-out 0.3s;
  flex-grow: 1;
  padding-right: 4px;
}

.card-populer:hover .card-populer-text {
  display: flex;
  justify-content: center;
  align-items: start;
  text-align: start;
  transition: all ease-out 0.3s;
  padding-right: 4px;
}

.card-populer-img {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0px 20px;
  position: relative;
  z-index: 20;
  transition: all ease-out 0.3s;
}

.card-populer-img img {
  border-radius: 10px;
  height: calc(100% - 30px);
  aspect-ratio: 1/1;
  /* border: 1px solid var(--white); */
  transition: all ease-out 0.3s;
}

.card-populer:hover .card-populer-img {
  /* padding: 0px 20px; */
  transition: all ease-out 0.3s;
}

.card-populer:hover .card-populer-img img {
  height: calc(100% - 30px);
  transition: all ease-out 0.3s;
}

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

.card-populer:hover .card-populer-content {
  width: calc(100% - 5px);
  height: calc(100% - 5px);
  transition: all ease-out 0.1s;
  position: relative;
}

.card-populer-content h1 {
  font-size: 14px;
  color: var(--white);
  font-weight: 600;
  text-shadow: 1px 1px 4px #14192b;
}

.card-populer:hover .card-populer-content h1 {
  font-size: 16px;
}

.card-populer-content span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 1px 1px 4px #14192b;
  text-align: start;
}

@media (max-width: 756px) {
  .card-populer-content h1 {
    font-size: 12px;
    /* text-align: start; */
  }

  .card-populer:hover .card-populer-content h1 {
    font-size: 14px;
    /* text-align: start; */
  }

  .card-populer-content span {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .card-populer-content h1 {
    font-size: 0.625rem;
    /* text-align: start; */
  }

  .card-populer:hover .card-populer-content h1 {
    font-size: 12px;
    text-align: start;
  }

  .card-populer-content span {
    font-size: 10px;
  }

  .card-populer {
    height: 80px;
  }

  .card-populer:hover .card-populer-img img {
    height: calc(100% - 30px);
  }

  .card-populer .card-populer-img {
    padding: 0px 10px;
  }

  .card-populer-img img {
    border-radius: 10px;
  }
}

.menubar-area {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--bs-body-bg);
  padding: 20px;
  z-index: 999;
  box-shadow: 0 12px 26px 0 rgba(0, 0, 0, 0.3);
}
.menubar-area .toolbar-inner {
  padding-left: 0;
  padding-right: 0;
  display: flex;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  align-items: center;
}
.menubar-area .toolbar-inner .nav-link,
.menubar-area .toolbar-inner .menu-toggler {
  color: #333333;
  text-align: center;
  width: 25%;
  padding: 0 0;
  font-size: 18px;
}
.menubar-area .toolbar-inner .nav-link i,
.menubar-area .toolbar-inner .menu-toggler i {
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menubar-area .toolbar-inner .nav-link.active,
.menubar-area .toolbar-inner .menu-toggler.active {
  position: relative;
}
.menubar-area .toolbar-inner .nav-link.active svg path,
.menubar-area .toolbar-inner .menu-toggler.active svg path {
  fill: #007bff;
}
.menubar-area .toolbar-inner .nav-link.active:after,
.menubar-area .toolbar-inner .menu-toggler.active:after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 70px;
  height: 6px;
  background: #007bff;
  border-radius: 10px 10px 0px 0px;
  transform: translateX(-50%);
}
.menubar-area .toolbar-inner .nav-link .title,
.menubar-area .toolbar-inner .menu-toggler .title {
  display: block;
  margin-top: 5px;
  font-weight: 500;
  font-size: 12px;
}

/* Hanya tampil di perangkat dengan lebar < 768px */
@media (min-width: 768px) {
  .menubar-area {
    display: none;
  }
}

:root,[data-theme=dark]{--eb-pill-border:rgba(59,130,246,.35)}.eb-label,.eb-pill{min-width:0;overflow:hidden}:root{color-scheme:light;--eb-text:#111827;--eb-pill-bg:rgba(59,130,246,.10);--eb-pill-border-bottom:rgba(59,130,246,.65)}[data-theme=dark]{color-scheme:dark;--eb-text:#e5e7eb;--eb-pill-bg:rgba(59,130,246,.12);--eb-pill-border-bottom:rgba(59,130,246,.70)}.eb-badges{margin-top:16px;display:flex;align-items:center;gap:6px;flex-wrap:nowrap;font-size:12px}.eb-pill{box-sizing:border-box;display:flex;align-items:center;justify-content:center;gap:4px;flex:1 1 0;height:22px;padding:0 4px;border-radius:6px;background:var(--eb-pill-bg);border:1px solid var(--eb-pill-border);border-bottom-width:2px}.eb-ico{flex:0 0 auto;width:14px;height:14px;background-repeat:no-repeat;background-position:center;background-size:contain}.eb-ico--sm{width:13px;height:13px;margin:0}.eb-label{flex:1 1 auto;font-weight:500;color:var(--eb-text);font-size:10px;line-height:1.1;white-space:nowrap;text-overflow:ellipsis}.eb-ico--bolt{background-image:image-set(
    url("https://es-pays.com/assets/images/products/lightning.gif") 1x,
    url("https://es-pays.com/assets/images/products/lightning.gif") 2x
  )}.eb-ico--chat{background-image:image-set(
    url("https://es-pays.com/assets/images/products/contact-support.gif") 1x,
    url("https://es-pays.com/assets/images/products/contact-support.gif") 2x
  )}.eb-ico--shield{background-image:image-set(
    url("https://es-pays.com/assets/images/products/secure.gif") 1x,
    url("https://es-pays.com/assets/images/products/secure.gif") 2x
  )}@supports not (background-image:image-set(url("x") 1x)){.eb-ico--bolt{background-image:url("https://es-pays.com/assets/images/products/lightning.gif")}.eb-ico--chat{background-image:url("https://es-pays.com/assets/images/products/contact-support.gif")}.eb-ico--shield{background-image:url("https://es-pays.com/assets/images/products/secure.gif")}}@media (max-width:360px){.eb-badges{gap:4px}.eb-pill{height:20px;padding:0 3px;gap:3px}.eb-ico{width:12px;height:12px}.eb-label{font-size:9px}}@media (min-width:768px){.eb-badges{gap:8px}.eb-pill{height:32px;padding:0 10px;gap:8px;border-bottom-width:4px}.eb-ico{width:32px;height:32px}.eb-ico--sm{width:20px;height:20px}.eb-label{font-size:12px;line-height:1.75rem}}