.sport-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  margin: 16px 0;
}

.sport-tabs::-webkit-scrollbar {
  display: none;
}

.sport-tabs__tab {
  display: flex;
  gap: 7px;
  color: var(--text);
}

.sport-tabs__tab img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  object-fit: contain;
}

.sport-tabs__tab-text {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .sport-tabs__tab-text {
    display: none;
  }

  .sport-tabs__tab img {
    width: 24px;
    height: 24px;
  }
}

.sport-tabs--underline {
  gap: 24px;
}

.sport-tabs--underline .sport-tabs__tab {
  font-size: 24px;
  font-weight: 700;
  color: #7d7d7d;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0 0 4px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  font-family: inherit;
}

.sport-tabs--underline .sport-tabs__tab:hover {
  color: #9345d8;
}

.sport-tabs--underline .sport-tabs__tab--active {
  color: #9345d8;
  border-bottom-color: #9345d8;
}

.sport-tabs--underline .sport-tabs__tab-text {
  display: inline;
}

@media (max-width: 768px) {
  .sport-tabs--underline {
    gap: 16px;
  }

  .sport-tabs--underline .sport-tabs__tab {
    font-size: 18px;
  }

  .sport-tabs--underline .sport-tabs__tab-text {
    display: inline;
  }
}
