.tabs-label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.tabs-label__item {
  cursor: pointer;
}

.tabs-label__item.active {
  color: var(--white, #fff);
  background: var(--red, #ab3c59);
  background-color: var(--red, #ab3c59);
}

.tabs-content__item {
  display: none;
}

.tabs-content__item.active {
  display: block;
}

.price_columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 930px) {
  .price_columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .price_columns {
    grid-template-columns: repeat(1, 1fr);
  }
}
