.bar {
  display: flex;
  overflow-x: auto;
  background: var(--bg-secondary);
  white-space: nowrap;
  padding: 1px 0;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
}

.bar::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
  color: var(--color-text-on-secondary);
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
}

.icon {
  width: 15px;
  height: 15px;
  margin-bottom: 1px;
  color: var(--color-text-inverse);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon svg {
  width: 100%;
  height: 100%;
  fill: var(--color-text-on-secondary);
}

.text {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--color-text-on-secondary);
}

.itemActive {
  border-top: 2px solid var(--color-border);
  background-color: var(--color-secondary);
  color: var(--color-text-on-secondary);
}

@media (min-width: 768px) {


  .item {
    padding: 0 20px;
  }

  .icon {
    width: 15px;
    height: 15px;
  }

  .text {
    font-size: 12px;
  }
}