.not-actual {
  display: none;
}

.toggle {
  width: fit-content;
  margin: auto;
  max-width: 100%;
  margin-top: 10px;
}

.toggle > ul {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  background-color: var(--color-006);
  border-radius: var(--border-radius-total);
  overflow: hidden;
  border: 1px solid var(--color-007);
  max-width: 100%;
  flex-wrap: wrap;
  padding: 5px;
  gap: 10px;
}

.toggle .toggle__item {
  padding: 20px;
  border-radius: var(--border-radius-total);
  user-select: none;
  cursor: pointer;
  background-color: transparent;
  border: none;
  font-weight: bold;
  flex-grow: 1;
}

.toggle .toggle__item:hover {
  background-color: var(--color-006-light);
}

.toggle .toggle__item.actual-item {
  background-color: var(--color-001);
  color: var(--color-005);
}

@media screen and (max-width: 450px) {
  .toggle .toggle__item {
    font-size: 0.6em;
  }
}
