.tabs {}

.tabs__nav {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-auto-flow: column;
  column-gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  justify-content: start;
}

.tabs__nav-item {}

.tabs__nav-link {
  background: unset;
  padding: 12px 16px;
  border: 0;
  font-size: 15px;
  line-height: 1.33;
  color: #777;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: opacity ease .5s;
}

.tabs__nav-link:hover {
  opacity: .8;
}

.tabs__nav-link_active {
  color: #000;
  border-color: #000;
}

.tabs__nav-link_active::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--sol-button-primary-background);
  position: absolute;
  top: 0;
  left: 0;
}

.tabs__content {
  padding-top: 40px;
}

.tabs__tab {
  display: none;
}

.tabs__tab_active {
  display: block;
}

@media screen and (min-width: 1280px) {
  .tabs__nav {
    column-gap: 20px;
  }

  .tabs__nav-link {
    padding-left: 20px;
    padding-right: 20px;
  }
}