/* oval style */
.nav-wrapper {
  background: transparent;
  width: 100%;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: center; */
  align-items: center;
  gap: 15px;
  list-style: none;
}

.nav-item {
  position: relative;
  text-align: center;
  padding: 6px 15px;
  border-radius: 9999px;
  cursor: pointer;
  background: #e9eaf2;
  white-space: nowrap;
}

.nav-item:hover {
  background: #d1d5db;
}

.nav-item.active {
  background: #636880;
  color: #fff;
  font-weight: 400;
}

/* square style */
.nav-wrapper--block {
  padding: 0;
  max-width: none;
}
.nav-wrapper--block .nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 4px;
}

.nav-wrapper--block .nav-item:hover {
  background: #f9fafb;
}

.nav-wrapper--block .nav-item.active {
  background: #F5F3F1;
  border-color: #9ca3af;
  color: #111827;
  font-weight: 550;
}
.nav-wrapper--block .nav-item.active svg{
  transform: rotate(180deg);
}
@media (max-width: 599px) {
  .nav-list {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .nav-item {
    padding: 0.5rem 1rem;
  }
}
