.tabs-buttons {
  z-index: 0;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.tabs-buttons::-webkit-scrollbar {
  display: none;
}
.tab-button {
  z-index: 1;
  padding: 12px 16px;
  position: relative;
  flex: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: var(--body-font-weight-bold);
  font-size: inherit;
  line-height: inherit;
  color: var(--body-font-color);
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 12px 12px 0 0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.tab-button:hover {
  background: var(--white-color);
}
.tab-button img {
  flex: none;
}
.tab-button.is-active,
.tab-content {
  background: var(--fifth-accent-color);
}
.tab-content {
  padding: 24px 20px;
  border-radius: 12px;
}
.tabs:has(.tab-button.is-active:first-child) .tab-content {
  border-top-left-radius: 0px;
}

{# #}

.tab-content {
  display: none;
}
.tab-content.is-active {
  display: block;
}