.badge-profile-active {
  /* Chip 1 */
  /* Auto layout */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  gap: 8px;
  height: 40px;
  background: #fab33d;
  margin-right: 20px;
  border-radius: 64px;
  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;
}

.badge-profile-non-active {
  /* Chip 3 */
  box-sizing: border-box;
  /* Auto layout */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  gap: 8px;
  height: 40px;
  background: #fefefe;
  border: 1px solid #c7c0c0;
  border-radius: 64px;
  /* Inside auto layout */
  flex: none;
  order: 2;
  flex-grow: 0;
}

.badge-profile {
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  /* Chip 3 */
  box-sizing: border-box;
  /* Auto layout */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  gap: 8px;
  height: 40px;
  background: #fefefe;
  /* border: 1px solid #c7c0c0; */
  border-radius: 64px;
  /* Inside auto layout */
  flex: none;
  order: 2;
  flex-grow: 0;
}

.menu-active {
  background: #fab33d;
}

.badge-profile > a:hover {
  color: black;
}

.badge-profile-center {
  width: 100%;
  display: flex;
  justify-content: left; /* Untuk menengahkan item horizontal */
  align-items: center; /* Jika Anda juga ingin menengahkan secara vertikal dalam baris */
  flex-wrap: wrap; /* Jika badge-badge bisa melebihi lebar container dan perlu wrap ke baris berikutnya */
  gap: 10px; /* Optional: Untuk memberikan jarak antar badge */
}

@media  (max-width:992px) {
  .badge-profile{
    display: inline-block;
    width: auto;
    margin: 15px 5px 5px;
  }
  .badge-profile-center {
    display: inline-block;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 20px;
  }
  .badge-profile-center::-webkit-scrollbar {
    display: none;
  }
}

/*# sourceMappingURL=profile.css.map */
