@charset "UTF-8";
.tabsLine {
  display: flex;
  align-items: center;
  width: 100%;
  height: 68px;
  background: var(--greyBlue);
  border-radius: 15px;
  overflow: hidden;
  margin-top: 40px;
}
.tabsLine__item {
  padding: 0px 22px;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  min-width: -moz-max-content;
  min-width: max-content;
  background: transparent;
  transition: all 0.3s ease;
}
.tabsLine__item.active {
  background: var(--red);
  color: #fff;
}

@media (max-width: 640px) {
  .tabsLine__item {
    padding: 0px 18px;
  }
}
@media (max-width: 480px) {
  .tabsLine {
    height: 52px;
    width: calc(100% + 32px);
    transform: translateX(-16px);
    overflow-x: auto;
    border-radius: 0px;
    margin-top: 32px;
    background: none;
    -ms-overflow-style: none; /* IE и Edge */
    scrollbar-width: none; /* Firefox */
  }
  .tabsLine::-webkit-scrollbar {
    display: none;
  }
  .tabsLine__item {
    font-size: 12px;
    background: var(--greyBlue);
  }
  .tabsLine__item:first-child {
    border-radius: 15px 0px 0px 15px;
    margin-left: 16px;
  }
}/*# sourceMappingURL=tabs.css.map */