.bar {
  display: flex;
  overflow-x: auto;
  background-color: #2c3e50;
  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: white;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
}

.icon {
  width: 24px;
  height: 24px;
  margin-bottom: 1px;
}

.text {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
}

.itemActive {
  border-top: 2px solid rgb(213, 212, 212);
  color: white;
}

@media (min-width: 768px) {
  

  .item {
    padding: 0 20px;
  }

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

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

@media (max-width:600px) {
  .bar{
    background: #2C3E50;
  }
  
}

