#tabs {
  margin: 20px;
  display: flex;
}

.tab-list {
  display: flex;
  margin-bottom: 10px;
  overflow-x: auto;
  &::-webkit-scrollbar {
      width: 0;
  }
}
.tab-link {
  padding: 10px;
  cursor: pointer;
  /* border-bottom: 1px solid #ccc; */
  border: none;
  color: #949495;
  font-weight: 600;
  background-color: #fff;
  
}

.tab-link.active {
  background-color: #fff;
  color: var(--theme-color);
  border-bottom:2px solid var(--theme-color);
}

.tab-content {
  /* border: 1px solid #ccc; */
  width: 100%;
}
.item-container{
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
}
.item-container-img{
  width: 32px;
  margin-right: 15px;
}
.item-container-img-text{
  color: #000000;
  font-weight: 500;
}
.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}