/**
 * TABS
 */
.tabs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tabs-items {
  display: flex;
  flex-direction: row;
  gap: 5px;
}
.tabs-items__item {
  opacity: 0.7;
  background: rgba(0, 0, 0, 0.02);
  padding: 10px 15px;
  transition: opacity 0.3s, background 0.3s;
}
.tabs-items__item.active {
  opacity: 1;
  background: rgba(0, 0, 0, 0.1);
}
.tabs-items__item:hover:not(.active) {
  cursor: pointer;
  opacity: 0.9;
  background: rgba(0, 0, 0, 0.05);
}
.tabs-contents {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.tabs-contents__item {
  width: 100%;
  display: none;
}
.tabs-contents__item.active {
  display: block;
}

/*# sourceMappingURL=core.css.map */
