.assetsGroup {

}

.assetsGroup-list {
  overflow-x: scroll;
  overflow-y: hidden;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  border-bottom: 2px solid #666;
  z-index: 10;
}

.assetsGroup-list-item {
  position: relative;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 3px 5px 3px;
  color: #a2adb2;
}

.assetsGroup-list-item:hover {
  color: rgb(60, 90, 100);
  svg {
    fill: rgb(60, 90, 100) !important;
  }
}

.assetsGroup-list-item svg {
  width: 12px;
  height: 12px;
  fill: #a2adb2
}

.assetsGroup-list-item.active svg {
  fill: rgb(60, 90, 100);
}

.assetsGroup-list-item.active {
  color: rgb(60, 90, 100);
  &::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: rgb(60, 90, 100);
    z-index: 20;
  }
}
